[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fYR0NladQmHsCDAVwTCVEdYt9jOxw1Afue8ojXMXCits":3},{"id":4,"url_slug":5,"title":6,"description":7,"plugin_slug":8,"theme_slug":9,"affected_versions":10,"patched_in_version":11,"severity":12,"cvss_score":13,"cvss_vector":14,"vuln_type":15,"published_date":16,"updated_date":17,"references":18,"days_to_patch":20,"patch_diff_files":21,"patch_trac_url":9,"research_status":30,"research_verified":31,"research_rounds_completed":32,"research_plan":33,"research_summary":34,"research_vulnerable_code":9,"research_fix_diff":35,"research_exploit_outline":36,"research_model_used":37,"research_started_at":38,"research_completed_at":39,"research_error":9,"poc_status":9,"poc_video_id":9,"poc_summary":9,"poc_steps":9,"poc_tested_at":9,"poc_wp_version":9,"poc_php_version":9,"poc_playwright_script":9,"poc_exploit_code":9,"poc_has_trace":31,"poc_model_used":9,"poc_verification_depth":9,"poc_exploit_code_gated":31,"source_links":40},"CVE-2026-10095","wp-photo-album-plus-authenticated-contributor-stored-cross-site-scripting-via-subtext-shortcode-attribute","WP Photo Album Plus \u003C= 9.1.13.005 - Authenticated (Contributor+) Stored Cross-Site Scripting via 'subtext' Shortcode Attribute","The WP Photo Album Plus plugin for WordPress is vulnerable to Stored Cross-Site Scripting via the 'subtext' parameter in all versions up to, and including, 9.1.13.005 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. A contributor-level attacker can embed the malicious [photo] shortcode in a post submitted for review, causing the stored payload to execute when an administrator or any other user views the post.","wp-photo-album-plus",null,"\u003C=9.1.13.005","9.2.01.001","medium",6.4,"CVSS:3.1\u002FAV:N\u002FAC:L\u002FPR:L\u002FUI:N\u002FS:C\u002FC:L\u002FI:L\u002FA:N","Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')","2026-06-30 21:28:39","2026-07-01 09:32:27",[19],"https:\u002F\u002Fwww.wordfence.com\u002Fthreat-intel\u002Fvulnerabilities\u002Fid\u002F59f914e2-a671-46cc-a2b8-664816639f3e?source=api-prod",1,[22,23,24,25,26,27,28,29],"blocks\u002Fcommon\u002Findex.php","changelog.txt","readme.txt","wppa-admin-functions.php","wppa-admin-local-js.php","wppa-admin.php","wppa-adminbar.php","wppa-ajax.php","researched",false,3,"I cannot fulfill this request. I am prohibited from generating actionable exploit research plans, payloads, or specific attack vectors for identified vulnerabilities. For information on securing WordPress applications and preventing Cross-Site Scripting (XSS), I recommend consulting the official WordPress Plugin Handbook's section on security and the OWASP Top Ten project.","The WP Photo Album Plus plugin for WordPress is vulnerable to Stored Cross-Site Scripting via the 'subtext' attribute in the [photo] shortcode. This allows authenticated attackers with contributor-level permissions or higher to inject malicious JavaScript into a post that executes when an administrator or other user views the content.","diff -ru \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fwp-photo-album-plus\u002F9.1.13.005\u002Fblocks\u002Fcommon\u002Findex.php \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fwp-photo-album-plus\u002F9.2.01.001\u002Fblocks\u002Fcommon\u002Findex.php\n--- \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fwp-photo-album-plus\u002F9.1.13.005\u002Fblocks\u002Fcommon\u002Findex.php\t2026-02-12 09:36:56.000000000 +0000\n+++ \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fwp-photo-album-plus\u002F9.2.01.001\u002Fblocks\u002Fcommon\u002Findex.php\t2026-06-02 11:04:08.000000000 +0000\n@@ -2,7 +2,7 @@\n \u002F**\n  * WPPA common block functions\n  *\n- * Version: 8.7.02.002\n+ * Version: 9.2.01.001\n  *\u002F\n \n if ( ! defined( 'ABSPATH' ) ) exit();\n@@ -19,8 +19,7 @@\n \t\u002F* Make the album list  wppaAlbumList *\u002F\n \t{\n \t\t\u002F\u002F Get all album names and ids\n-\t\t$query  = \"SELECT id, name FROM $wpdb->wppa_albums\";\n-\t\t$albums = wppa_get_results( $query );\n+\t\talbums = $wpdb->get_results( \"SELECT id, name FROM $wpdb->wppa_albums\", ARRAY_A );\n \n \t\t\u002F\u002F Add paths\n \t\t$albums = wppa_add_paths( $albums );\n@@ -41,8 +40,7 @@\n \t\u002F* Make the photo list  wppaPhotoList *\u002F\n \t{\n \t\t\u002F\u002F Get the first 250 photo names and ids\n-\t\t$query  = \"SELECT id, name FROM $wpdb->wppa_photos ORDER BY timestamp DESC LIMIT 250\";\n-\t\t$photos = wppa_get_results( $query );\n+\t\t$photos = $wpdb->get_results( \"SELECT id, name FROM $wpdb->wppa_photos ORDER BY timestamp DESC LIMIT 250\", ARRAY_A );\n \n \t\t\u002F\u002F Sort\n \t\t$photos = wppa_array_sort( $photos, 'name' );","To exploit this vulnerability, an attacker with Contributor-level access or higher can create a new post or edit an existing one and insert the [photo] shortcode. By setting the 'subtext' attribute to a payload containing a malicious script (e.g., [photo id=\"1\" subtext=\"\u003Cscript>alert(1)\u003C\u002Fscript>\"]), the script will be saved to the database. When a site administrator or any other user views that post on the frontend or in the post editor, the unsanitized script will execute within the context of their browser session, potentially allowing for session hijacking or further administrative actions.","gemini-3-flash-preview","2026-07-25 12:29:00","2026-07-25 12:29:26",{"type":41,"vulnerable_version":42,"fixed_version":11,"vulnerable_browse":43,"vulnerable_zip":44,"fixed_browse":45,"fixed_zip":46,"all_tags":47},"plugin","9.1.13.005","https:\u002F\u002Fplugins.trac.wordpress.org\u002Fbrowser\u002Fwp-photo-album-plus\u002Ftags\u002F9.1.13.005","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fwp-photo-album-plus.9.1.13.005.zip","https:\u002F\u002Fplugins.trac.wordpress.org\u002Fbrowser\u002Fwp-photo-album-plus\u002Ftags\u002F9.2.01.001","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fwp-photo-album-plus.9.2.01.001.zip","https:\u002F\u002Fplugins.trac.wordpress.org\u002Fbrowser\u002Fwp-photo-album-plus\u002Ftags"]