CVE-2026-4075
Stored XSS in BWL Advanced FAQ Manager Lite WordPress Plugin
Publication date: 2026-03-26
Last updated on: 2026-03-26
Assigner: Wordfence
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-79 | The product does not neutralize or incorrectly neutralizes user-controllable input before it is placed in output that is used as a web page that is served to other users. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
The BWL Advanced FAQ Manager Lite plugin for WordPress has a Stored Cross-Site Scripting (XSS) vulnerability in all versions up to and including 1.1.1. This vulnerability arises because the plugin does not properly sanitize or escape user-supplied shortcode attributes such as 'sbox_id', 'sbox_class', 'placeholder', 'highlight_color', 'highlight_bg', and 'cont_ext_class'. These attributes are directly inserted into HTML element attributes without escaping, allowing authenticated users with Contributor-level access or higher to inject malicious scripts. These scripts then execute whenever any user views the affected page.
How can this vulnerability impact me? :
This vulnerability allows an authenticated attacker with Contributor-level access or above to inject arbitrary JavaScript code into pages via shortcode attributes. The injected scripts execute in the browsers of users who visit those pages, potentially leading to session hijacking, defacement, unauthorized actions on behalf of users, or theft of sensitive information. Because the attack is stored, the malicious code persists on the site and affects all visitors to the compromised pages.
How can this vulnerability be detected on my network or system? Can you suggest some commands?
The vulnerability in the BWL Advanced FAQ Manager Lite plugin is a Stored Cross-Site Scripting (XSS) issue via the 'baf_sbox' shortcode attributes. Detection involves identifying if your WordPress site uses this plugin version 1.1.1 or earlier and if the vulnerable shortcode is present in pages or posts.
Since the vulnerability is related to shortcode attributes that are insufficiently sanitized, detection can include searching for usage of the 'baf_sbox' shortcode with suspicious or unexpected attribute values in the WordPress content database.
- Search your WordPress database for posts or pages containing the '[baf_sbox]' shortcode, for example using SQL commands:
- SELECT ID, post_title FROM wp_posts WHERE post_content LIKE '%[baf_sbox%';
- Look for suspicious script tags or encoded payloads in the shortcode attributes within the post_content field.
- Monitor HTTP traffic for unexpected script execution or injected scripts on pages using this shortcode.
No specific detection commands or tools are provided in the available resources.
What immediate steps should I take to mitigate this vulnerability?
The primary mitigation step is to update the BWL Advanced FAQ Manager Lite plugin to version 1.1.2 or later, where the vulnerability has been fixed.
If immediate updating is not possible, restrict Contributor-level and higher user permissions to trusted users only, as the vulnerability requires authenticated users with at least Contributor access to exploit.
Additionally, review and sanitize any existing content using the 'baf_sbox' shortcode to remove potentially malicious scripts.
Consider implementing Web Application Firewall (WAF) rules to detect and block attempts to inject scripts via shortcode attributes.
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
The vulnerability in the BWL Advanced FAQ Manager Lite plugin is a Stored Cross-Site Scripting (XSS) issue that allows authenticated attackers with Contributor-level access to inject arbitrary scripts. This can lead to unauthorized script execution when users access affected pages.
Such XSS vulnerabilities can impact compliance with common standards and regulations like GDPR and HIPAA because they may lead to unauthorized access or exposure of personal or sensitive data through session hijacking, data theft, or manipulation of user interactions.
Specifically, failure to properly sanitize and escape user input as seen in this plugin can result in breaches of data protection principles, potentially violating requirements for data integrity, confidentiality, and security controls mandated by these regulations.