Prevent XSS Vulnerability
Prevent XSS Vulnerability
Description
This plugin helps safeguard your website against two common types of Cross-Site Scripting (XSS) vulnerabilities:
- Reflected XSS: This happens when harmful scripts are hidden in a website’s URL. If a user clicks a link with such a script, it can run in their browser, potentially stealing their data or taking control of their system.
- Self-XSS: This occurs when a user’s own input on your website is displayed back to them in an unsafe way, allowing malicious scripts to run in their browser.
This plugin provides several layers of protection:
Blocking: When active, the plugin checks URLs for specific characters. If it finds any of these characters in the URL, it redirects the user to prevent a potential XSS attack. You can customize which characters to block or allow.
- Opening Round Bracket
( - Closing Round Bracket
) - Less than Sign
< - Greater than Sign
> - Opening Square Bracket
[ - Closing Square Bracket
] - Opening Curly Bracket
{ - Pipe or Vertical Bar
| - Closing Curly Bracket
}
Encoding: For an extra layer of security, the plugin encodes certain characters found in URL parameters. This stops harmful code from running, even if it’s present in the URL. You can also choose to exclude specific parameters from being encoded.
- Exclamation Mark
! - Double Quotation
" - Single Quotation
' - Opening Round Bracket
( - Closing Round Bracket
) - Asterisk Sign
* - Less than Sign
< - Greater than Sign
> - Grave Accent “`
- Cap Sign
^ - Opening Square Bracket
[ - Closing Square Bracket
] - Opening Curly Bracket
{ - Pipe or Vertical Bar
| - Closing Curly Bracket
}
Escaping HTML in $_GET: This plugin automatically makes HTML characters safe within the $_GET variable. This is vital if your website pulls data from URLs and displays it as part of your web page. It helps prevent malicious scripts from being injected through user-provided input.
Important Notes:
- After activating the plugin, thoroughly test your website forms, especially if you use WooCommerce. Make sure the plugin doesn’t interfere with your shopping cart and checkout processes.
- We welcome bug reports for this plugin on GitHub: https://github.com/samiahmedsiddiqui/prevent-xss-vulnerability/issues. Please remember that GitHub is for bug reports only, not general support.
By using this plugin and following these recommendations, you can significantly improve your website’s defense against XSS attacks.
Installation
You can install this plugin either through your WordPress dashboard or manually via FTP.
From within WordPress
- Go to ‘Plugins > Add New’.
- Search for
Prevent XSS Vulnerability. - Click “Activate” for
Prevent XSS Vulnerabilityon your Plugins page. - Then, follow the after activation steps below.
Manually
- Upload the
prevent-xss-vulnerabilityfolder to the/wp-content/plugins/directory. - Activate Prevent XSS Vulnerability through the ‘Plugins’ menu in WordPress.
- Then, follow the after activation steps below.
After activation
- Go to the
Prevent XSS Vulnerabilitypage in your WordPress Admin Dashboard. - Adjust the settings to fit your website’s needs.
- That’s it! You’re done.
Screenshots

It removes the parameters from the URL which are used in XSS Attack and redirects the user (Recommended).

It encodes the parameters from the URL which are used in XSS Attack.

It escapes the HTML from the
$_GETPHP variable which is mostly used to read the data from the URL (Recommended).
Add the message in developer console for the user to alert about the XSS attack.

Show message in developer console to alert user about the Self-XSS attack. This message can be customized from the settings page.
Faq
A. Installing this plugin is the easiest way to protect your site from XSS Vulnerabilities.
A. Yes, this plugin escapes HTML in the $_GET variable, which is often used to display data from the URL in HTML. However, if your site heavily relies on $_GET for other functions, you might need to do thorough testing to ensure everything works correctly.
A. While we haven’t received reports of major conflicts, it’s always a good idea to thoroughly test your website after installing any new plugin.
Reviews
simple buy effective
By roadlink on January 1, 2024
I got positive on scan websites
Awesome plugin for security issues.
By Sakthivel (saravanankanagaraj) on June 22, 2021
Excellent
By randystepanek on January 22, 2021
Very useful plugin.
By Mohamed Abd Elhalim (mandooox) on December 27, 2019
Seems to work well!
By (adamwking) on December 4, 2019
Superb Plugin. Saved my site
By BiLaL (bilaliqbal9525331) on May 10, 2019
Great Little Plugin 🙂
By Kayless on March 14, 2018
Changelog
2.1.0 – July 03, 2025
- Key Changes & Improvements:
- Enhanced Console Visibility: The prominent “Stop!” message now appears in a much larger (48px), bold, red font with a black text shadow to grab immediate attention. The main warning message also uses a larger, more readable font (20px).
- Improved Console Grouping: The entire Self-XSS warning is now grouped within a
console.group('Self-XSS Warning')block. This keeps all related messages together in the developer console, making the warning stand out and preventing it from getting lost among other console output.
Earlier versions
- For a detailed changelog of earlier versions, please refer to the separate
changelog.txtfile.