Home All Groups Group Topic Archive Search About

how to detect who redirects traffic to a aspx page? is this info passed along in request object or c

Author
8 Aug 2005 7:15 PM
Daniel
how to detect who redirects traffic to a aspx page? is this info passed
along in request object or can sites anonymously redirect traffic to other
sites?

Author
9 Aug 2005 10:16 PM
tim.aranki
You might check out the following ServerVariables (look at the
Request.ServerVariables collection):
HTTP_REFERRER
REMOTE_ADDR
REMOTE_HOST

HTH,
/tim
Author
9 Aug 2005 11:03 PM
Dominick Baier [DevelopMentor]
Hello tim.ara***@gmail.com,

but be aware that these values can be easily modified/spoofed. So don't base
any security decisions on them.

---------------------------------------
Dominick Baier - DevelopMentor
http://www.leastprivilege.com

Show quoteHide quote
> You might check out the following ServerVariables (look at the
> Request.ServerVariables collection):
> HTTP_REFERRER
> REMOTE_ADDR
> REMOTE_HOST
> HTH,
> /tim