|
|
| Author |
Message |
D-Fender Proxyblind Mercenary

Joined: 07 May 2005 Posts: 5
Poster Level :
1
|
Posted: Sun May 22, 2005 9:40 pm • Post subject: PHP proxy opener |
|
|
Hi guys,
I'm looking for some PHP code that open a proxy for use. Something like the phpscript open the proxy and go to an specific webpage. All codes I found opens a proxy just for pinging and testin.
Some one have an ideia?
D-Fender |
|
| Back to top |
|
 |
Sponsor
|
|
 |
Make Admin
 Summary rating


Joined: 28 Feb 2005 Posts: 4808
Poster Level :
50
|
Posted: Sun May 22, 2005 10:40 pm • Post subject: |
|
|
You think something as CGIproxy?Script that is installed on server and using it you can surf through the net.Ip that you use is actually IP from server self. _________________ ProxyBlind.org - Offer quality proxy server list along with everything related to privacy, anonymity and security since 2001! |
|
| Back to top |
|
 |
Sponsor
|
|
 |
D-Fender Proxyblind Mercenary

Joined: 07 May 2005 Posts: 5
Poster Level :
1
|
Posted: Thu Jun 02, 2005 1:08 am • Post subject: |
|
|
Yes anything like phpproxy.com, but with a proxy rotator.
I found a script to open proxy in php, when I have time I will modify it. If I have success, I post it here. |
|
| Back to top |
|
 |
teknikal420 Proxyblind Mercenary

Joined: 14 Apr 2005 Posts: 3
Poster Level :
1
|
Posted: Tue Jun 21, 2005 8:12 pm • Post subject: |
|
|
| i had a script that did this, but I reformated, i found it on planetsourcecode check there. |
|
| Back to top |
|
 |
Sponsor
|
|
 |
mikusss Proxyblind Mercenary

Joined: 26 Jun 2005 Posts: 1
Poster Level :
1
|
Posted: Sun Jun 26, 2005 2:17 pm • Post subject: phproxy with proxy rotation |
|
|
try www.astalavista.com and search around or use some ready script (from www.hotcsripts.com or similar site) and add such feature yourself. It is not too hard, some time ago I did a similar tool for a third party, maybe I would be willing to share the code with you, for a little "charge" ;). Just message me.
M. |
|
| Back to top |
|
 |
redbranch Proxyblind Mercenary

Joined: 31 Mar 2006 Posts: 1
Poster Level :
1
|
Posted: Fri Mar 31, 2006 11:58 pm • Post subject: Using CURL a php library |
|
|
<?
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'http://www.example.com');
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 1);
curl_setopt($ch, CURLOPT_PROXY, 'fakeproxy.com:1080');
curl_setopt($ch, CURLOPT_PROXYUSERPWD, 'user:password');
$data = curl_exec();
curl_close($ch);
?>
you can check if curl is installed using the phpinfo() function. |
|
| Back to top |
|
 |
Sponsor
|
|
 |
|