CVE-2026-1821
Stored XSS in Microtango WordPress Plugin via mt_reservation Shortcode
Publication date: 2026-02-11
Last updated on: 2026-04-08
Assigner: Wordfence
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| microtango | microtango | to 0.9.29 (inc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-79 | The product does not neutralize or incorrectly neutralizes user-controllable input before it is placed in output that is used as a web page that is served to other users. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
The Microtango plugin for WordPress is vulnerable to Stored Cross-Site Scripting (XSS) via the 'restkey' parameter of the mt_reservation shortcode in all versions up to and including 0.9.29. This vulnerability arises due to insufficient input sanitization and output escaping, allowing authenticated attackers with Contributor-level access or higher to inject arbitrary web scripts into pages. These scripts execute whenever a user accesses the injected page.
How can this vulnerability impact me? :
This vulnerability can allow attackers with Contributor-level access or above to inject malicious scripts into WordPress pages via the 'restkey' parameter. When other users visit these pages, the injected scripts execute in their browsers, potentially leading to session hijacking, unauthorized actions on behalf of users, theft of sensitive information, or further compromise of the website.
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
I don't know
How can this vulnerability be detected on my network or system? Can you suggest some commands?
[{'type': 'paragraph', 'content': "This vulnerability involves the Microtango WordPress plugin's mt_reservation shortcode, specifically the 'restkey' parameter, which is vulnerable to Stored Cross-Site Scripting (XSS) due to insufficient input sanitization."}, {'type': 'paragraph', 'content': 'To detect this vulnerability on your system, you can check if the Microtango plugin is installed and its version is 0.9.29 or earlier.'}, {'type': 'paragraph', 'content': "You can also search for usage of the mt_reservation shortcode with potentially malicious 'restkey' values in your WordPress content or database."}, {'type': 'list_item', 'content': "Use WP-CLI to search posts for the mt_reservation shortcode: wp post list --post_type=any --format=ids | xargs -I % wp post get % --field=post_content | grep '\\[mt_reservation'"}, {'type': 'list_item', 'content': "Search the WordPress database directly for suspicious 'restkey' values in post content or options tables using SQL queries."}, {'type': 'list_item', 'content': 'Monitor HTTP traffic for suspicious script injections or unexpected JavaScript execution related to Microtango shortcodes.'}, {'type': 'paragraph', 'content': 'Since the plugin enqueues JavaScript files and outputs inline scripts with parameters from shortcodes, inspecting rendered pages for unexpected script injections or anomalies in the Microtango JavaScript initialization can help detect exploitation.'}] [2, 3]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include:
- Update the Microtango plugin to a version later than 0.9.29 if available, where the vulnerability is fixed.
- If an update is not available, disable or deactivate the Microtango plugin to prevent exploitation.
- Restrict Contributor-level and higher user permissions to trusted users only, as the vulnerability requires authenticated users with Contributor access or above.
- Review and sanitize existing content that uses the mt_reservation shortcode, especially the 'restkey' parameter, to remove any injected scripts.
- Implement Web Application Firewall (WAF) rules to detect and block attempts to exploit this stored XSS vulnerability.
These steps help reduce the risk of exploitation until a secure plugin version or patch is applied.