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 ...

learn more… | top users | synonyms

-1
votes
1answer
30 views

How to determine the original HTTP Referer? [duplicate]

I currently have a tracking system that logs referers for all tracked actions. To achieve this I'm using $_SERVER['HTTP_REFERER'] in PHP. My issue is that sometimes, the above returns nothing. When ...
1
vote
0answers
15 views

Implementing web service security in Reporting Tools

I have a web reporting tool lets say Business Objects, Cognos, OBIEE, Crystal Reports. I want to display some data into the report which is coming from a Web Service. So i copy paste the Web service ...
0
votes
0answers
22 views

How to grab google visitor keyword query in asp clasic?

I want save google search terms in my database. I'm using asp and mysql database.
0
votes
1answer
15 views

mod_rewrite based on current HTTP_HOST and HTTP_REFERER

Is it possible to make such check with htaccess mod_rewrite - If a referer domain is example.com and current host is www.example.com then redirect the user to example.com domain. The meaning is to ...
0
votes
0answers
27 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
56 views

can google analytics tell me http referrer for each specific goal conversion?

I have a website that allows people to create an account (that is the conversion I wish to track). I wish to know where a specific person is coming from. I have google analytics installed and have ...
0
votes
0answers
16 views

How does referral link being interpreted when opening a link from inside of a PDF file?

I'm wondering how does referral link being interpreted when opening a link from inside of a PDF file? Suppose 2 cases: When you've opened a PDF file which has its own URL ()usually inside a web ...
0
votes
1answer
53 views

php prevent direct access to an url which does not points a folder [closed]

I am using .htaccess and user friendly links. my domain.com/contact redirects the page to domain.com/contact-verify after form submission. If page verifies user submitted data then redirects the page ...
0
votes
0answers
65 views

Add http referer with redirection to browser in android application

I want to add referer with a redirection to browser on android apps. I use this : browser.setData(Uri.parse("http://www.plus2net.com/php_tutorial/php_referrer.php")); I know add referer with ...
0
votes
0answers
101 views

Add referer with a redirect Safari or WebView in application IOS

I'm working on a project that listening a click on IOS application and redirects on a webview if the redirection is in apps or redirects on safari browser. I want to add referer of my website with ...
0
votes
2answers
105 views

Show confirmation on referring back to previous page (PHP HTTP REFERER)

This might be simple but I am having difficulty figuring it out, A form with data in index.php is submitted to sell.php which is processed by mysql query and returns automatically to previous page ...
0
votes
1answer
88 views

Same Referer URL opens for two different browser tabs with different URLs PHP

Flow: - user visits a page say www.mysite.com/somepage/1 - user clicks on Log Out button or times out and logs out *user log out detected redirect to home page but save the referer URL ...
0
votes
0answers
42 views

StingerASP can't seem to validate Referer header rule specified in SVDL file

I'm trying to use the ASP version of Stinger Request Validation Engine on a Classic ASP website to prevent CSRF attacks and I can't seem to validate the Referer header using Stinger. I'm using this ...
0
votes
1answer
48 views

httpWebRequest Referer exception with unicode url

I have some code use httpWebRequest to post data, but when i use unicode text in Referer it always show exception: "Specified value has invalid Control characters." CookieContainer ...
0
votes
0answers
103 views

HTTP Referrer through Age Gate

I have an age gate set up on my site, so that users under 17 can't enter the site, but I want people, who have bookmarked a specific link to be able to go to that link after passing through the age ...
0
votes
0answers
171 views

Redirecting to previous page after login using HTTP_REFERER

I'm trying to redirect a user back to the page they were on prior to clicking on the "Log In" page hyperlink. I've read about the HTTP_REFERER and understand I need to put code similar to this: input ...
0
votes
0answers
27 views

Keeping natural search and direct load stats using javascript redirects

On our site we drive all traffic to the www subdomain where our desktop site resides. We also have device detection in place to redirect mobile devices and tablets to the mobile (m.) subdomain and ...
0
votes
1answer
39 views

Capture http_referer no matter which landing page

Right now, I capture http_referrer within each of my controller actions, such as: class PostsController < ApplicationController def new referer = request.referer end However, I would ...
1
vote
1answer
61 views

Security risk of setting referer header?

I am currently writing an iOS application that communicates with Django on the server side. When trying to do a POST, I want the communication to conform to the CSRF middleware that Django provides. I ...
0
votes
0answers
71 views

php curl can not find the HTTP_REFERER

Sorry for posting another question like my another one, but I didnt know how to post a complete reply and comments doesnt allow me to post this question. I have 2 Pages: 1.php: <style> #frame ...
0
votes
1answer
135 views

Redirect, but hide referrer

Lets say I have a URL, www.mysite.com/go that I want to redirect to www.anothersite.com/site.php?id=999 The trick is, I do not want anothersite.com to be able to see that the request came from ...
1
vote
1answer
107 views

Hiding referer on an external link with PHP

I'm writing a page that has links to some music files on another server which has blocked access on external referrers. This website also allows direct access to files (by pasting url in browser's ...
-1
votes
1answer
78 views

Good way to track sales leads on website (referrer traffic)

I have kind of a dilemma. I need to start tracking sales leads because I have 2 sales guys and I don't want to be giving up organic SEO leads to them, but at the same time I don't want to cheat them ...
0
votes
0answers
40 views

Custom ErrorDocument pages and HTTP_REFERER

I have .htaccess entries in place to block specific suspect IP ranges from accessing a website, e.g.: deny from 1.2.3.0/32 Also in .htaccess I've specificed a custom 403 ErrorDocument, a PHP script ...
0
votes
0answers
72 views

