- Hoạt động trên tất cả các hệ điều hành: Window, UNIX
- Chỉ mới thử nghiệm trên Python 3.x
Một thư viện sử dụng để enable kết nối SSH về Socks5 Proxy. Giống như cách sử dụng OpenSSH.
ssh -D 1080 -N username@host
def test(host, username, password, port):
controlssh = SSHProxyControler(host, username, password, port)
sshstatus, host, port = controlssh.start()
print(sshstatus, host, port)
if sshstatus:
time.sleep(30) #Make some request right here
controlssh.stop()
print('SSH is Stoped')
else:
print('Can not connect to SSH')
test('14.177.235.133', 'admin', 'admin', 1082)
pip3 install asyncssh
- asyncssh - Full support for SSHv2, SFTP, and SCP client and server functions
👤 Văn Tài
- Twitter: @mrluaf
- Facebook: @LuaAcoustic
- Github: @mrluaf
- Gitlab: @mrluaf
Copyright © 2019 Văn Tài.
Made with ❤️ by Văn Tài