├── .bzrignore ├── .gitignore ├── .travis.yml ├── CHANGES ├── ChangeLog.0 ├── ChangeLog.1 ├── LICENSE ├── MANIFEST.in ├── Makefile ├── NEWS ├── NOTES ├── README.legacy ├── README.md ├── TODO ├── demos ├── demo.py ├── demo_server.py ├── demo_sftp.py ├── demo_simple.py ├── forward.py ├── interactive.py ├── rforward.py ├── test_rsa.key ├── user_rsa_key └── user_rsa_key.pub ├── images ├── paramiko-banner.png ├── paramiko-banner.psd └── paramiko.png ├── setup.py ├── setup_helper.py ├── ssh ├── __init__.py ├── agent.py ├── auth_handler.py ├── ber.py ├── buffered_pipe.py ├── channel.py ├── client.py ├── common.py ├── compress.py ├── config.py ├── dsskey.py ├── file.py ├── hostkeys.py ├── kex_gex.py ├── kex_group1.py ├── logging22.py ├── message.py ├── packet.py ├── pipe.py ├── pkey.py ├── primes.py ├── resource.py ├── rsakey.py ├── server.py ├── sftp.py ├── sftp_attr.py ├── sftp_client.py ├── sftp_file.py ├── sftp_handle.py ├── sftp_server.py ├── sftp_si.py ├── ssh_exception.py ├── transport.py ├── util.py └── win_pageant.py ├── test.py └── tests ├── loop.py ├── stub_sftp.py ├── test_auth.py ├── test_buffered_pipe.py ├── test_client.py ├── test_dss.key ├── test_dss_password.key ├── test_file.py ├── test_hostkeys.py ├── test_kex.py ├── test_message.py ├── test_packetizer.py ├── test_pkey.py ├── test_rsa.key ├── test_rsa_password.key ├── test_sftp.py ├── test_sftp_big.py ├── test_transport.py └── test_util.py /.bzrignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/.bzrignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | build/ 3 | dist/ 4 | ssh.egg-info/ 5 | test.log 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/CHANGES -------------------------------------------------------------------------------- /ChangeLog.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ChangeLog.0 -------------------------------------------------------------------------------- /ChangeLog.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ChangeLog.1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/Makefile -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/NEWS -------------------------------------------------------------------------------- /NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/NOTES -------------------------------------------------------------------------------- /README.legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/README.legacy -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/TODO -------------------------------------------------------------------------------- /demos/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/demos/demo.py -------------------------------------------------------------------------------- /demos/demo_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/demos/demo_server.py -------------------------------------------------------------------------------- /demos/demo_sftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/demos/demo_sftp.py -------------------------------------------------------------------------------- /demos/demo_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/demos/demo_simple.py -------------------------------------------------------------------------------- /demos/forward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/demos/forward.py -------------------------------------------------------------------------------- /demos/interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/demos/interactive.py -------------------------------------------------------------------------------- /demos/rforward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/demos/rforward.py -------------------------------------------------------------------------------- /demos/test_rsa.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/demos/test_rsa.key -------------------------------------------------------------------------------- /demos/user_rsa_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/demos/user_rsa_key -------------------------------------------------------------------------------- /demos/user_rsa_key.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/demos/user_rsa_key.pub -------------------------------------------------------------------------------- /images/paramiko-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/images/paramiko-banner.png -------------------------------------------------------------------------------- /images/paramiko-banner.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/images/paramiko-banner.psd -------------------------------------------------------------------------------- /images/paramiko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/images/paramiko.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/setup.py -------------------------------------------------------------------------------- /setup_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/setup_helper.py -------------------------------------------------------------------------------- /ssh/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ssh/__init__.py -------------------------------------------------------------------------------- /ssh/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ssh/agent.py -------------------------------------------------------------------------------- /ssh/auth_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ssh/auth_handler.py -------------------------------------------------------------------------------- /ssh/ber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ssh/ber.py -------------------------------------------------------------------------------- /ssh/buffered_pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ssh/buffered_pipe.py -------------------------------------------------------------------------------- /ssh/channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ssh/channel.py -------------------------------------------------------------------------------- /ssh/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ssh/client.py -------------------------------------------------------------------------------- /ssh/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ssh/common.py -------------------------------------------------------------------------------- /ssh/compress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ssh/compress.py -------------------------------------------------------------------------------- /ssh/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ssh/config.py -------------------------------------------------------------------------------- /ssh/dsskey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ssh/dsskey.py -------------------------------------------------------------------------------- /ssh/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ssh/file.py -------------------------------------------------------------------------------- /ssh/hostkeys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ssh/hostkeys.py -------------------------------------------------------------------------------- /ssh/kex_gex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ssh/kex_gex.py -------------------------------------------------------------------------------- /ssh/kex_group1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ssh/kex_group1.py -------------------------------------------------------------------------------- /ssh/logging22.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ssh/logging22.py -------------------------------------------------------------------------------- /ssh/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ssh/message.py -------------------------------------------------------------------------------- /ssh/packet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ssh/packet.py -------------------------------------------------------------------------------- /ssh/pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ssh/pipe.py -------------------------------------------------------------------------------- /ssh/pkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ssh/pkey.py -------------------------------------------------------------------------------- /ssh/primes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ssh/primes.py -------------------------------------------------------------------------------- /ssh/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ssh/resource.py -------------------------------------------------------------------------------- /ssh/rsakey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ssh/rsakey.py -------------------------------------------------------------------------------- /ssh/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ssh/server.py -------------------------------------------------------------------------------- /ssh/sftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ssh/sftp.py -------------------------------------------------------------------------------- /ssh/sftp_attr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ssh/sftp_attr.py -------------------------------------------------------------------------------- /ssh/sftp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ssh/sftp_client.py -------------------------------------------------------------------------------- /ssh/sftp_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ssh/sftp_file.py -------------------------------------------------------------------------------- /ssh/sftp_handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ssh/sftp_handle.py -------------------------------------------------------------------------------- /ssh/sftp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ssh/sftp_server.py -------------------------------------------------------------------------------- /ssh/sftp_si.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ssh/sftp_si.py -------------------------------------------------------------------------------- /ssh/ssh_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ssh/ssh_exception.py -------------------------------------------------------------------------------- /ssh/transport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ssh/transport.py -------------------------------------------------------------------------------- /ssh/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ssh/util.py -------------------------------------------------------------------------------- /ssh/win_pageant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/ssh/win_pageant.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/test.py -------------------------------------------------------------------------------- /tests/loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/tests/loop.py -------------------------------------------------------------------------------- /tests/stub_sftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/tests/stub_sftp.py -------------------------------------------------------------------------------- /tests/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/tests/test_auth.py -------------------------------------------------------------------------------- /tests/test_buffered_pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/tests/test_buffered_pipe.py -------------------------------------------------------------------------------- /tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/tests/test_client.py -------------------------------------------------------------------------------- /tests/test_dss.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/tests/test_dss.key -------------------------------------------------------------------------------- /tests/test_dss_password.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/tests/test_dss_password.key -------------------------------------------------------------------------------- /tests/test_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/tests/test_file.py -------------------------------------------------------------------------------- /tests/test_hostkeys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/tests/test_hostkeys.py -------------------------------------------------------------------------------- /tests/test_kex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/tests/test_kex.py -------------------------------------------------------------------------------- /tests/test_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/tests/test_message.py -------------------------------------------------------------------------------- /tests/test_packetizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/tests/test_packetizer.py -------------------------------------------------------------------------------- /tests/test_pkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/tests/test_pkey.py -------------------------------------------------------------------------------- /tests/test_rsa.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/tests/test_rsa.key -------------------------------------------------------------------------------- /tests/test_rsa_password.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/tests/test_rsa_password.key -------------------------------------------------------------------------------- /tests/test_sftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/tests/test_sftp.py -------------------------------------------------------------------------------- /tests/test_sftp_big.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/tests/test_sftp_big.py -------------------------------------------------------------------------------- /tests/test_transport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/tests/test_transport.py -------------------------------------------------------------------------------- /tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitprophet/ssh/HEAD/tests/test_util.py --------------------------------------------------------------------------------