Questions about this topic? Sign up to ask in the talk tab.

Difference between revisions of "CSRF"

From NetSec
Jump to: navigation, search
Line 22: Line 22:
 
If a user logged into '''domain.tld''' loads a page with this html, it may log them out of their session on the affected domain.  The browser still makes a request to logout.php in the context of the authenticated session.  More advanced implementations of this include javascripts to fill out forms and perform more complex actions as the user loading the page.
 
If a user logged into '''domain.tld''' loads a page with this html, it may log them out of their session on the affected domain.  The browser still makes a request to logout.php in the context of the authenticated session.  More advanced implementations of this include javascripts to fill out forms and perform more complex actions as the user loading the page.
 
{{info|When mixed with [[XSS]], this attack becomes the much more dangerous [[XSRF]].}}
 
{{info|When mixed with [[XSS]], this attack becomes the much more dangerous [[XSRF]].}}
 
+
{{exploitation}}
 
{{series
 
{{series
 
| Name = CSRF
 
| Name = CSRF
 
| PartOf = Web Exploitation
 
| PartOf = Web Exploitation
 
}}
 
}}

Revision as of 10:44, 2 May 2012

This article contains too little information, it should be expanded or updated.
Things you can do to help:
  • add more content.
  • update current content.
It has been proposed that CSRF be merged with XSS.
If you have comments please make them on the Discussion page.


Cross-Site Referral Forgery

Synopsis

CSRF can occur when a web form or action URL does not properly check its HTTP referrer information to ensure that a browser came from its own site. This can be especially dangerous to users of a site with a form like this. CSRF is likely one of the most prominent vulnerabilities today.

The result of a successful CSRF attack is performing actions in the context of a user's session. If a user is logged into one site, and clicks a link to another, the other site's code may control what the logged-in user does on the original site.

Example

The following html may display a broken image:

 
 <img src="http://domain.tld/logout.php">
 

If a user logged into domain.tld loads a page with this html, it may log them out of their session on the affected domain. The browser still makes a request to logout.php in the context of the authenticated session. More advanced implementations of this include javascripts to fill out forms and perform more complex actions as the user loading the page.

c3el4.png When mixed with XSS, this attack becomes the much more dangerous XSRF.
CSRF is part of a series on exploitation.


CSRF
is part of a series on

Web Exploitation

Visit the Web Exploitation Portal for complete coverage.