0
votes
0answers
22 views

which browsers dont send the referer header?

I always read about the fact, that user-agents dont have to send the referer header so you cant rely on it. To limit others from "stealing" pictures from your page and generating extra load for you ...
0
votes
1answer
57 views

Pound sign in url

When I open a url like http://stackoverflow.com/#abc, and then click a link in the page. I find the Referer is still http://stackoverflow.com (Chrome, F12). Why not #abc? The same problem appears ...
1
vote
0answers
292 views

PHP - Is using HTTP_REFERER to test for iframe's parent page reliable?

I have a page called test2.php that is loaded into test1.php via iframe. I would like to implement a whitelist to make sure that test2.php is only accessed via test1.php. I noticed that the parent ...
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 ...
1
vote
2answers
198 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
1answer
208 views

“Referer Header” not sent by “Links” browser

Is there a way to force the Links command line browser to send the "Referer Header"? http://en.wikipedia.org/wiki/Links_(web_browser) Also, the Lynx browser has the same issue.
0
votes
2answers
339 views

Detecting User pressing back button without Javascript?

I know there are ways to tell if an user has pressed the back button using Javascript, but is there a way to tell without resorting to Javascript? Is there a solution that involves just looking at ...
1
vote
2answers
896 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 ...
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 ...
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 ...
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 ...
0
votes
4answers
557 views

What are the most common reasons for requests without referrer?

I have a service with a large share of requests with an empty value for HTTP_REFERER. I'd like to interpret this correctly and wonder about the most common reasons for that. I understand that ...
2
votes
3answers
3k 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 ...