CVE-2026-7462
Reflected Cross-Site Scripting in VatanSMS WP SMS Plugin
Publication date: 2026-05-20
Last updated on: 2026-05-20
Assigner: Wordfence
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| vatan_sms | vatan_sms_wp_sms_plugin | to 1.01 (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 VatanSMS WP SMS plugin for WordPress has a Reflected Cross-Site Scripting (XSS) vulnerability in the `page` parameter in all versions up to and including 1.01.
This vulnerability exists because the plugin does not properly sanitize input or escape output, allowing attackers to inject arbitrary web scripts.
An unauthenticated attacker can exploit this by tricking an administrator into clicking a malicious link, which causes the injected script to execute.
How can this vulnerability impact me? :
This vulnerability can lead to the execution of malicious scripts in the context of an administrator's browser.
Such script execution can result in unauthorized actions, data theft, or session hijacking.
Because the attacker does not need to be authenticated, it increases the risk of compromise if an administrator is tricked into clicking a crafted link.
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
The vulnerability is a reflected Cross-Site Scripting (XSS) issue in the VatanSMS WP SMS plugin that allows unauthenticated attackers to inject arbitrary scripts which execute if an administrator is tricked into clicking a malicious link.
Such vulnerabilities can potentially lead to unauthorized access or manipulation of sensitive data, which may impact compliance with data protection regulations like GDPR or HIPAA by compromising confidentiality and integrity of personal or protected health information.
However, the provided information does not explicitly describe the direct impact on compliance with these standards.
What immediate steps should I take to mitigate this vulnerability?
To mitigate this vulnerability, you should update the VatanSMS WP SMS plugin for WordPress to a version later than 1.01 where the issue is fixed.
Additionally, avoid clicking on suspicious links that could exploit the reflected cross-site scripting vulnerability.
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability involves Reflected Cross-Site Scripting (XSS) via the `page` parameter in the VatanSMS WP SMS plugin for WordPress. Detection typically involves testing the `page` parameter for script injection and reflection.
One common method is to send HTTP requests to the affected WordPress site with payloads in the `page` parameter that include script tags or JavaScript code, then observe if the payload is reflected unescaped in the response.
Example commands using curl to test the vulnerability might be:
- curl -i "http://targetsite.com/wp-admin/admin.php?page=<script>alert(1)</script>"
- curl -i "http://targetsite.com/wp-admin/admin.php?page=%3Cscript%3Ealert(1)%3C/script%3E"
If the response contains the injected script code without proper sanitization or escaping, the vulnerability is present.
Additionally, security scanners or plugins that detect XSS vulnerabilities in WordPress plugins can be used to automate detection.