up vote 19 down vote favorite
2
share [g+] share [fb]

What is the most reliable and secure way to determine what page either sent, or called (via AJAX), the current page. I don't want to use the $_SERVER['HTTP_REFERER'], because of the (lack of) reliability, and I need the page being called to only come from requests originating on my site.

Edit: I am looking to verify that a script that preforms a series of actions is being called from a page on my website.

link|improve this question

Why do you say $_SERVER['HTTP_REFERER'] is not reliable? – Milan Babuškov Oct 3 '08 at 7:21
2  
The PHP implementation is reliable. The problem is that not ever browser is sending this, and you can even modify it if you like. So it is not reliable that is is correct from the client's side. – Biri Oct 3 '08 at 7:23
feedback

9 Answers

up vote 20 down vote accepted

The REFERER is sent by the client's browser as part of the HTTP protocol, and is therefore unreliable indeed. It might not be there, it might be forged, you just can't trust it if it's for security reasons.

If you want to verify if a request is coming from your site, well you can't, but you can verify the user has been to your site and/or is authenticated. Cookies are sent in AJAX requests so you can rely on that.

link|improve this answer
2  
If you want to use this method, you should still check the referrer as well to prevent CSRF en.wikipedia.org/wiki/Cross-site_request_forgery – John Isaacks Sep 13 '10 at 14:15
2  
Ideally you should use a unique token per session per user (per request if you're paranoid) to prevent CSRF attacks. Checking the referrer is just security by obfuscation and not quite a real solution. – Seldaek Dec 30 '10 at 20:05
feedback

Maybe one of these links will help you. They are not about referer, but more reliable methods of doing what you probably want to do with referer.

link|improve this answer
feedback

A possible way is to put a unique key (eg. a GUID) in one field of your page, and send it back in the next request.

link|improve this answer
feedback

There is no reliable way to check this. It's really under client's hand to tell you where it came from. You could imagine to use cookie or sessions informations put only on some pages of your website, but doing so your would break user experience with bookmarks.

link|improve this answer
feedback

Use cookies or session to authenticate the user.

link|improve this answer
feedback

We have only single option left after reading all the fake referrer problems: i.e. The page we desire to track as referrer should be kept in session, and as ajax called then checking in session if it has referrer page value and doing the action other wise no action.

While on the other hand as he request any different page then make the referrer session value to null.

Remember that session variable is set on desire page request only.

link|improve this answer
feedback

Find out the server's IP address and use $_SERVER[REMOTE_ADDR].

link|improve this answer
feedback

When generate the pages from which the ajax gets called:

  • include a parameter in the ajax call containing the current displayed page

p.e. with JQuery

$.ajax({
  type: "GET",
  url: "ajaxhandler.php?referrer=<referrer>",
  dataType: "script"
});

Replace referrer by the url of the currently displayed page (or the template name or whatever helps you identify the page)

link|improve this answer
4  
What prevents someone from spoofing this too? You've just moved the spoofable referer string to a different place in the HTTP request. – Tim Farley Oct 3 '08 at 12:26
feedback

In this case the spoofer wouldn't know to place the get into the page when coming from outside. Also only you know which pages you are sending if from, so if the referrer is false you program logic would know that.

Unauthorized page calls could easily then be redirected anywhere want them to go moving them away from your protected page. Also, you could just as easily use POST thereby rendering it unknown that you are even calling it. Encrypting the form would also keep out prying eyes

link|improve this answer
4  
uh, there are ways to read post data pretty easily, yeah? – Tchalvak Oct 22 '10 at 21:07
feedback

Your Answer

 
or
required, but never shown

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