CVE-2025-13221

5.3 MEDIUM

📋 TL;DR

This vulnerability in Intelbras UnniTI 24.07.11 allows remote attackers to access plaintext admin credentials stored in the /xml/sistema/usuarios.xml file. Anyone using the affected version of Intelbras UnniTI is vulnerable to credential theft and potential system compromise.

💻 Affected Systems

Products:
  • Intelbras UnniTI
Versions: 24.07.11
Operating Systems: Unknown
Default Config Vulnerable: ⚠️ Yes
Notes: The vulnerability affects the specific version mentioned; other versions may also be vulnerable but unconfirmed.

⚠️ Manual Verification Required

This CVE does not have specific version information in our database, so automatic vulnerability detection cannot determine if your system is affected.

Why? The CVE database entry doesn't specify which versions are vulnerable (no version ranges provided by the vendor/NVD).

🔒 Custom verification scripts are available for registered users. Sign up free to download automated test scripts.

Recommended Actions:
  1. Review the CVE details at NVD
  2. Check vendor security advisories for your specific version
  3. Test if the vulnerability is exploitable in your environment
  4. Consider updating to the latest version as a precaution

⚠️ Risk & Real-World Impact

🔴

Worst Case

Attackers gain administrative access to the system, leading to complete compromise, data theft, and potential lateral movement within the network.

🟠

Likely Case

Attackers steal admin credentials and gain unauthorized access to the management interface, potentially modifying configurations or accessing sensitive data.

🟢

If Mitigated

With proper network segmentation and access controls, impact is limited to the vulnerable system only.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploit is publicly available and requires minimal technical skill to execute remotely.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Unknown

Vendor Advisory: Unknown

Restart Required: No

Instructions:

Check Intelbras website for security updates or contact vendor support for patching guidance.

🔧 Temporary Workarounds

Restrict Access to XML Files

all

Block external access to the /xml/sistema/ directory via web server configuration or firewall rules.

# Example for Apache: <Location "/xml/sistema/">
    Require all denied
</Location>
# Example for Nginx: location /xml/sistema/ {
    deny all;
}

Network Segmentation

linux

Isolate the UnniTI system from untrusted networks and restrict access to authorized IPs only.

# Example iptables rule: iptables -A INPUT -p tcp --dport [UNNITI_PORT] -s [TRUSTED_IP] -j ACCEPT
iptables -A INPUT -p tcp --dport [UNNITI_PORT] -j DROP

🧯 If You Can't Patch

  • Change all admin passwords immediately and monitor for unauthorized access.
  • Implement strict network access controls to limit exposure to the vulnerable system.

🔍 How to Verify

Check if Vulnerable:

Access http://[TARGET_IP]/xml/sistema/usuarios.xml and check if plaintext credentials are visible.

Check Version:

Check the UnniTI web interface or system documentation for version information.

Verify Fix Applied:

Attempt to access the usuarios.xml file after applying workarounds; it should be inaccessible or return an error.

📡 Detection & Monitoring

Log Indicators:

  • Unusual access patterns to /xml/sistema/usuarios.xml
  • Failed login attempts followed by successful logins from new IPs

Network Indicators:

  • HTTP GET requests to /xml/sistema/usuarios.xml from untrusted sources

SIEM Query:

source="web_server" AND uri="/xml/sistema/usuarios.xml"

🔗 References

📤 Share & Export