CVE-2023-0090

9.8 CRITICAL

📋 TL;DR

This CVE describes a critical remote code execution vulnerability in Proofpoint Enterprise Protection webservices. An anonymous attacker can execute arbitrary code through eval injection in the API. All Proofpoint PPS/POD versions 8.20.0 and below are affected.

💻 Affected Systems

Products:
  • Proofpoint Enterprise Protection (PPS/POD)
Versions: All versions 8.20.0 and below
Operating Systems: All supported OS for Proofpoint Enterprise Protection
Default Config Vulnerable: ✅ No
Notes: Exploitation requires network access to webservices API, which is a non-standard configuration according to Proofpoint.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Complete system compromise allowing attacker to execute arbitrary commands with system privileges, potentially leading to data exfiltration, lateral movement, or ransomware deployment.

🟠

Likely Case

Attacker gains initial foothold in the network, installs backdoors, and establishes persistence for further attacks.

🟢

If Mitigated

Limited impact due to network segmentation and restricted API access, with only isolated service disruption possible.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: UNKNOWN
Unauthenticated Exploit: ⚠️ Yes
Complexity: LOW

Anonymous exploitation with eval injection suggests relatively straightforward attack vectors once API access is obtained.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 8.20.1 and above

Vendor Advisory: https://www.proofpoint.com/security/security-advisories/pfpt-sa-2023-0001

Restart Required: Yes

Instructions:

1. Download latest version from Proofpoint support portal. 2. Backup current configuration. 3. Apply patch following Proofpoint upgrade documentation. 4. Restart services. 5. Verify functionality.

🔧 Temporary Workarounds

Restrict API Network Access

linux

Block external access to Proofpoint webservices API endpoints using firewall rules

iptables -A INPUT -p tcp --dport [API_PORT] -j DROP

Disable Unused Webservices

linux

Disable non-essential webservices that are not required for operations

service proofpoint-webservices stop
systemctl disable proofpoint-webservices

🧯 If You Can't Patch

  • Implement strict network segmentation to isolate Proofpoint systems from untrusted networks
  • Deploy web application firewall (WAF) with specific rules to block eval injection patterns

🔍 How to Verify

Check if Vulnerable:

Check Proofpoint version via admin interface or command: proofpoint-version

Check Version:

proofpoint-version

Verify Fix Applied:

Verify version is 8.20.1 or higher and test API functionality

📡 Detection & Monitoring

Log Indicators:

  • Unusual API requests containing eval() patterns
  • Multiple failed authentication attempts to webservices
  • Suspicious process execution from webservices

Network Indicators:

  • Unusual outbound connections from Proofpoint server
  • Traffic to webservices API from unexpected sources

SIEM Query:

source="proofpoint" AND (eval OR injection OR webservices) AND severity=high

🔗 References

📤 Share & Export