Tagged Questions
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 where the request originated.
19
votes
9answers
28k 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) ...
16
votes
4answers
3k 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 ...
11
votes
2answers
673 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
2answers
5k 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 ...
7
votes
3answers
589 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 ...
7
votes
3answers
438 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 ...
6
votes
4answers
8k 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 ...
6
votes
6answers
2k 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?
...
4
votes
2answers
1k 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 = ...
3
votes
1answer
62 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
2answers
125 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
436 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
123 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
2answers
893 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 ...
3
votes
1answer
408 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
8answers
154 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
2k 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
6answers
2k 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 ...
2
votes
2answers
27 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 ...
2
votes
3answers
39 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 ...
2
votes
3answers
341 views
ZF redirector. Why redirect page doesn't get HTTP_REFERER?
I have two actions in controller:
function indexAction()
{
$this->_redirect('/index/welcome/');
}
function welcomeAction()
{
echo isset($_SERVER['HTTP_REFERER']);
}
After redirect it ...
2
votes
2answers
479 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 ...
2
votes
2answers
261 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 ...
2
votes
3answers
3k 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 ...
2
votes
2answers
265 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 ...
2
votes
4answers
304 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
4answers
1k 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 ...
2
votes
2answers
552 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
1answer
2k views
HTTP Referer header in Struts 2
How can I get the Referer header under Struts2? Right now I'm using an ActionSupport class and I can't seem to get a ServletActionContext object or implement the ServletRequestAware interface? (Where ...
2
votes
3answers
2k views
Google is changing its referrer URLs from /search into /url. Any known issues?
The following quote from a Google blog made me wonder if plugins for popular blog and CMS software are affected (like those saying "Hello from Google, we highlighted your search terms", and like ...
2
votes
5answers
840 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
3answers
2k 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 ...
2
votes
4answers
229 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
4answers
451 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
2answers
1k views
how should we validate http header referrer in aspx .net
I want to ensure ensure nothing untoward gets into the referrer on an error page.
What should I be checking in order to validate the http header.
below is my current code:
// Ensure the referrer ...
2
votes
7answers
201 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
3answers
2k views
HTTP_REFERER substitute that IE 6 will provide?
So IE (6, at least) won't help me with $_SERVER["HTTP_REFERER"] that I request with PHP.
But I'm new to Javascript and have just used a little routine in a pop-up to refresh the page from which the ...
1
vote
0answers
23 views
ASP.Net MVC: Lock JSON Requests to within a site by HTTP_REFERER
Suppose I have an ASP.Net MVC site. How do I lock controller methods (perhaps with an Attribute on the Action) so that HTTP_REFERER must point to my site?
To expand:
I have many JSON actions on my ...
1
vote
2answers
37 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 ...
1
vote
1answer
60 views
Can I rely on Referer HTTP header?
Can I rely on Referer HTTP header in my web application? I want to check if the user came from a particular domain/webpage, and if he or she did, then change the layout of my site accordingly.
I know ...
1
vote
1answer
196 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' ...
1
vote
0answers
60 views
Detect image uploading sites -> add watermark
I'm trying to add a watermark to some images on my site when they're accessed from another site. So far the following is working for linked/embedded images:
RewriteCond %{HTTP_HOST} ^www.mysite.org$ ...
1
vote
2answers
101 views
Is it possible to reliably know where an HTTP request originated without scripting?
I've been tasked with serving up an image file from our server that is referenced in an html document residing on a number of other servers. To wit:
file on foo.com:
<img ...
1
vote
0answers
129 views
HTTP referrer problem when using with an iframe
I completed one widget with Flash, I put the swf file in one page that page that is attached to iframe.
The problem starts from here when I put this swf file inside of iframe the HTTP Referrer is not ...
1
vote
3answers
116 views
How to save current url ID to a session and then update it upon viewing the next submission
Upon refreshing http://mydomain.com, it will generate a random ID to display on the page.
For example, http://mydomain.com generates 54 the first time, and upon reloading, 112, etc.
I'd like to save ...
1
vote
2answers
427 views
Pass HTTP Referer with Loader load()
I need to set a value for the Referer header when making a request to my local proxy script from Flash. As recommended in this question: Facebook Proxy Loader Security, I need to check the ...
1
vote
3answers
94 views
problem to get the Referer page
I'm trying to get the referer page, but i have a problem , sometimes i get bad the referer page,
for example:
i have 3 pages, when the page 1 link to page 2 , and the page 2 make a process and after ...
1
vote
1answer
562 views
Nginx - How do I know when $http_referer is not set or empty?
How do I know when the nginx variable $http_referer is not set or empty?
I receive some requests that don't have a http referer. In nginx logs $http_referer appears like that: "-". What I am trying ...
1
vote
2answers
300 views
Email Tracking - Apple Mail
I have asked a similar question to this but for GMail and I was greatly satisfied with an awesome answer I received. However, I am having trouble with another email client: Apple Mail.
I am creating ...
1
vote
7answers
422 views
$_SERVER['HTTP_REFERER'] and cookies
I read, both on SO and other sites, that $_SERVER['HTTP_REFERER'] is something we, as programmers, should always avoid. Reading the PHP manual we encounter these lines:
The address of the page (if ...