-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathpublickey_fromfile.py
executable file
·48 lines (38 loc) · 1.44 KB
/
publickey_fromfile.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
"""Example script for authentication with public key from file"""
from __future__ import print_function
import argparse
import socket
import os
import pwd
import sys
from ssh2.session import Session
USERNAME = pwd.getpwuid(os.geteuid()).pw_name
parser = argparse.ArgumentParser()
parser.add_argument('privatekey', help="Private key file to authenticate with")
parser.add_argument('cmd', help="Command to run")
parser.add_argument('--host', dest='host',
default='localhost',
help='Host to connect to')
parser.add_argument('--port', dest='port', default=22, help="Port to connect on", type=int)
parser.add_argument('-u', dest='user', default=USERNAME, help="User name to authenticate as")
parser.add_argument('-p', '--passphrase', dest="passphrase",
help="Passphrase to unlock key with", default='')
def main():
args = parser.parse_args()
if not os.path.isfile(args.privatekey):
print("No such private key %s" % (args.privatekey,))
sys.exit(1)
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.connect((args.host, args.port))
s = Session()
s.handshake(sock)
s.userauth_publickey_fromfile(
args.user, args.privatekey, passphrase=args.passphrase)
chan = s.open_session()
chan.execute(args.cmd)
size, data = chan.read()
while size > 0:
print(data)
size, data = chan.read()
if __name__ == "__main__":
main()