[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Phpgroupware-developers] save redirects
From: |
Jason Wies |
Subject: |
Re: [Phpgroupware-developers] save redirects |
Date: |
Sat, 29 Dec 2001 12:23:32 -0500 |
User-agent: |
Mutt/1.2.5i |
To hide the session id in the URL, we could redirect all external links to a
URI such as:
http://localhost.com/phpgroupware/index.php?go=http%3A%2F%2Fexternal.host.com
with this as the first check in index.php:
if ($GLOBALS['go'])
{
Header('Location: ' . $GLOBALS['go']);
exit;
}
To hide the IP, you'd probably have to make an anonymous proxy app that would
fetch the pages and return them to the user.
Jason Wies aka Zone
On Sat, Dec 29, 2001 at 10:36:33AM +0100, Lars Kneschke wrote:
> Hello!
>
>
> There is one thing that drives me nutes, very time a click on a external
> link. It always shows my ip and my session id as referrer. With our ip
> check enabled this is not that big problem anymore. But you never know! :)
>
> Does some know, how to hide the referer? I know that some websites have
> things, to hide the real refferer. How are they doing this? Does some one
> know this?
>
> Cu
>
>
> _______________________________________________
> Phpgroupware-developers mailing list
> address@hidden
> http://mail.gnu.org/mailman/listinfo/phpgroupware-developers