Introduction to CSRF



Cross-site request forgery, or CSRF, is a type of attack that makes the victim user perform unwanted operations on a target website.

CSRF works by redirecting the user to the target website, for example with a link, in such a way to make the user execute specific commands on the website.

The victim user, if authenticated on the website (usually with a Session ID), will immediately execute the commands chosen by the attacker.

CSRF attacks are somehow the opposite of XSS attacks:

  • In XSS, the attacker manipulates the code from the website to the user.
  • In CSRF, the attacker forces the request from the user to the website.

Let's look at an example.


CSRF attack example.

Let's start with a simple example.

Let's say that you have a website that can handle registered users.

In this website, you have a user.php script that manages the users' profile page. From this page, users (after a proper authentication) can see and edit their data.

The user authentication is Sessions-based, so users must provide a valid Session ID to access the page.

From this page, users can submit a form to edit their data: the password, the email address and the first name.

Here is the form:


When the form is submitted, the back-end validates all the request variables and if the "command" value is set to "submit" (in the above form this value is set in a hidden input) then the user's settings are updated.

Here is the PHP example code of the back-end that receives the form (the validation steps are skipped for the sake of readability):


The user.php page may seem secure, because an attacker cannot directly access it or change a registered user's data unless the user's Session ID is stolen.

However, an attacker can create a link like this:

If the attacker can make the victim user click on the link, the user will be redirected to user.php and will immediately send the commands:

If the victim user is authenticated by its Session ID, the operation will succeed and the user's private data will be changed.

With this simple trick, the attacker has successfully changed the victim user's password and email address with new ones.


CSRF attacks are particularly dangerous because of how easy and destructive they can be.

Preventing CSRF vulnerabilities is therefore of primary importance.

In this course chapter you will learn how to do that.


Lesson takeaways

  • CSRF attacks force the victim user to execute specific commands on a website.
  • To perform a CSRF attack, the attacker must redirect the victim user to the target website, for example with a link.



Complete and Continue  
Discussion

0 comments