CVE-2022-34549

8.8 HIGH

📋 TL;DR

CVE-2022-34549 is an arbitrary file upload vulnerability in Sims v1.0 that allows attackers to upload malicious files via the /uploadServlet component. This can lead to remote code execution and privilege escalation. Anyone running Sims v1.0 is affected.

💻 Affected Systems

Products:
  • Sims
Versions: v1.0
Operating Systems: Any OS running Sims
Default Config Vulnerable: ⚠️ Yes
Notes: Only affects Sims v1.0 with the vulnerable /uploadServlet endpoint enabled

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Complete system compromise via remote code execution, data theft, and persistent backdoor installation

🟠

Likely Case

Unauthorized file upload leading to web shell deployment and limited command execution

🟢

If Mitigated

File upload attempts blocked or sanitized, preventing exploitation

🌐 Internet-Facing: HIGH - Directly accessible upload endpoint with no authentication required
🏢 Internal Only: MEDIUM - Still exploitable by internal attackers or compromised accounts

🎯 Exploit Status

Public PoC: ⚠️ Yes
Weaponized: LIKELY
Unauthenticated Exploit: ⚠️ Yes
Complexity: LOW

Simple file upload exploitation with publicly available proof-of-concept

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Unknown

Vendor Advisory: No official vendor advisory found

Restart Required: No

Instructions:

No official patch available. Consider workarounds or alternative software.

🔧 Temporary Workarounds

Disable uploadServlet endpoint

all

Remove or disable the vulnerable /uploadServlet component

# Remove or rename uploadServlet class file
# Disable servlet mapping in web.xml

Implement file upload restrictions

all

Add server-side validation for file types, extensions, and content

# Configure web server to block certain file extensions
# Implement file type verification in code

🧯 If You Can't Patch

  • Implement strict network segmentation and firewall rules to limit access to Sims
  • Deploy web application firewall (WAF) with file upload protection rules

🔍 How to Verify

Check if Vulnerable:

Check if Sims v1.0 is installed and if /uploadServlet endpoint is accessible

Check Version:

# Check application version in web interface or configuration files

Verify Fix Applied:

Test file upload functionality with malicious files to ensure they are rejected

📡 Detection & Monitoring

Log Indicators:

  • Unusual file uploads to /uploadServlet
  • Execution of unexpected system commands
  • Uploads of executable files (e.g., .jsp, .php, .war)

Network Indicators:

  • POST requests to /uploadServlet with suspicious file content
  • Subsequent connections to uploaded malicious files

SIEM Query:

source="web_logs" AND uri="/uploadServlet" AND (file_extension="jsp" OR file_extension="php" OR file_extension="war")

🔗 References

📤 Share & Export