PHP Classes

Proxy Connector: Retrieve remote Web pages using the TOR network

Recommend this page to a friend!
  Info   View files Example   View files View files (5)   DownloadInstall with Composer Download .zip   Reputation   Support forum (5)   Blog    
Last Updated Ratings Unique User Downloads Download Rankings
2024-01-09 (2 months ago) RSS 2.0 feedStarStarStar 54%Total: 849 This week: 1All time: 4,102 This week: 560Up
Version License PHP version Categories
proxy-connector 1.23GNU General Publi...5.3HTTP, PHP 5
Description 

Author

This class can be used to retrieve remote Web pages using the TOR network.

It can connect to an HTTP proxy server that accesses the TOR network to communicate with any remote Web server.

The class can switch the TOR user identity and use a random browser identity on each request to further obfuscate the Web accesses done by the class.

Innovation Award
PHP Programming Innovation award nominee
December 2010
Number 6


Prize: One copy of RadPHP XE
TOR network allows you to connect to a remote host using many encrypted links that forward packets to other nodes of the TOR network, making the original computer address and location very hard to track, if possible at all.

This class can add further obfuscation to Internet accesses via TOR network by switching between random TOR user identities on each access.

Manuel Lemos
Picture of Ska-Man
Name: Ska-Man <contact>
Classes: 2 packages by
Country: Italy Italy
Age: 43
All time rank: 35412 in Italy Italy
Week rank: 411 Down18 in Italy Italy Down
Innovation award
Innovation award
Nominee: 1x

Example

<?

//include the class
//remember the configuration file is located in:
//proxyConfiguration.ini

include("./proxyConnector.class.php");

//get an istance of the proxy
$connection = proxyConnector::getIstance();

//connect to google.com and change my identity
//because "switchIdentityAfterRequest" is set to TRUE
//in the .ini file
$connection->launch("http://www.google.com/", null);

//get the data and show it
$data = $connection->getProxyData();

echo
"<pre>";
print_r($data);


Details

proxyConnector ReadMe

Read this file before use proxyConnector class.

Where find: - main class file: proxyConnector.class.php - configuration file: proxyConnector.ini - example: index.php - license: gpl-license.html

The last version is: proxyConnector 1.1 TorVersion (28/01/2011)

Before using mysessionClass check the md5sum.

8062e21ae476c038a019c50ff0ee9b6f proxyConnector.class.php 750dcb840c2c240083349d69d21f46ec proxyConfiguration.ini 7b13d3393525c6a2cfa145a4782ff523 index.php

If some file do not pass the md5sum test, ask me for the file to kaiserbaldo[]gmail.com

HowTo: If you want to use the TOR Network: 1. Verify that you have TOR installed in your system or find a TOR Proxy 2. Write the IP and the PORT of the proxy into the ini file in the [general] section 3. If you want to control TOR proxy to change identity you need to configure both the TOR proxy and the ini file. 3.1 Configurin the TOR Proxy:

    3.1.1: Go to the configuration file of the proxy and enable the control port.
           The configuration file should be placed here: /etc/tor/torrc
    3.1.2: The password need to be setted in the HashedControlPassword
    3.1.3: Set the password: tor --hash-password YOUR_STRONG_PASSWORD

3.1 The ini file:

    In the tor section write the PORT of the control port you had enable before
    and the password you used to run tor --hash-password YOUR_STRONG_PASSWORD

After that the class is ready to work

Change Log: 1.1: Solved a problem in the proxy with spaced urls

 Added this readMe

Thanks for reading


  Files folder image Files  
File Role Description
Accessible without login Plain text file proxyConnector.class.php Class The main class file
Accessible without login Plain text file proxyConfiguration.ini Data Proxy cnfiguration file
Accessible without login Plain text file index.php Example Example script
Plain text file readMe Doc. Documentation file
HTML file gpl-license.html Lic. License

 Version Control Unique User Downloads Download Rankings  
 100%
Total:849
This week:1
All time:4,102
This week:560Up
User Ratings User Comments (1)
 All time
Utility:80%StarStarStarStarStar
Consistency:80%StarStarStarStarStar
Documentation:-
Examples:65%StarStarStarStar
Tests:-
Videos:-
Overall:54%StarStarStar
Rank:2037
 
Worked at the first try.
10 years ago (Nadir)
77%StarStarStarStar