I know it's possible to get an empty HTTP_REFERER. Under what circumstances does this happen? If I get an empty one, does it always mean that the user changed it? Is getting an empty one the same as getting a null one? and under what circumstances do I get that too?
feedback
|
|
It will be empty when the enduser
| |||||
feedback
|
|
HTTP_REFERER - sent by the browser, stating the last page the browser viewed! If you trusting [HTTP_REFERER] for any reason that is important, you should not, since it can be faked easily:
Try this firefox extension, you'll be able to set any headers you want: @Master of Celebration: Firefox: extensions: refspoof, refontrol, modify headers, no-referer Completely disable: the option is available in about:config under "network.http.sendRefererHeader" and you want to set this to 0 to disable referer passing. Google chrome / Chromium: extensions: noref, spoofy, external noreferrer Completely disable: Chnage ~/.config/google-chrome/Default/Preferences or ~/.config/chromium/Default/Preferences and set this:
Or simply add --no-referrers to shortcut or in cli:
Opera: Completely disable: Settings > Preferences > Advanced > Network, and uncheck "Send referrer information" Spoofing web service: Standalone filtering proxy (spoof any header): Spoofing http_referer when using wget ‘--referer=url’ Spoofing http_referer when using curl -e, --referer Spoofing http_referer wth telnet
| |||||||||
feedback
|
|
BalusC's list is solid. One additional way this field frequently appears empty is when the user is behind a proxy server. This is similar to being behind a firewall but is slightly different so I wanted to mention it for the sake of completeness. | |||
|
feedback
|