CVE-2025-9843

5.3 MEDIUM

📋 TL;DR

An information disclosure vulnerability in Das Parking Management System 6.2.0 allows remote attackers to access sensitive data through the /Operator/FindAll endpoint. This affects all systems running the vulnerable version of this parking management software. The flaw exposes potentially confidential information without authentication.

💻 Affected Systems

Products:
  • Das Parking Management System
Versions: 6.2.0
Operating Systems: Any OS running the software
Default Config Vulnerable: ⚠️ Yes
Notes: All installations of version 6.2.0 are vulnerable by default. The software appears to be a Chinese parking management system.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Attackers could access sensitive operator data, user credentials, or system configuration details, potentially enabling further attacks or data breaches.

🟠

Likely Case

Unauthorized access to operator information and system details that could be used for reconnaissance or targeted attacks.

🟢

If Mitigated

Limited exposure of non-critical system information with proper access controls and network segmentation.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploit details are publicly available on GitHub. Attack can be performed remotely without authentication.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: UNKNOWN

Vendor Advisory: NONE

Restart Required: No

Instructions:

Check vendor website for security updates. Consider upgrading to a newer version if available.

🔧 Temporary Workarounds

Restrict Access to /Operator/FindAll

all

Block or restrict access to the vulnerable endpoint using web server configuration or firewall rules.

# Example Apache: RewriteRule ^/Operator/FindAll - [F]
# Example Nginx: location ~ /Operator/FindAll { deny all; }

Network Segmentation

all

Isolate the parking management system from internet access and restrict to internal network only.

# Configure firewall to block external access to port 80/443
# Example iptables: iptables -A INPUT -p tcp --dport 80 -s 192.168.1.0/24 -j ACCEPT

🧯 If You Can't Patch

  • Implement strict network access controls to limit who can reach the system
  • Monitor logs for unauthorized access attempts to the /Operator/FindAll endpoint

🔍 How to Verify

Check if Vulnerable:

Attempt to access http://[system-ip]/Operator/FindAll. If it returns sensitive data without authentication, the system is vulnerable.

Check Version:

Check system documentation or web interface for version information. The software may display version in admin panel or about page.

Verify Fix Applied:

After applying workarounds, verify that accessing /Operator/FindAll returns appropriate error or is blocked.

📡 Detection & Monitoring

Log Indicators:

  • HTTP GET requests to /Operator/FindAll from unauthorized IPs
  • Unusual data access patterns to operator endpoints

Network Indicators:

  • Unusual traffic to /Operator/FindAll endpoint
  • External IPs accessing internal management endpoints

SIEM Query:

source="web_logs" AND uri="/Operator/FindAll" AND (src_ip NOT IN allowed_ips)

🔗 References

📤 Share & Export