How to detect referring URL using Google apps-script?

Using Google apps-script can I detect the referring URL (similar to HTTP_REFERER for Apache) to a form (built using Google Drive)?
0
votes
0answers
36 views

Apache referer - how to issue a permanent ip/subnet ban?

I'm in need of [ermanently blocking the ips and or subnets of the users, who come by certain http_referer to my server. Right now my code is just this: RewriteCond %{HTTP_REFERER} bad_referer [NC] ...
0
votes
2answers
56 views

Detecting url user visited before coming to my site in Rails

I would like to save the url that user visited right before landing to my site. How should I do it in Rails? I tried request.env["HTTP_REFERER"] but couldn't retrieve the previous url. May be this ...
0
votes
0answers
40 views

How do you track how many sites have an actively embedded iframe widget?

I have an iframe widget that is being embedded in over 3000 third party sites, but I want to know exactly how many sites it is embedded in. Our current method is to use google analytics to generate a ...
0
votes
2answers
50 views

controller class in php

I'm new at php programming, and I want to ask question: So I have 3 php forms: insertworkerform.php inserttoolsform.php insertorderform.php Inside those files I used <form ...
0
votes
1answer
58 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
1answer
120 views

unable to set http_referer

How can I set my http_referer location in my logout.php page after signin(using signin.php) which checks & successfully login redirects to joomla.php where i gave logout link(using a href) now i ...
0
votes
0answers
18 views

ASP.NET HyperLink without referer information

How can I make a HyperLink in ASP.NET to point to a URL without sending the referer URL to destination ? or to send a fake referer
-1
votes
1answer
335 views

How to get full referrer url in php

I want to get full referrer url in PHP. For instance, if I come to mywebsite from a google search, $_SERVER['REFERER'] gives me only www.google.com, but I want smth like ...
0
votes
1answer
173 views

Store first referring URL in one variable along with $_SERVER['HTTP_REFERER'] in another

I'm using the two functions below to store referrer information in variables which are inserted into a form email body. I need to store the first referring site or URL in one variable and the normal ...
0
votes
1answer
151 views

Can I alter/hide my HTTP_REFERER header in VBScript?

Is it possible to change the HTTP_REFERER value in VBScript? To avoid XSS attacks I am using CSRF data in my links. But when I am linking the user to an external website, this CSRF data could be ...
3
votes
1answer
167 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 ...
-2
votes
1answer
28 views

I need to redirect to a page that matches the type with HTACCESS

If you go to my site at: http://thaflynation.tumblr.com/post/41322801418/another-dope-track-by-tnght-r-u-ready/ It will redirect you to: http://thaflynation.com However i need it to redirect to: ...
0
votes
0answers
107 views

How to set referer when user comes from Google Chrome app icon?

I have a chrome app which basically is just a visual bookmark which sends the visitors to my website. Currently it doesn't show any referer because technically the user came directly to the website. ...
0
votes
1answer
234 views

How does anonym.to work?

How does this website manage to blank the referer. All other referer blanking service seem to just cloak the referer. This one however manages to make google analytics believe that the user typed in ...
0
votes
1answer
123 views

Is that possible for a iframe to get the referer from main page in Rails 3?

Is that possible for a iframe to get the referer from main page in Rails 3? For example, page A has a iframe, page B. I've a hyperlink point to page A from page C. Can page B get the refer URL that ...
0
votes
2answers
124 views

Pass original http_referer to other pages

I have a business profile set up with a separate gallery page. The header for these pages is a php include. I am trying to set up a breadcrumb trail for this profile so am using http_referer to track ...
0
votes
2answers
82 views

Http referer and bookmark

I'm visiting a website and soon I click on a bookmark in my browser. A new website is opened. My question is: Does the referer data (which is submitted to the new website) only contain the bookmark ...
1
vote
2answers
321 views

Changing the value of referrer [duplicate]

Possible Duplicate: How to manually set REFERER header in Javascript? How to change the value of document.referrer? I tried this <body> <center><a href="test.php" ...
1
vote
1answer
79 views

Django: save referer when user is signing up

I'd like to save the site that a user came from when they sign up. I am interested in the HTTP referer of the first page the user saw on my site before signing up. How can I implement it?
0
votes
0answers
121 views

Use RewriteCond and HTTP_REFERER redirect https domain? [closed]

I'm using RewriteCond and HEEP_REFERER to redirect links from an https domain. Code as : RewriteCond %{HTTP_REFERER} ^https?://(test1.com test2.com)$ RewriteRule ^/myapp.*$ /maintenance.html ...
2
votes
0answers
305 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 ...
1
vote
3answers
114 views

PHP: How to detect direct requests of external visitors?

I would like to detect/prevent/forward direct requests of external visitors. Some scripts should only be displayed in a jQuery dialog. My current code: <script> $(".dialog").click(function() ...
1
vote
1answer
228 views

Prevent hotlinking in Azure Blob Storage

One of my concerns about using Azure Blob Storage is hotlinking. It looks like a good idea to put static content (images, videos, audio, large js and css files, etc..) in a public container, but ...
0
votes
3answers
152 views

contact form including referral of previous page

I have a php contact form using POST and I want to automatically include the referring page on the form, that is the website linking to the contact form. This would normally be within my website. ...
1
vote
3answers
170 views

Redirect user based upon HTTP_REFERER

I am trying to redirect users on my site that come from a certian referal site to have a special message. I have this: <?php $REFERER = $_SERVER['HTTP_REFERER']; if ($REFERER == ...

1 2 3 4 5