CVE-2025-14316
BaseFortify
Publication date: 2026-01-26
Last updated on: 2026-01-26
Assigner: WPScan
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| ahachat | messenger_marketing | to 1.1 (inc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
CVE-2025-14316 is a Reflected Cross-Site Scripting (XSS) vulnerability in the AhaChat Messenger Marketing WordPress plugin versions up to 1.1. The plugin does not properly sanitize and escape a parameter before outputting it back on the page, allowing attackers to inject and execute arbitrary JavaScript code in the context of high-privilege users such as administrators. [1]
How can this vulnerability impact me? :
This vulnerability can allow attackers to execute malicious scripts in the context of privileged users like administrators. This can lead to account compromise, unauthorized actions, or further exploitation of the WordPress site, potentially resulting in loss of control over the site or data breaches. [1]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by testing the plugin's AJAX handler for reflected XSS. Specifically, you can craft a POST request to `admin-ajax.php?action=ahachat_parse_edit_list_product` with a parameter `list_product` containing a script payload such as `testXSS"><script>alert(/XSS/)</script>`. If the script executes in the context of a logged-in admin user, the vulnerability is present. For example, using curl to simulate the request: `curl -X POST -d "action=ahachat_parse_edit_list_product&list_product=testXSS\"><script>alert(/XSS/)</script>" https://yourwordpresssite.com/wp-admin/admin-ajax.php --cookie "wordpress_logged_in=your_admin_cookie"`. Monitoring web traffic for such suspicious reflected inputs or using a web vulnerability scanner that tests for reflected XSS on this endpoint can also help detect the issue. [1]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include restricting access to the affected AJAX handler (`admin-ajax.php?action=ahachat_parse_edit_list_product`) to trusted users only, especially limiting it to necessary admin users. Avoid clicking on suspicious links or pages that might exploit this vulnerability. Since no fix is currently available, consider disabling or removing the AhaChat Messenger Marketing plugin version 1.1 or earlier until a patched version is released. Additionally, ensure that admin users have strong authentication and monitor for unusual admin activity. [1]
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
The provided resources do not specify how this vulnerability affects compliance with common standards and regulations such as GDPR or HIPAA.