Commit 0e6d76db authored by bobloblaw's avatar bobloblaw
Browse files

Updates browser_vulnerabilities.md

Auto commit by GitBook Editor
parent fb3e80a1
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
# Browser vulnerabilities

We have mostly been looking at vulnerabilites found in sites that let's us either attack the user or the underlying system. But there is also another sort of vulnerability. When the browser itself is vulnerable and can lead to remote code execution.
We have mostly been looking at vulnerabilities found in sites that let's us either attack the user or the underlying system. But there is also another sort of vulnerability. When the browser itself is vulnerable and can lead to remote code execution.

And example of this is ms12-036. 


## XSS and redirection

Most attacks against browsers is based on social engineering. The idea is that you trick the user to click on a link. That link, or that website, is usually controlled by the attacker in one way or another. It can eb a legimiate site that the attacker is using, or it might be the attackers own server.
Most attacks against browsers is based on social engineering. The idea is that you trick the user to click on a link. That link, or that website, is usually controlled by the attacker in one way or another. It can be a legitimate site that the attacker is using, or it might be the attackers own server.

Foe example, if the attacker is able to inject code html or javascript the atacker can redirect the user to load another page.
Foe example, if the attacker is able to inject code html or javascript the attacker can redirect the user to load another page.


One technique is to hide the redirection in a frame, this way the user won't even notice that an external page is being loaded.