php - How to login into SSH throue TOR -


i using class (phpseclib): http://phpseclib.sourceforge.net/

to connect ssh, not find way throue proxy or tor :)

here code:

include('net/ssh2.php'); $ssh = new net_ssh2($ip, $port); if (!$ssh->login($user, $pass)) {     die('failed');     exit; } else {     die('connect');     exit; } 

any idea on how add proxy code ?

thank in advance.


Comments

Popular posts from this blog

rdbms - what exactly the undo information lives in oracle? -

bash - How do you programmatically add a bats test? -

java - Getting exception in JDBC thin driver -