How a Simple CSRF Attack Turned into a P1 Level Bug

Cross-site Request Forgery is easy to lookout for. However, if there are security measures in place to prevent CSRF attacks, they can be exciting (yet nerve-wracking) to bypass.

For those who don’t know, Cross-site Request Forgery is an attack where a malicious user can trick the victim into performing actions that they do not intend to do. And some of the preventive measures are:

  1. Use of anti-CSRF tokens
  2. Use of additional fields such as “Current Password”
  3. Use of same site cookies

How I Began the Hunt

When I received an invite to hunt on a private program on Bugcrowd, which was set to begin on 9th of February, 12AM IST, I was prepared to begin. Considering I was blind to the name of the program and there were 24 other chosen security researchers, I decided to hunt on the website head-on – without any recon.

I started looking for endpoints to perform a CSRF attack, I found the most impactful one: Change Password option. When I clicked on it, the following fields were a part of the entire HTTP Request:

Mandatory email address field

I suspected that the Email field will interfere as it was a mandatory one, but still tried performing CSRF with it. Since, the CSRF POC contained the attacker’s email address when updating the victim’s password it obviously didn’t work.

It will only work if I updated the value as victim’s email address in the Email field. So, as an attacker, every time I send the malicious link to the victim, I would have to use the victim’s email address before tricking them into clicking it.

It didn’t sit well with me. I wanted to increase the impact.

How I Increased the Impact

I tried to following:

  1. I removed the entire field from the CSRF POC.
  2. I only removed the value from the field.
  3. I entered random values in the field. (ajhgdsjhgd)

None of the above worked. I almost gave up thinking they have secured it against advanced CSRF attacks.

I then decided to try something else: I changed the email to a random value with the correct email address format. It didn’t have to be a valid email address; just anything as random as abcdefg@xyz.com.

CSRF PoC with random email address

I clicked on “Submit” from another browser, acting as the victim, and got the following message:

Message for Successfull Password Change using CSRF attack

I didn’t want to celebrate just yet. To be sure, I tried logging into victim’s account as the attacker, using the new password.

Voila! I was logged in, implying I had successfully changed the victim’s password.

Impact

This scenario allowed me to take over the victim’s account without any effort of changing the email address value to the victim’s valid address. Furthermore, the severity level increased because just clicking on the link will have the victim locked out of their own account.

Bugcrowd rated this simple CSRF as P1 as it was a complete account takeover issue.

Why this was possible?

Because there was no server-side validation of the Email field. And hence, the remediation for such problem would be to ensure the necessary validation is in place.

Takeaway

If you ever come across such fields, try to perform CSRF by giving random values, assuming there is no server-side validation. You may just come across a P1 issue.

Now, wouldn’t it be a cherry on the top if the program is offering bounty?

Share your thoughts.

Cheers!

Published by Lady Secspeare

Spearing the Security for Good

6 thoughts on “How a Simple CSRF Attack Turned into a P1 Level Bug

  1. Thanks for sharing, as expected, you well explained the scenario of account takeover using CSRF. eagerly waiting for next one. Keep inspiring

    Liked by 1 person

    1. Hey. Thanks for reading this blogpost and commenting. The attack couldn’t complete with the attacker’s email address because it the application identified it as an existing user’s email. If the attacker uses an email that does not have an account on the website, the attack will be successful.
      Thanks for asking a valid question ๐Ÿ™‚

      Liked by 1 person

Leave a comment

Design a site like this with WordPress.com
Get started