-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy path32-server-proxy-chaining-from-random-pool.php
More file actions
42 lines (33 loc) · 1.52 KB
/
32-server-proxy-chaining-from-random-pool.php
File metadata and controls
42 lines (33 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
// A more advanced example which runs a SOCKS proxy server that randomly forwards
// to a pool of SOCKS servers (random proxy chaining).
// The listen address can be given as first argument.
// The upstream proxy servers can be given as additional arguments.
//
// See also examples #12 and #14 for the client side.
require __DIR__ . '/../vendor/autoload.php';
if (!isset($argv[3])) {
echo 'No arguments given! Run with <listen> <proxy1> <proxyN>...' . PHP_EOL;
echo 'You can add 2..n proxies in the pool' . PHP_EOL;
exit(1);
}
$listen = $argv[1];
$pool = array_slice($argv, 2);
// Alternatively, you can also hard-code these values like this:
//$listen = '127.0.0.1:9050';
//$pool = array('127.0.0.1:9051', '127.0.0.1:9052', '127.0.0.1:9053');
// forward to socks server listening on 127.0.0.1:9051-9053
// this connector randomly picks one of the the attached connectors from the pool
$connector = new React\Socket\Connector();
$proxies = array();
foreach ($pool as $proxy) {
$proxies []= new Clue\React\Socks\Client($proxy, $connector);
}
$connector = new ConnectionManager\Extra\Multiple\ConnectionManagerRandom($proxies);
// start the SOCKS proxy server using our connection manager for outgoing connections
$socks = new Clue\React\Socks\Server(null, $connector);
// listen on 127.0.0.1:1080 or first argument
$socket = new React\Socket\SocketServer($listen);
$socks->listen($socket);
echo 'SOCKS server listening on ' . $socket->getAddress() . PHP_EOL;
echo 'Randomly picking from: ' . implode(', ', $pool) . PHP_EOL;