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
Post a Comment