vote up 1 vote down star
1

Is checking the referrer enough to protect against a cross site request forgery attack? I know the referrer can be spoofed, but is there any way for the attacker to do that FOR the client? I know tokens are the norm, but would this work?

flag

76% accept rate
1  
You should include your programming language/platform, as many (e.g. ASP.NET MVC's AntiForgeryToken) out-of-the-box solutions exist. – Alex Sep 12 at 1:29

5 Answers

vote up 1 vote down check

Among other things, using the referrer won't work for users whose browsers (or corporate proxies) don't send referrers.

link|flag
Referrers can be easily faked. Do not bother checking this. – Cheekysoft Nov 26 at 14:02
Cheekysoft: It is true that Referrers can be easily faked, but that isn't why you shouldn't use them for CSRF protection. Attackers that are in a position to perform a CSRF attack are not in a position to fake Referer headers. – Laurence Gonsalves Nov 26 at 17:17
vote up 1 vote down

Follow the norm: use tokens.

Checking the referrer actually does nothing, because the request is coming from that page anyway! The problem you are trying to prevent is the page being requested without the user doing anything; not the page being hit itself.

Tokens are the way to protect against this. You generate one, store it in the session, and write it to the HTML, then, upon posting, you check the one you receive, and see if it matches the one you expect. If it doesn't, you fail. Either way, you generate a new token afterwards.

It may also be relevant to consider that this will mess people up if the have multiple pages; so you may like to make a different token per page.

link|flag
vote up 0 vote down

You can add tokens to your form so that when you receive the token, you can validate the token and see if the request is valid.

In PHP for example, you can send a CRC32 hash of the session ID:

<form method="post" action="action.php">
  <input type="hidden" name="sesscheck" value="<?php echo dechex(crc32(session_id())) ?>" />
<!-- all other inputs -->
</form>

On your action page:

<?php
   if(isset($_POST['sesscheck']) && $_POST['sesscheck'] == dechex(crc32(session_id()))){
     // session is valid. do the appropriate.
     // check for referral as well - but allow empty referral (some browsers don't send referrer header)
   }else{
     // session is invalid, throw error.
   }
?>

That will at least fight off some kind of bots that are out there to automate forms.

link|flag
vote up -1 vote down

There is no good automated solution for CSRF. The only simple solution is to use a challenge/response system in an attempt to very the user is who they actually claim to be.

link|flag
CSRF is one of the easiest security problems to solve. See owasp.org/index.php/… – Cheekysoft Nov 26 at 14:02
You are confusing a mitigation for a solution. A mitigation reduces, but not solves, a problem in a single instance. A solution is a correction to an application of a technology where that correction eliminates the problem in all instances of an application. If the problem is solved so easily then it would not be such an enormous problem. Until client side security is solved the only solution is for a site to stop using cookies for account credential supplements. – austin cheney 12 hours ago
vote up 1 vote down

no is not enough, it is very easy for the attacker to do that FOR the client, as you ask, all the attacker has to do is get the user to click in a link created by him, from that point, is game over

The attacker will copy the form used in the original site, and spoof the rest because now the code is on his own site, then submit that to the victim site

As you mention on the question, tokens are the norm when it comes to prevent CSRF

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.