CVE-2026-15010
Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.
NVD · uneditedThe bbp Style Pack plugin for WordPress is vulnerable to Stored Cross-Site Scripting in versions up to, and including, 6.4.5 via the Topic Form Additional Fields feature. This is due to insufficient input sanitization in bsp_topic_fields_form_save() (which writes $_POST['bsp_topic_fields_label{n}'] directly to post meta via update_post_meta() with no filtering) and missing output escaping in bsp_topic_content_append_topic_fields() (which concatenates the stored meta value into an HTML <span> and echoes it via apply_filters/echo without esc_html()). This makes it possible for authenticated attackers, with Subscriber-level access and above (who have bbPress topic-creation privileges), to inject arbitrary web scripts in pages that will execute whenever a user accesses an injected page, including unauthenticated visitors.
Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.
dbcve analysis · high confidenceThe bbp Style Pack WordPress plugin fails to sanitize user input when saving topic form additional fields and fails to escape the stored data when outputting it. The bsp_topic_fields_form_save() function directly passes $_POST['bsp_topic_fields_label{n}'] to update_post_meta() without sanitization, and bsp_topic_content_append_topic_outputs the unescaped value into an HTML <span> element, allowing Stored XSS injection by authenticated users with Subscriber-level access.
Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.
CVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.
From the vector- Attack vector
- Network
- Complexity
- Low
- Privileges
- Low
- User interaction
- None
- Scope
- Changed
- Confidentiality
- Low
- Integrity
- Low
- Availability
- None
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:L/I:L/A:N
Am I affected? How to checkSteps we derive from the advisory and the affected-version data, so you can decide whether this CVE reaches your setup. They are a guide, not a scan — your own configuration is the authority.
dbcve checksWork through these to decide whether this CVE applies to you.
-
Confirm bbp Style Pack plugin is installedIn WordPress admin, go to Plugins > Installed Plugins and look for 'bbp Style Pack' or check the plugin files in /wp-content/plugins/ for the bbp-style-pack directory. Review the main plugin file (e.g., bbp-style-pack.php) for the version comment header.Affected if The plugin is installed and active
-
Check the plugin version against the fixed releaseOpen the main plugin file header to find the Version: X.X.X field. Compare this to any post-fix version that addresses this XSS vulnerability.Affected if The installed version predates the patched version that adds sanitization and escaping
-
Verify topic form additional fields are configuredIn WordPress admin, navigate to the plugin settings where topic form fields can be added (typically under bbPress > Style Pack > Topic Form Fields). Look for any configured custom fields using the bsp_topic_fields_label{n} pattern.Affected if Additional topic form fields are enabled and configured with user-defined labels
-
Inspect stored data in the database for unsanitized contentQuery the wp_postmeta table for meta_key values matching 'bsp_topic_fields_label%'. Use: SELECT * FROM wp_postmeta WHERE meta_key LIKE 'bsp_topic_fields_label%'. Examine the meta_value field for any raw HTML or script tags that were saved without sanitization.Affected if Stored field labels contain raw HTML, JavaScript, or unescaped special characters
-
Check source code for missing sanitization and escapingReview the plugin file containing bbp_style_pack() and bsp_topic_content_append_topic_fields() functions. Look for update_post_meta() calls that use $_POST['bsp_topic_fields_label{n}'] without sanitize_text_field() or similar, and echo statements outputting these values without esc_html() or esc_attr().Affected if The code passes $_POST data directly to update_post_meta() without sanitization, or echoes stored values without escaping in HTML context
A user is affected if the bbp Style Pack plugin is installed with topic form additional fields enabled, and the code lacks proper input sanitization before storage and output escaping before display, allowing stored XSS via subscriber-level access.
Generated from the published advisory. Verify against your own configuration.
Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.
dbcve · scopedImplement input sanitization using sanitize_text_field() or similar WordPress sanitization functions in bsp_topic_fields_form_save(), and add output escaping with esc_html() or esc_attr() in bsp_topic_content_append_topic_fields() before echoing values into HTML context.
Latest version after 6.4.5 (check WordPress plugin repository for 6.4.6 or newer)
- Navigate to the WordPress admin dashboard
- Go to Plugins > Installed Plugins
- Find the bbp Style Pack plugin
- Check if an update is available. If so, update to the latest version (likely 6.4.6 or higher which should contain the security fix)
- If no update is available through WordPress, download the latest version from the official WordPress plugin repository at https://wordpress.org/plugins/bbp-style-pack/
- Deactivate and delete the current version, then upload and activate the new version
- Verify the update was successful by checking the plugin version
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation2.0 h
- Implementation3.0 h
- Testing3.0 h
- Review / QA2.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $2,800.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2026-15010 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.
References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.
Primary sourcesPractitioner notes
ContributedPeer-ranked notes from engineers who’ve handled CVE-2026-15010 in production — separate from our analysis above.
The advisory tells you what broke. It rarely tells you what actually worked. If you’ve dealt with this one, that detail is what the next engineer is searching for.
- The version that genuinely resolved it — not the one the vendor claimed
- A config change or rule that shut the vector down
- A gotcha in the upgrade path that cost you an afternoon
No notes yet
Be the first to add a field note for this CVE — a mitigation you’ve verified, a version caveat, or a link to a working fix. Sign in above to contribute.
A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.
- Verified mitigations, workarounds, and config changes
- Version or environment caveats, and links to real fixes
- No weaponised exploit code, or anything meant to cause harm
- No spam, self-promotion, credentials, or personal data