Application attacks (2.4)

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/12

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

13 Terms

1
New cards

Buffer overflow

overwriting a buffer of memory, the extra memory spills into other memory areas

2
New cards

Privilage escalation

exploiting a vulnerability or a bug to try and grant yourself admin lvl access

3
New cards

Horizontal privilege access

instead of admin access the attacker goes from user A to user B resources

4
New cards

Prevent privilege escalation

patching the application quickly, updated anti virus / anti malware, data execution prevention,

5
New cards

Cross site requests

stuff that occur on almost every single website, the different pictures and links are all loaded from different servers

6
New cards

Client side code

this renders all of the information inside of your browser in a way that the website admin orginally wanted it

7
New cards

Server Side

this side performs requests from the client

8
New cards

what are the two sides of a website page?

client side code and server side code

9
New cards

cross site request forgery

an attacker takes advantage of the trust that a web application has for the user, and makes requests without your consent or your knowledge

10
New cards

What is a common anti-forgery technique?

usually a cryptographic token

11
New cards

what is an example of a cross site request forgery?

attacker creates a funds transfer request < request is sent as a hyperlink to user who is already logged in < visitor clicks link and unknowingly sends the request to bank website < bank validates and sends funds to attacker

12
New cards

directory traversal / path traversal

a website vulnerability that allows an attacker to read or write files that are normally outside the scope of the website directory

13
New cards

How can you possibly see if someone is checking for a directory traversal?

when using ../ while accessing files on a web server