Tagged Questions

0
votes
2answers
51 views

getting referer from auth in cakePHP

I have a link on the main page that is only accessible if they are logged in. However, if this link is clicked, I want to show a custom error message on the login page (a custom 'Message.auth'). …
1
vote
1answer
48 views

Track http domain referer

Can i track the http referer with javascript, and append a variable to the URL string to store into a dbase? or could i track a cookie that the user gets? (very layman's terms here, sorry) if http …
0
votes
3answers
70 views

Can user request’s “Referer” be modified just in server side?

I have a web site server which do such work like this: The server receives request from user A(request referer is blank) and then redirect(at server side) user A to visiting web site B; Is there any …
0
votes
1answer
124 views

request.referer with anchor

is there a way to get the referer with the anchor from the referer page.. the situation is - i have a search page which loads results (users) below the search box using ajax. i am changing the …
2
votes
5answers
125 views

Is HTTP_REFERER supposed to be filled in when user tells a browser to “refresh”?

I'm trying to use a referrer header check as a defence in depth (i.e. one of many security techniques while note solely relying on any one alone). It seems that sometimes MSIE doesn't include the …
0
votes
1answer
247 views

Executing javascript during redirect without changing original referrer

I need to test whether or not a click-through is valid by using some javascript client-side tests (e.g., browser window dimensions). However, I would like the original click referrer to remain the …
0
votes
3answers
533 views

Response.Redirect with Different Referrer

I've got the following piece of code in an aspx webpage: Response.Redirect("/Someurl/"); I also want to send a different referrer with the redirect something like: Response.Redirect("/Someurl/", …
5
votes
1answer
470 views

ASPNET MVC: Way to figure out the route of the referer (sic)?

I have some POST actions on my controller that are hit from a pair of GET actions. When validation fails, I want to render the view of the action that the POST is coming from. For example: …
0
votes
2answers
93 views

Validator and POST request

Hello, I have a valid xhtml page. The page may be validated using http://validator.w3.org/check/referer URL. This page needs some parameters. When I access this page trough a GET request (with …