Win 2k server, ASP
I have a script, that searches on remote web servers in public web pages. I
am getting a html content from remote web page using XMLHTTP and do a search
on local server...

I do not want remote server to "see" my IP.
Any way to hide/change it during http connection to remote server?
Is my IP information in http package?

Thanks for advices. My task is very "peaceful", no hacking purposes in my
mind. ;)

Re: IP hiding/changing issue by Kristofer

Kristofer
Sun May 08 03:29:46 CDT 2005

You request some data from a remote server, and the remote server must
know where to send that data. If you hide the IP from the remote server,
how is that server supposed to know where to send the data?

A proxy would hide _your_ IP, but the IP of the proxy will still be
available in the logfiles on the remote server.

--
Regards,
Kristofer Gafvert
www.gafvert.info - My Articles and help
www.ilopia.com


bVahan wrote:

> Win 2k server, ASP
> I have a script, that searches on remote web servers in public web
pages. I
> am getting a html content from remote web page using XMLHTTP and do a
search
> on local server...
>
> I do not want remote server to "see" my IP.
> Any way to hide/change it during http connection to remote server?
> Is my IP information in http package?
>
> Thanks for advices. My task is very "peaceful", no hacking purposes in my
> mind. ;)

Re: IP hiding/changing issue by David

David
Sun May 08 03:40:32 CDT 2005

Not possible for your scenario.

XMLHTTP operates at the HTTP layer, and the data that you want to
hide/change is in the underlying TCP/IP layer.

Anyways, consider this: If you manage to "hide" your IP in the request, how
does the remote web server know where to send its HTML content back to you?

--
//David
IIS
http://blogs.msdn.com/David.Wang
This posting is provided "AS IS" with no warranties, and confers no rights.
//
"bVahan" <b_vah@hotmail.com> wrote in message
news:Oe1qrT5UFHA.3620@TK2MSFTNGP09.phx.gbl...
Win 2k server, ASP
I have a script, that searches on remote web servers in public web pages. I
am getting a html content from remote web page using XMLHTTP and do a search
on local server...

I do not want remote server to "see" my IP.
Any way to hide/change it during http connection to remote server?
Is my IP information in http package?

Thanks for advices. My task is very "peaceful", no hacking purposes in my
mind. ;)




Re: IP hiding/changing issue by bVahan

bVahan
Sun May 08 16:08:11 CDT 2005

thx

OK, I will put the question in another way

I am making few interactions with remote server(s)
each time let IP go - nothing to hide

but each time to change its value

its OK for me if I will use external server with dynamic IP_Changer service
on it, and my HTTP request will go thru it
the only requirement is - to have the IP changed each time (NOT manually)
within ONE (web surfing) script before each next outgoing HTTP request



"David Wang [Msft]" <someone@online.microsoft.com> wrote in message
news:%23e1vhm6UFHA.3532@TK2MSFTNGP09.phx.gbl...
> Not possible for your scenario.
>
> XMLHTTP operates at the HTTP layer, and the data that you want to
> hide/change is in the underlying TCP/IP layer.
>
> Anyways, consider this: If you manage to "hide" your IP in the request,
how
> does the remote web server know where to send its HTML content back to
you?
>
> --
> //David
> IIS
> http://blogs.msdn.com/David.Wang
> This posting is provided "AS IS" with no warranties, and confers no
rights.
> //
> "bVahan" <b_vah@hotmail.com> wrote in message
> news:Oe1qrT5UFHA.3620@TK2MSFTNGP09.phx.gbl...
> Win 2k server, ASP
> I have a script, that searches on remote web servers in public web pages.
I
> am getting a html content from remote web page using XMLHTTP and do a
search
> on local server...
>
> I do not want remote server to "see" my IP.
> Any way to hide/change it during http connection to remote server?
> Is my IP information in http package?
>
> Thanks for advices. My task is very "peaceful", no hacking purposes in my
> mind. ;)
>
>
>



Re: IP hiding/changing issue by David

David
Mon May 09 05:33:54 CDT 2005

That sounds fine. Web Anonymizers basically do that sort of thing for web
browsers already, and in your case, your ASP app is just another client as
far as the Web Anonymizer is concerned.

At this point, there is nothing that is IIS-related here. All your questions
are with the service provider of your "dynamic IP", including supported
functionality.

Be aware that your scheme essentially introduces a man-in-the-middle attack
into your traffic, so you should expect no standard security protocol to
correctly function (other than basic authentication, which really isn't
security).

--
//David
IIS
http://blogs.msdn.com/David.Wang
This posting is provided "AS IS" with no warranties, and confers no rights.
//
"bVahan" <b_vah@hotmail.com> wrote in message
news:%2379rGGBVFHA.3636@TK2MSFTNGP14.phx.gbl...
thx

OK, I will put the question in another way

I am making few interactions with remote server(s)
each time let IP go - nothing to hide

but each time to change its value

its OK for me if I will use external server with dynamic IP_Changer service
on it, and my HTTP request will go thru it
the only requirement is - to have the IP changed each time (NOT manually)
within ONE (web surfing) script before each next outgoing HTTP request



"David Wang [Msft]" <someone@online.microsoft.com> wrote in message
news:%23e1vhm6UFHA.3532@TK2MSFTNGP09.phx.gbl...
> Not possible for your scenario.
>
> XMLHTTP operates at the HTTP layer, and the data that you want to
> hide/change is in the underlying TCP/IP layer.
>
> Anyways, consider this: If you manage to "hide" your IP in the request,
how
> does the remote web server know where to send its HTML content back to
you?
>
> --
> //David
> IIS
> http://blogs.msdn.com/David.Wang
> This posting is provided "AS IS" with no warranties, and confers no
rights.
> //
> "bVahan" <b_vah@hotmail.com> wrote in message
> news:Oe1qrT5UFHA.3620@TK2MSFTNGP09.phx.gbl...
> Win 2k server, ASP
> I have a script, that searches on remote web servers in public web pages.
I
> am getting a html content from remote web page using XMLHTTP and do a
search
> on local server...
>
> I do not want remote server to "see" my IP.
> Any way to hide/change it during http connection to remote server?
> Is my IP information in http package?
>
> Thanks for advices. My task is very "peaceful", no hacking purposes in my
> mind. ;)
>
>
>