CVE-2025-32843

8.8 HIGH

📋 TL;DR

This SQL injection vulnerability in TeleControl Server Basic allows authenticated attackers to bypass authorization controls, read/write to the database, and execute code with NetworkService permissions. It affects all versions before V3.1.2.2. Attackers need access to port 8000 on systems running vulnerable versions.

💻 Affected Systems

Products:
  • TeleControl Server Basic
Versions: All versions < V3.1.2.2
Operating Systems: Windows
Default Config Vulnerable: ⚠️ Yes
Notes: Vulnerability exists in default configuration. Requires TeleControl Server Basic service running on port 8000.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Complete system compromise with NetworkService privileges leading to lateral movement, data exfiltration, and persistent backdoor installation.

🟠

Likely Case

Database manipulation, credential theft, and unauthorized access to control systems data.

🟢

If Mitigated

Limited impact due to network segmentation and strong authentication controls preventing access to port 8000.

🌐 Internet-Facing: HIGH - Port 8000 exposed to internet would allow remote exploitation by authenticated attackers.
🏢 Internal Only: HIGH - Internal attackers with network access to port 8000 can exploit this vulnerability.

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: UNKNOWN
Unauthenticated Exploit: ✅ No
Complexity: LOW

Requires authenticated access to port 8000. SQL injection through LockUser method is straightforward for attackers with basic SQLi knowledge.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: V3.1.2.2

Vendor Advisory: https://cert-portal.siemens.com/productcert/html/ssa-443402.html

Restart Required: Yes

Instructions:

1. Download V3.1.2.2 from Siemens support portal. 2. Backup current configuration. 3. Stop TeleControl Server Basic service. 4. Install update. 5. Restart service. 6. Verify version.

🔧 Temporary Workarounds

Network Segmentation

windows

Restrict access to port 8000/TCP to only trusted management networks

Windows Firewall: New-NetFirewallRule -DisplayName "Block TeleControl Port" -Direction Inbound -LocalPort 8000 -Protocol TCP -Action Block

Authentication Hardening

all

Implement strong authentication and limit user accounts with access to TeleControl Server

🧯 If You Can't Patch

  • Implement strict network access controls to port 8000/TCP using firewalls
  • Monitor for SQL injection attempts in application logs and network traffic to port 8000

🔍 How to Verify

Check if Vulnerable:

Check TeleControl Server Basic version in application interface or Windows Programs and Features. If version is below V3.1.2.2, system is vulnerable.

Check Version:

Check via TeleControl Server Basic GUI or Windows registry: HKEY_LOCAL_MACHINE\SOFTWARE\Siemens\TeleControl Server Basic\Version

Verify Fix Applied:

Verify version shows V3.1.2.2 or higher in application interface. Test LockUser functionality with SQL injection test payloads.

📡 Detection & Monitoring

Log Indicators:

  • Unusual SQL queries in application logs
  • Multiple failed authentication attempts followed by LockUser calls
  • Database error messages containing SQL syntax

Network Indicators:

  • SQL injection patterns in traffic to port 8000
  • Unusual database queries from TeleControl Server process
  • Network traffic spikes on port 8000

SIEM Query:

source="telecontrol_logs" AND ("LockUser" OR "SQL" OR "database error") AND ("' OR" OR "UNION" OR "SELECT *")

🔗 References

📤 Share & Export