Cross-site hacks and the art of self defence
Hackers can force your browser to send requests to any site they want. It’s not even hard - all they have to do is get you to view an email or a web page.
Unless the site is specifically protected against this - and almost none are - then attackers can make your browser do anything you can do, and they can use your credentials and your access privileges. They can do things like set preferences, create payees and change passwords.
Generally, browsers stop cross-site communication by following the “same-origin policy”. This rule is pretty simple: if your site has a different origin - protocol, domain, and port don’t all match - you aren’t allowed to access information from or send requests to the other site. Without this simple rule, there would be no security on the internet. Every website could access data from every other one - you’d need a separate web browser for every website.
Unfortunately, the same-origin policy is nowhere near airtight. Attackers don’t even need an exploit to bypass it. They can simply embed an IMG, SCRIPT, IFRAME, or FORM tag that references the targeted website in an HTML page. When the victim’s browser renders this tag, it generates a request and sends it to the targeted website - right around the same-origin policy. This is a feature of all browsers - it’s used by many applications to grab images from other sites and to post from data to services.
Attackers can use this loophole to forge requests that appear to be coming from a legitimate user. These are called cross-site request forgeries, or CSRF, for short. Take a look at the old CSRF attack on Netflix, below.
Article Source











Subscribe Feed
Contact Us