i made a method to prevent from "form crf attack" by saving random token value in session and form , and in "post action" i compare the two values , .. i puted the comparison function at the top of every php page ,

my question is : if the comparision process faild , and the token session value and from token value are not the same ! , so then what action which the script must do ? is to stop script work by "die();" ? or what is the best action to do ?

thanks,

link|improve this question

36% accept rate
feedback

3 Answers

If this is very unlikely to happen from a real user, then I would prevent the script from saving/returning any data, but I would return a 'success' message as if it had worked. If you return a failure, it helps hackers to work out how your validation is coded.

On the other hand, if this happens to real users, I would return a friendly error, and possibly ask them to log in again.

link|improve this answer
@Jason4Ever What did you decide to do in the end? – Blowski Apr 28 '11 at 22:57
feedback

If you are absolutely sure this is an attack you can either :

  • not display the page
  • reset the connection
  • ban ip for a while

And of course, save a log of what happened.

link|improve this answer
feedback

Yes. Just let it fail. There is no point in recovering such errors.

What you should do however is also write a log entry to audit potential exploit attempts:

syslog(LOG_ERR, "CSRF token mismatch ...");
die("Request failed. (Disabled cookies?) Contact administrator: ...");

Include a humd-readable message in case it was really a browser error or something. But don't expose that it was the CSRF token that failed.

link|improve this answer
good , i do this ofcours , but the problem is lot of times this problem occure because token value change when session timeout or when user open new tab ! so it start new session with new token value ! , so i'm not sure if the action is attacker of normal person !! – Jason4Ever Apr 24 '11 at 10:15
Well okay. That's an entirely different question. Edit your original post to reflect that. -- In any case, then it's best if you use a CSRF token array. $_SESSION["csrf"][] = $new_token and for checking in_array($_POST["csrf"], $_SESSION["csrf"]). Regarding the session timeouts, there is nothing you can do. But that's not a common problem anyway. – mario Apr 24 '11 at 10:27
feedback

Your Answer

 
or
required, but never shown

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