deffe
09-03-2002, 07:26 PM
Hi all.
I like to retreive a webpage without getting traced. How should I do this using php ?
Basicly I want to do an "fopen" of some sort and download the complete url without getting traced, or just letting them know the proxy I used ofcourse.
How do I do this!?
apokalyptik
09-03-2002, 10:00 PM
that you'll end up using sockets to log into the proxy, and then grab the raw data...
here's a couple of tutorials i wrote on the subject (of sockets, not proxies)
http://www.phpbeginner.com/columns/demitrious
deffe
09-04-2002, 04:21 AM
Interresting, will it work when I use HTTP aswell?
Since I don't need to login or anything, all I need is to download the webpage without getting traced, I will download it several times/day you see ? :rolleyes:
Acronym BOY
09-04-2002, 01:09 PM
squid will allow you to do this (and much more) and so would CGIProxy (which I have found to not be 100% stable under high use)
deffe
09-04-2002, 02:43 PM
squid - Where can I find more info about it ?
deffe
09-04-2002, 04:24 PM
Is it possible to just retreive the page and give out a falls IP ?
I like to be able to decide what IP to be sent.
Is that Possible!?!?
Acronym BOY
09-04-2002, 04:39 PM
Originally posted by deffe
squid - Where can I find more info about it ?
HOW TO is found at RS:
http://forums.rackshack.net/showthread.php?s=&threadid=6846
Ahmad
09-04-2002, 11:43 PM
Originally posted by deffe
Is it possible to just retreive the page and give out a falls IP ?
I like to be able to decide what IP to be sent.
Is that Possible!?!?
No, this is not possible in your case. You can't choose the IP that will appear in the server.
If you use a proxy server then the IP address of the machine on which your proxy server is installed will appear to the client.
There is something called IP spoofing, but it can't be used to establish any kind of TCP connections.
Alareach
09-04-2002, 11:52 PM
http://anonymizer.com/ maybe?
deffe
09-05-2002, 07:59 AM
Is it possible to at least send a diffrent IP then my own?
I've tried to code a few things using proxys but without success. Was thinking that perhaps the Proxys IP would be given instead of mine!?
The thing is that I can not let the other one recive my real IP.
fatman
09-06-2002, 08:11 AM
Originally posted by deffe
Is it possible to at least send a diffrent IP then my own?
...< snipped >...
The thing is that I can not let the other one recive my real IP.
Why?
Ahmad
09-06-2002, 01:16 PM
If you use a proxy, then they won't get your IP address.
However, sometimes the ISP themselves are using something called a transparent proxy, in which case the standard proxy solution might not work, but that also means that the IP of your ISP's proxy servers is what will appear to the other end (the web server), and not your own IP address.