CVE-2021-25309

9.8 CRITICAL

📋 TL;DR

This vulnerability allows remote attackers to brute-force the administrative telnet service on Gigaset DX600A handsets due to no lockout/throttling and a weak 4-digit password policy. Attackers can gain full administrative access to the device. Only Gigaset DX600A devices with vulnerable firmware are affected.

💻 Affected Systems

Products:
  • Gigaset DX600A Handset
Versions: v41.00-175
Operating Systems: Embedded firmware
Default Config Vulnerable: ⚠️ Yes
Notes: Telnet service runs on port 650 by default. The weak 4-digit password policy is enforced by the device.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Complete compromise of the device allowing attackers to install malware, intercept communications, pivot to internal networks, or use the device as a botnet node.

🟠

Likely Case

Unauthorized administrative access leading to device takeover, call interception, and potential lateral movement within the network.

🟢

If Mitigated

Limited to no impact if telnet service is disabled or strong access controls are implemented.

🌐 Internet-Facing: HIGH - Telnet service on port 650 is directly accessible if exposed to internet, allowing remote brute-force attacks.
🏢 Internal Only: HIGH - Even internally, attackers on the network can brute-force the weak password to gain administrative control.

🎯 Exploit Status

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

Simple brute-force attack against telnet service with only 10,000 possible password combinations (0000-9999).

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Unknown

Vendor Advisory: No official vendor advisory found

Restart Required: No

Instructions:

No official patch available. Check Gigaset website for firmware updates or contact vendor support.

🔧 Temporary Workarounds

Disable Telnet Service

all

Disable the telnet administrative service on port 650 if not required.

Access device admin interface > Disable telnet service

Network Access Control

linux

Restrict access to port 650 using firewall rules to only trusted IP addresses.

iptables -A INPUT -p tcp --dport 650 -s TRUSTED_IP -j ACCEPT
iptables -A INPUT -p tcp --dport 650 -j DROP

🧯 If You Can't Patch

  • Isolate affected devices on separate VLAN with strict network segmentation
  • Implement network monitoring for brute-force attempts on port 650

🔍 How to Verify

Check if Vulnerable:

Check if telnet service is running on port 650: nmap -p 650 <device_ip>

Check Version:

Check device firmware version in admin interface or via telnet banner

Verify Fix Applied:

Verify telnet service is disabled or inaccessible: telnet <device_ip> 650 (should fail to connect)

📡 Detection & Monitoring

Log Indicators:

  • Multiple failed telnet authentication attempts from single source
  • Successful telnet login from unexpected IP

Network Indicators:

  • High volume of TCP connections to port 650
  • Brute-force patterns in network traffic

SIEM Query:

source_port=650 AND (event_type="authentication_failed" OR event_type="authentication_successful") | stats count by src_ip

🔗 References

📤 Share & Export