The referrer, or HTTP referrer — also known by the common misspelling referer that occurs as an HTTP header field — identifies, from the point of view of an Internet webpage or resource, the address of the webpage of the resource which links to it. By checking the referrer, the new webpage can see ...
47
votes
6answers
61k views
Determining Referer in PHP
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) ...
28
votes
4answers
10k views
Will a 302 redirect maintain the referer string?
I need to redirect the user from one page to another, but I need to maintain the original referer string. So, for example, if they start out on http://www.othersite.com/pageA.jsp, click a link that ...
24
votes
4answers
21k views
Getting the HTTP Referrer in ASP.NET
I hope someone can help me. I'm just looking for a quick, easy and reliable way of getting the browser's HTTP Referrer in ASP.Net (C#).
I know the HTTP Referrer itself is unreliable, but I do want a ...
21
votes
4answers
46k views
Get original URL referer with PHP?
I am using $_SERVER['HTTP_REFERER']; to get the referer Url. It works as expected until the user clicks another page and the referer changes to the last page.
How do I store the original referring ...
12
votes
2answers
10k views
How to save http referer in rails
I'm trying to save the site that a user came from when they sign up. Right now I have a before_filter in my ApplicationController:
before_filter :save_referer
def save_referer
unless ...
12
votes
2answers
2k views
Email Tracking - GMail
I am creating my own email tracking system for email marketing tracking. I have been able to determine each persons email client they are using by using the http referrer but for some reason GMAIL ...
9
votes
8answers
5k views
Is it possible to capture search term from Google search?
This may be a stupid question, but is it possible to capture what a user typed into a Google search box, so that this can then be used to generate a dynamic page on the landing page on my Web site?
...
7
votes
7answers
2k views
Get referrer URL - visitors coming from Paypal (HTTPS)
Hi I'm trying to get the referrer url but it doesn't work when the visitor comes to the site from Paypal
$ref = $_SERVER['HTTP_REFERER'];
echo $ref;
Is there a simple way to get the paypal url if ...
7
votes
3answers
540 views
Duplicate Referrer Header - HTTP.sys barfs
I have been testing the PS3 browser (NetFront) with embedded Flash components on a web page and there seems to be a rather serious bug with the way that any requests from Flash are issued. The browser ...
7
votes
3answers
735 views
How does Google Instant change the referer sent by the browser?
If you click on a result in Google Instant, the referer sent by your browser to the destination website contains a bunch of parameters, including the all important q=[autocompleted query]
But you're ...
6
votes
1answer
2k views
How to get “HTTP_REFERER” with NodeJS?
A way to get HTTP_REFERER , We can use document.referrer in browser side javascript .
But how can we get it in NodeJS ?
5
votes
6answers
5k views
php/html - http_referer
I am creating a website and on one particular page, am wanting to send the user back to the previous page. I am fairly new to PHP/HTML and have been using some existing code for ideas and help.
The ...
5
votes
2answers
2k views
How do I select only the root domain from $_SERVER['HTTP_REFERER'];?
I want to have a 404 page that can detect if a user has come to that page either via my site, via my shortened URL or via another site, and I am making it using PHP. I am slowly getting to grips with ...
5
votes
3answers
5k views
http_referer lost using https
Picture two web pages, both viewed using https. They reside on different domains.
How can I (reasonably) ensure that someone arriving at my page came via a hyperlink that resides on another ...
5
votes
2answers
2k views
JavaScript Redirect: Problem with Referer Header
Somebody follows a blog link(say http://blog) to come to my site (say http://mysite/a.php).
So now she is on page http://mysite/a.php and referer is set to http://blog
Now there is JavaScript on ...
5
votes
1answer
2k views
Specifying HTTP referer in embedded UIWebView
In my app, I allow the user to open up an external page in an embedded UIWebView. Is it possible for me to set the referer header that's sent with that request? I'd like for my app to get the 'cred' ...
5
votes
2answers
4k views
ASP.NET - Response.Redirect Not Populating Url Referrer
I feel like i've done this a ton of times, but i can't for the life of me figure out what is going wrong.
Default.aspx:
protected void Page_Load(object sender, EventArgs e)
{
var r1 = ...
4
votes
2answers
2k views
HTTP_REFERER blank, need alternative
I have a simple signup form that needs to track number of hits from one specific external referer. This is a simple task with PHP's:
$_SERVER['HTTP_REFERER']
however, it is blank. After doing ...
4
votes
3answers
152 views
Can $_SERVER['SERVER_NAME'] be forged/faked?
Can the PHP variable $_SERVER['SERVER_NAME'] be forged or faked? I was planning on using that as a security measure for form posting. I would check to make sure that variable is my site name ...
4
votes
3answers
2k views
how to get referrer from a redirected url
I have an url
domain.com/a
which redirects to
domain.com/controller/action/a .
How do I get the referrer (i.e domain.com/a) in my action for domain.com/controller/action/a ?
One option was to ...
4
votes
2answers
3k views
how reliable is HTTP_REFERER
I need to check and record the referrer of visitors to my web application. How reliable is using HTTP_Referer? And are there other alternatives?
4
votes
2answers
3k views
Get HTTP Referrer on Redirection
How can you get the HTTP Referrer when redirected from another website, not when they click on a link since it would work for $_SERVER['HTTP_REFERER'], but it doesn't work when a user has been ...
4
votes
1answer
270 views
rails request.env[“HTTP_REFERER”] giving nil on heroku
I have created a ruby on rails application. I am having below scenario
In localhost for getting referrer link i'm using request.env["HTTP_REFERER"] it's working perfectly not giving null.
I have ...
3
votes
8answers
249 views
How does refer(r)er work technically?
I don't understand: how are webserver and trackers like Google Analytics able to track referrals?
Is it part of HTTP?
Is it some (un)specified behavior of the browsers?
Apparently every time you ...
3
votes
2answers
630 views
Is HTTP_REFERER set by client
I heard that HTTP_REFERER can be spoofed. I have 2 sites, the first one contacts the second, and the second uses HTTP_REFERER to verify that the request is from the first one.
If I receive a fake ...
3
votes
4answers
4k views
PHP: Returning a user to their original page after login
Are there any 'best practices' concerning how one should return a user to their original page after logging in to your website, specifically in PHP? e.g. if I'm viewing a StackOverflow question while ...
3
votes
3answers
11k views
PHP - Referer redirect script
Often, when searching for answers, I have found that certain websites will allow you to read the information they offer if the referer is, for example, google.com. Yet, if you link directly to the ...
3
votes
2answers
591 views
Url fragment and Referer header
Imagine you are on a page whose URL has a fragment (the part after the #), and click a link to go to another page. Most browsers will send the URL of the original page to the server in the Referer ...
3
votes
2answers
373 views
Using a cookie to restrict access
I'm trying to write an acceptance form (cookie based) to deny/allow access to a website I am working on; I am not a security expert by any means, so I need some tips on how to make my form submission ...
3
votes
1answer
1k views
What is the HTTP Referer if the link is clicked in an <iframe>?
Suppose I have a webpage located at http://www.website.com with an <iframe> in it. Like this:
<html>
<head>...</head>
<body>
...
<iframe ...
3
votes
1answer
3k views
Redirect on the basis of referer HTTP_REFERER htaccess
I've an issue where i want to redirect a user on the basis of a substring from referered url, How i can accomplish that using htaccess?
User is on http://example.com/aqeel/videos/
There is a ...
3
votes
6answers
184 views
Redirects and Referers
My actual implementation of this is much more complicated, with authentication and a bunch of other stuff, but at the simplest form, here's the problem I'm having. Redirecting with header doesn't ...
3
votes
1answer
161 views
Using PHP to echo message if user came from redirected site
I am launching a new site with a brand new URL (rebranding). When a user goes to the old URL, they will be redirected to a new URL. I would like to display a message to those users, welcoming them to ...
3
votes
1answer
1k views
Reliability of php HTTP_HOST & HTTP_REFERER for critical task
I'm going to develop a website in PHP. But not sure if the method i'm going to use is the best approach. There will be many addon domains for the same site. But content will be filtered based on the ...
3
votes
1answer
939 views
$_SERVER['HTTP_REFERER'] vs Request.ServerVariables(“HTTP_REFERER”)
Why $_SERVER['HTTP_REFERER'] (PHP) and Request.ServerVariables("HTTP_REFERER") (ASP) return different result if query string has non english characters?
php return correct value but asp will not:
...
3
votes
2answers
3k views
IFrame referer question - asp.net c#
One of our application will be run in an iframe, inside salesforce and I'm having troubles with accessing the referer. They'd like us to do some referer checks, to make sure the request is coming from ...
3
votes
3answers
172 views
Preventing other websites to see the 'correct' referer
On my website users can post stuff anonymously.
When they have posted something they will be redirected to their post, let's say:
http://example.com/post/2/title-of-the-anonymous-post
The user who ...
3
votes
2answers
666 views
Can I use the Google AJAX Feed API REST interface from a native iPhone App?
Google states the following in the AJAX Feed API docs:"Applications MUST always include a valid and accurate http referer header in their requests."
I am building a native iPhone application and ...
2
votes
7answers
214 views
Is this method good/secure enough for showing errors to users? - PHP
I'm developing a website, and due to user-input or by other reason, I need to show some error messages.
For this, I have a page named error.php, and I get the error number using $_GET. All error ...
2
votes
5answers
1k views
What would HTTP referrer be?
What would the HTTP referrer be in the following cases:
User clicks a link on a website and arrives at a different website that is hot linking an image from a 3rd website, what would the referrer be ...
2
votes
4answers
923 views
is it possible to know where the user is coming from when he uses the back button?
For example,
if user goes to google -> example.com -> newwebsite.com
If he goes back to example.com, the http-referrer page will still be google.com
How can I detect that he went to newwebsite.com
2
votes
4answers
1k views
Maintain HTTP Referer
I've setup some redirects on an Apache server. They look at bit like this:
Redirect /Name/register /login.html
My question is this... is there anyway to preserve the HTTP Referrer through this ...
2
votes
4answers
335 views
how to log which page was “not found”? (Trying custom error page with htaccess, php, http_referer)
I was just wondering how to get
the link of the webpage which was not found on my website.
With following .htaccess code, when a non-existing page is requested, user is redirected to my_404.php.
...
2
votes
3answers
3k views
How do you spoof HTTP_REFERER?
I need to try and spoof the HTTP_REFERER passed my another page so that in the destination page, I can determine of the request is coming in from the "right" page and perform appropriate logic.
How ...
2
votes
4answers
3k views
Redirect to referer url in codeigniter
In messaging system of my project when you get a message from a user you a email alert saying that the another user has sent a message to view the message click here (i.e the url of message) So if the ...
2
votes
1answer
1k views
Store Facebook app referrer
I have some Facebook ads and external ads pointing to an app which is sitting on a page tab.
When my app stores some user information, I'd like to also record which ad referred them to the app via ...
2
votes
3answers
63 views
Is it possible to create attack vectors based on referers?
I had an idea while I was working on some PHP code. Usually, if a user is searching for a website on google and clicks on a link, the referer (in this case google, including search strings, etc.) the ...
2
votes
4answers
587 views
How do you detect what page caused the Internal Server Error?
So, in my .htaccess file I have this ErrorDocument lines:
ErrorDocument 500 http://www.example.com/500
Since my server runs multiple websites from the same core files, I just want to redirect all ...
2
votes
2answers
3k views
HTTP Referer after 302 Redirect
I am creating a website using Java servlets, and I have a page called LogIn. What I want to happen, is that once the user successfully fills out the login form, it returns them to the page that they ...
2
votes
1answer
565 views
htaccess Redirect only if the HTTP referrer does NOT equal something
I have the following rules working to redirect chinese users to the chinese language version of the site:
RewriteCond %{HTTP:Accept-Language} ^zh [NC]
RewriteCond %{HTTP_HOST} ^www\.example\.com$ ...

