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

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

jsf - How to ajax update an item in the footer of a PrimeFaces dataTable? -

jquery - Keeping Kendo Datepicker in min/max range -