Severity by source
AV:N/AC:L/PR:L/UI:N/S:C/C:L/I:L/A:N
Primary rating from NVD · only source for this CVE.
CVSS VectorNVD
Lifecycle Timeline
4DescriptionCVE.org
The Gallagher Website Design plugin for WordPress is vulnerable to Stored Cross-Site Scripting via the plugin's login_link shortcode in all versions up to, and including, 2.6.4 due to insufficient input sanitization and output escaping on the 'prefix' attribute. 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.
AnalysisAI
Stored Cross-Site Scripting (XSS) in the Gallagher Website Design WordPress plugin through version 2.6.4 allows authenticated attackers with Contributor-level access or higher to inject arbitrary JavaScript into pages via the 'prefix' attribute of the login_link shortcode, bypassing input sanitization and output escaping controls. The injected scripts execute in the context of any user viewing the affected page, potentially enabling session hijacking, credential theft, or malicious redirection. Wordfence has documented the vulnerability with proof-of-concept references to the vulnerable code in the WordPress plugin repository.
Technical ContextAI
The Gallagher Website Design WordPress plugin implements a login_link shortcode handler that accepts user-supplied attributes, including a 'prefix' parameter. The vulnerability stems from insufficient input sanitization and output escaping on this attribute before it is rendered in page HTML. Cross-Site Scripting (CWE-79) occurs when untrusted user input is directly embedded into web content without proper HTML entity encoding or context-aware escaping. WordPress provides native escaping functions (such as esc_attr() for HTML attributes and wp_kses_post() for content) that should be applied to all user-controlled shortcode attributes. The affected code at line 203 in gallagher-website-design.php (per WordPress plugin repository references) fails to apply these protections, allowing attackers to inject script tags or event handlers (e.g., <img src=x onerror=alert(1)>) that the browser will execute when rendering the page.
RemediationAI
The primary remediation is to upgrade the Gallagher Website Design plugin to a patched version released after 2.6.4 as soon as it becomes available. Check the WordPress plugin repository and Wordfence's advisory (https://www.wordfence.com/threat-intel/vulnerabilities/id/d8d013ae-a512-454a-bcfc-8725a6928fee?source=cve) for the specific patched version number and installation instructions. Pending patch availability, implement the following compensating controls: (1) Restrict Contributor-level access to only trusted users - audit WordPress user roles and demote non-essential Editors and Contributors to Subscribers or Authors (note: this reduces site collaboration but eliminates the attack surface). (2) Deactivate the Gallagher Website Design plugin entirely if it is not actively used, and uninstall if possible. (3) Use a Web Application Firewall (WAF) or WordPress security plugin with XSS detection to monitor and block the injection of script tags in shortcode attributes (trade-off: may block legitimate content or add performance overhead). (4) Implement Content Security Policy (CSP) headers at the web server level to prevent inline script execution (note: requires careful configuration to avoid breaking site functionality and does not prevent stored XSS from rendering, but limits damage). (5) Audit all pages and posts created by Contributors and Editors for injected scripts using the WordPress plugin repository's revision history or security scanning tools (this is a one-time cleanup task). Once a patch is available, update immediately and reverify that no stored payloads remain in the database.
Same weakness CWE-79 – Cross-site Scripting (XSS)
View allShare
External POC / Exploit Code
Leaving vuln.today
EUVD-2026-24717
GHSA-j2r9-9g62-pcp4