Created
February 24, 2011 09:09
-
-
Save mlafeldt/841944 to your computer and use it in GitHub Desktop.
[Python] paramiko examples
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import sys, paramiko | |
if len(sys.argv) < 5: | |
print "args missing" | |
sys.exit(1) | |
hostname = sys.argv[1] | |
password = sys.argv[2] | |
source = sys.argv[3] | |
dest = sys.argv[4] | |
username = "root" | |
port = 22 | |
try: | |
t = paramiko.Transport((hostname, port)) | |
t.connect(username=username, password=password) | |
sftp = paramiko.SFTPClient.from_transport(t) | |
sftp.get(source, dest) | |
finally: | |
t.close() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import sys, paramiko | |
if len(sys.argv) < 4: | |
print "args missing" | |
sys.exit(1) | |
hostname = sys.argv[1] | |
password = sys.argv[2] | |
command = sys.argv[3] | |
username = "admin" | |
port = 22 | |
try: | |
client = paramiko.SSHClient() | |
client.load_system_host_keys() | |
client.set_missing_host_key_policy(paramiko.WarningPolicy) | |
client.connect(hostname, port=port, username=username, password=password) | |
stdin, stdout, stderr = client.exec_command(command) | |
print stdout.read(), | |
finally: | |
client.close() |
Hi kritisingh,
You could use getpass for that: https://pymotw.com/2/getpass/
That is fine with ssh ... but in "pure paramiko" how would you formulate http://docs.paramiko.org/en/2.4/api/sftp.html#paramiko.sftp_client.SFTPClient.listdir ?
How can I ssh to multiple devices
Hey can anyone tell me that, is SSH exploit public key script is available or not,
how to write command for windows remote server path.
Hey,
how can I use these openssh options on paramiko?
ssh -oHostKeyAlgorithms=+ssh-dss -oKexAlgorithms=+diffie-hellman-group1-sha1 -c aes256-cbc user@host
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi Ricardo,
I want to pass encrypted password to connect method. How can I do that. I could not find the documentation on paramiko site.