Is it possible to disable the HTTP referer header being passed by browsers?
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Puzzle Island
--
Chapters
00:00 Is It Possible To Disable The Http Referer Header Being Passed By Browsers?
00:24 Accepted Answer Score 9
02:17 Answer 2 Score 3
03:04 Thank you
--
Full question
https://superuser.com/questions/756310/i...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#internet #browser #http #www
#avk47
ACCEPTED ANSWER
Score 9
To disable referrers in the various browsers and utilities:
Chrome
Invoking Chrome with the parameter of --no-referrers
will disable sending referrers.
Or you could use the extension of noref.
Firefox
Private browsing will already strip paths in HTTP referrers to the bare website
only, such as
Referer: https://www.reddit.com/
.
Firefox also allows very extensive control of referrers via switches in
about:config
.
Their list is found in Security/Referrer.
The main switch here is network.http.sendRefererHeader, but much finer control is possible:
- controls whether or not to send a referrer regardless of origin
- values:
- 0 = never send the header
- 1 = send the header only when clicking on links and similar elements
- 2 = (default) send on all requests (e.g. images, links, etc.)
Opera
Can be disabled via menu Tools > 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 <URL>
Spoofing http_referer wth telnet
telnet www.yoursite.com 80 (press return)
GET /index.html HTTP/1.0 (press return)
Referer: http://www.hah-hah.com (press return)
(press return again)
Reference: In what cases will HTTP_REFERER be empty.
ANSWER 2
Score 3
You can use a combination of the addon Clean Links & DoNotTrack.
You can get Clean Links from here & DoNotTrack from here.
DoNotTrack will remove the trackers that are following you. This will also make sites think that you typed the address and not came from a search engine such as Google, or Yahoo. Clean Links will remove the obvious ones that are in the link automatically. This one might not work with all sites, but it's worth a try.
If DoNotTrack does not work for your browser, or if you'd like an alternative, use Disconnect. If you are using Chrome, you can use Fix URL Links Redirect instead of Clean Links.
Get Disconnect from here & Fix URL Links Redirect from here.
Personally, I use Disconnect what you can choose whatever you want.