Lesson Plan Title: Cross Site Request Forgery.

Concept / Topic To Teach:

This lesson teaches how to perform Cross Site Request Forgery (CSRF) attacks.

How the attacks works:

Cross-Site Request Forgery (CSRF/XSRF) is an attack that tricks the victim into loading a page that contains img links like the one below:
<img src="http://www.mybank.com/sendFunds.do?acctId=123456"/>
When the victim's browser attempts to render this page, it will issue a request to www.mybank.com to the transferFunds.do page with the specified parameters. The browser will think the link is to get an image, even though it actually is a funds transfer function. The request will include any cookies associated with the site. Therefore, if the user has authenticated to the site, and has either a permanent cookie or even a current session cookie, the site will have no way to distinguish this from a legitimate user request. In this way, the attacker can make the victim perform actions that they didn't intend to, such as logout, purchase item, or any other function provided by the vulnerable website

General Goal(s):

* Your goal is to send an email to a newsgroup.
* Try to include a 1x1 pixel image that includes a URL that transfers funds to your account.
* Whoever receives this email and happens to be authenticated at that time will be a victim.