vote up 4 vote down star
1

Is it possible to check who is entering your website in PhP. I have a web application ( written in PhP) that should only allow users entering from some particular websites. Is it possible to get the referral websites by examining the _Request object? If yes, how?

flag

49% accept rate
PHP. Totally capitalized. It's not spelled like PhD. \8~J – Phantom Watson Jan 9 at 20:28

5 Answers

vote up 6 vote down check

Yes, but keep in mind some proxies and other things strip this information out. Use

$referringSite = $_SERVER['HTTP_REFERER']; // is that spelt wrong in PHP ?

If you want to only allow requests from a specific domain you'll need to parse some of the URL to get the top level domain. As I've learnt more, this can be done with PHP's parse_url().

As andyk points out in the comments, you will also have to allow for www.example.com and example.com.

link|flag
might want to take extra caution, though, since you probably need to allow both www.example.com and example.com since it is, in most cases, the same thing. Not to mention that HTTP_REFERER is not really trustable. – andyk Jan 9 at 2:27
from the php manual, "This is set by the user agent. Not all user agents will set this, and some provide the ability to modify HTTP_REFERER as a feature. In short, it cannot really be trusted." – andyk Jan 9 at 2:28
Yeah I know it can't be trusted. – alex Jan 9 at 2:31
1  
Referer is spelled wrong in the RFC, thus in all of HTTP land it is Referer instead of Referrer – Rob Jan 9 at 2:36
yup, made a mistake once by going HTTP_REFERRER instead. Took me a while to figure out what's wrong. :-s – andyk Jan 9 at 3:02
show 4 more comments
vote up 0 vote down

You need to examine the $_SERVER array for the 'HTTP_REFERER' key.

link|flag
vote up 3 vote down

While you can look at $_SERVER['HTTP_REFERER'] to get the referring site, don't bet the farm on it. The browser sets this header and it's easily spoofed.

If it's critical that only people coming from specific referrers view your site, don't use this method. You'll have to find another way, like basic auth, to protect your content. I'm not saying that you shouldn't use this technique, just keep in mind that it's not fool-proof.

BTW, you can also block referrers at the apache level using mod_rewrite.

link|flag
vote up 1 vote down

Your should first check if there is a referrer. Then you can parse the referrer using parse_url() to get the host part. Finally you can use a regular expression to check if the host is allowed.

$referrerIsValid = false;
$hasReferrer = false;
if (isset($_SERVER['HTTP_REFERER'])) {
    $parts = parse_url($_SERVER['HTTP_REFERER']);
    if (isset($parts['host'])) {
        $hasReferrer = true;
        $referrerIsValid = (bool) preg_match('/(?:^|\.)example\.com$/', strtolower($parts['host']));
    }
}
link|flag
vote up 1 vote down

You cannot trust the referrer. Despite coming from the $_SERVER array, it is actually a user/browser supplied value and is easily faked, using such things as the Firefox RefControl addon.

link|flag

Your Answer

Get an OpenID
or

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