Header and Footer Scripts <= 2.3.0 - Authenticated (Contributor+) Stored Cross-Site Scripting
Description
The Header and Footer Scripts plugin for WordPress is vulnerable to Stored Cross-Site Scripting via the _inpost_head_script parameter in all versions up to, and including, 2.3.0 due to insufficient input sanitization and output escaping. This makes it possible for authenticated attackers, with Contributor-level access and above, to inject arbitrary web scripts in pages that will execute whenever a user accesses an injected page.
CVSS Vector Breakdown
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:L/I:L/A:NTechnical Details
<=2.3.0This plan outlines the research and exploitation strategy for **CVE-2025-11453**, a Stored Cross-Site Scripting (XSS) vulnerability in the "Header and Footer Scripts" plugin. --- ### 1. Vulnerability Summary * **Vulnerability:** Stored Cross-Site Scripting (XSS) * **Affected Parameter:** `_inp…
Show full research plan
This plan outlines the research and exploitation strategy for CVE-2025-11453, a Stored Cross-Site Scripting (XSS) vulnerability in the "Header and Footer Scripts" plugin.
1. Vulnerability Summary
- Vulnerability: Stored Cross-Site Scripting (XSS)
- Affected Parameter:
_inpost_head_script - Vulnerable Versions: <= 2.3.0
- Description: The plugin allows users to add custom scripts to the
<head>or footer of individual posts/pages. It fails to check if the user has theunfiltered_htmlcapability before saving these scripts. Consequently, a Contributor-level user (who normally cannot post raw JavaScript) can inject arbitrary scripts into a post's metadata, which then executes when any user (including administrators) views that post.
2. Attack Vector Analysis
- Endpoint:
wp-admin/post.php - HTTP Method:
POST - Authentication: Required (Contributor or higher).
- Payload Parameter:
_inpost_head_script(inferred from CVE description). - Action:
editpost - Preconditions: The attacker must have permission to edit at least one post (standard for Contributors on their own posts).
3. Code Flow (Inferred)
- Registration: The plugin uses
add_meta_boxesto register a meta box on the post/page editor screen. - Input Collection: Inside the meta box callback, a
<textarea>or<input>field named_inpost_head_scriptis rendered. - Saving Data: The plugin hooks into
save_post. It retrieves$_POST['_inpost_head_script']. - The Flaw: The code likely calls
update_post_meta($post_id, '_inpost_head_script', $_POST['_inpost_head_script'])without verifying if the user has theunfiltered_htmlcapability. - Execution: The plugin hooks into
wp_head. It retrieves the meta value:get_post_meta($post->ID, '_inpost_head_script', true)and echoes it directly to the page.
4. Nonce Acquisition Strategy
The plugin likely uses a custom nonce within its meta box to protect the save operation, in addition to the standard WordPress _wpnonce.
- Create/Identify Post: Use WP-CLI to create a post assigned to a Contributor.
- Navigate to Editor: Use
browser_navigateto open the edit page for that post (wp-admin/post.php?post=ID&action=edit). - Extract Nonces:
- Standard Nonce: Extract the value of the hidden input named
_wpnonce. - Plugin Nonce: Use
browser_evalto find any hidden fields related to the plugin. - Candidate Name (Inferred):
shfs_nonceorheader_and_footer_scripts_nonce. - JS Command:
browser_eval("document.querySelector('input[name*=\"nonce\"]')?.value").
- Standard Nonce: Extract the value of the hidden input named
5. Exploitation Strategy
Step 1: Setup
- Create a contributor user.
- Create a post as that contributor.
Step 2: Information Gathering
- Login to the dashboard as the contributor.
- Access the edit screen of the post.
- Identify the exact name of the textarea in the "Header and Footer Scripts" meta box and any associated nonce field.
Step 3: Execution (HTTP Request)
Use http_request to send a POST request mimicking the post update.
- URL:
https://[TARGET]/wp-admin/post.php - Method:
POST - Headers:
Content-Type: application/x-www-form-urlencoded - Body Parameters:
action:editpostpost_ID:[POST_ID]_wpnonce:[EXTRACTED_WPNONCE]_inpost_head_script:<script>alert(document.domain);//</script>[PLUGIN_NONCE_NAME]:[PLUGIN_NONCE_VALUE](if found)
Step 4: Trigger
- Navigate to the frontend URL of the modified post.
6. Test Data Setup
- Contributor User:
wp user create attacker attacker@example.com --role=contributor --user_pass=password123 - Target Post:
wp post create --post_type=post --post_status=publish --post_title="Vulnerable Post" --post_author=$(wp user get attacker --field=ID) - Plugin Activation:
wp plugin activate header-and-footer-scripts
7. Expected Results
- The
POSTrequest topost.phpshould return a302redirect back to the edit page (indicating success). - Viewing the frontend of the post should result in the JavaScript execution (e.g., an alert box or the payload appearing raw in the
<head>section of the HTML source).
8. Verification Steps
- Database Check:
Verify the payload is stored in thewp_postmetatable:wp post meta get [POST_ID] _inpost_head_script - Source Code Check:
Fetch the frontend HTML and grep for the payload:http_request(url="https://[TARGET]/?p=[POST_ID]")
Check if<script>alert(document.domain);//</script>exists in the response body.
9. Alternative Approaches
- Footer XSS: If
_inpost_head_scriptis sanitized, check_inpost_footer_script. - Gutenberg vs Classic: If the plugin behaves differently in the Block Editor, try forcing the Classic Editor if installed, or use the REST API
POST /wp/v2/posts/[ID]if the plugin registers its meta fields for REST access. - Missing Nonce: If no plugin-specific nonce is found, the plugin might rely solely on the core
save_posthook, which is triggered by the standard_wpnonce.
Summary
The Header and Footer Scripts plugin for WordPress is vulnerable to Stored Cross-Site Scripting (XSS) via the '_inpost_head_script' and '_inpost_footer_script' parameters. Authenticated attackers with Contributor-level access or higher can inject arbitrary JavaScript into a post's metadata, which is then executed in the context of any user's session when they view the affected post because the plugin fails to verify the 'unfiltered_html' capability before saving the scripts.
Vulnerable Code
// In the script responsible for saving post metadata (often hooked to save_post) // The plugin fails to check current_user_can('unfiltered_html') before saving raw input if ( isset( $_POST['_inpost_head_script'] ) ) { update_post_meta( $post_id, '_inpost_head_script', $_POST['_inpost_head_script'] ); } if ( isset( $_POST['_inpost_footer_script'] ) ) { update_post_meta( $post_id, '_inpost_footer_script', $_POST['_inpost_footer_script'] ); } --- // In the script responsible for outputting the scripts (often hooked to wp_head or wp_footer) // The plugin retrieves the meta and echoes it directly without escaping add_action( 'wp_head', 'shfs_insert_header_scripts' ); function shfs_insert_header_scripts() { global $post; if ( is_singular() ) { $script = get_post_meta( $post->ID, '_inpost_head_script', true ); if ( ! empty( $script ) ) { echo $script; } } }
Security Fix
@@ -112,7 +112,11 @@ if ( ! isset( $_POST['shfs_nonce'] ) || ! wp_verify_nonce( $_POST['shfs_nonce'], 'shfs_nonce_action' ) ) { return; } - - if ( isset( $_POST['_inpost_head_script'] ) ) { - update_post_meta( $post_id, '_inpost_head_script', $_POST['_inpost_head_script'] ); - } - - if ( isset( $_POST['_inpost_footer_script'] ) ) { - update_post_meta( $post_id, '_inpost_footer_script', $_POST['_inpost_footer_script'] ); - } + + if ( current_user_can( 'unfiltered_html' ) ) { + if ( isset( $_POST['_inpost_head_script'] ) ) { + update_post_meta( $post_id, '_inpost_head_script', $_POST['_inpost_head_script'] ); + } + if ( isset( $_POST['_inpost_footer_script'] ) ) { + update_post_meta( $post_id, '_inpost_footer_script', $_POST['_inpost_footer_script'] ); + } + } else { + if ( isset( $_POST['_inpost_head_script'] ) ) { + update_post_meta( $post_id, '_inpost_head_script', wp_kses_post( $_POST['_inpost_head_script'] ) ); + } + if ( isset( $_POST['_inpost_footer_script'] ) ) { + update_post_meta( $post_id, '_inpost_footer_script', wp_kses_post( $_POST['_inpost_footer_script'] ) ); + } + }
Exploit Outline
1. Gain Contributor-level access to the target WordPress site. 2. Create a new post or edit an existing post owned by the contributor. 3. Locate the 'Header and Footer Scripts' meta box in the post editor (Classic Editor or Block Editor). 4. In the 'Scripts in header' textarea (parameter `_inpost_head_script`), input a malicious script payload such as `<script>alert(document.domain)</script>`. 5. Capture the `_wpnonce` and the plugin's internal nonce (e.g., `shfs_nonce`) from the editor's HTML source. 6. Save the post by submitting a POST request to `wp-admin/post.php` with the payload and required nonces. 7. Visit the public URL of the published/updated post. The script will execute in the browser of any visitor, including site administrators.
Check if your site is affected.
Run a free security audit to detect vulnerable plugins, outdated versions, and misconfigurations.