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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
|
import paramiko import os
def connect(host, port, user, password): try: ssh = paramiko.SSHClient() ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) ssh.connect(host, port, user, password) return ssh except Exception as e: print('[-] Error connecting to host: ' + str(e)) return None
def connect_key(host, port, user, key): try: ssh = paramiko.SSHClient() ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) ssh.connect(host, port, user, key_filename=key) return ssh except Exception as e: print('[-] Error connecting to host: ' + str(e)) return None
def execute(ssh, command): try: stdin, stdout, stderr = ssh.exec_command(command) return stdout.read() except Exception as e: print('[-] Error executing command: ' + str(e)) return None
def close(ssh): ssh.close()
def main(): host = '' port = 22 user = "root" password = "" ssh = connect(host, port, user, password) if ssh: print(execute(ssh, 'ls -l'))
if os.path.exists(host + '_private.key') and os.path.exists(host + '_public.key'): print('[-] The private key and publish key is exist') return
key = paramiko.RSAKey.generate(2048) public_key = key.get_base64() private_key = key.get_base64()
public_key = f"ssh-rsa {public_key} {user}@{host}"
execute(ssh, 'echo ' + public_key + ' >> ~/.ssh/authorized_keys')
print(public_key)
key.write_private_key_file(host + '_private.key') with open(host + '_public.key', 'w') as public_key_file: public_key_file.write(public_key)
close(ssh) else: print('[-] Connection failed')
def main_key(): host = '' port = 22 user = "root" ssh = connect_key(host, port, user, key= host + '_private.key') if ssh: print(execute(ssh, 'ls -l'))
public_key = open(host + '_public.key', 'r').read() public_key = public_key.strip() print(public_key) authorized_keys = execute(ssh, 'cat ~/.ssh/authorized_keys') print(authorized_keys) if public_key in authorized_keys.decode("utf-8"): print('[-] The public key is exist') else: execute(ssh, 'echo ' + public_key + ' >> ~/.ssh/authorized_keys')
close(ssh) else: print('[-] Connection failed')
if __name__ == '__main__': main_key()
|