CVE-2025-68037
Reflected XSS in Atlas Gondal Export Media URLs
Publication date: 2026-02-20
Last updated on: 2026-02-23
Assigner: Patchstack
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| patchstack | export_media_urls | to 2.2 (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
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
I don't know
Can you explain this vulnerability to me?
CVE-2025-68037 is a medium severity Cross Site Scripting (XSS) vulnerability affecting the WordPress Export Media URLs Plugin versions up to and including 2.2.
This vulnerability allows an attacker to inject malicious scriptsβsuch as redirects, advertisements, or other HTML payloadsβthat execute when site visitors access the compromised website.
Exploitation requires user interaction by a privileged user, such as clicking a malicious link, visiting a crafted page, or submitting a form.
The vulnerability falls under the OWASP Top 10 category A1: Broken Access Control.
How can this vulnerability impact me? :
This vulnerability can impact you by allowing attackers to execute malicious scripts on your website, which can lead to unauthorized redirects, display of unwanted advertisements, or other harmful HTML payloads.
Such attacks can compromise the integrity and trustworthiness of your website, potentially harming your users and damaging your reputation.
Successful exploitation depends on privileged user interaction, meaning an attacker needs a user with certain privileges to engage with malicious content.
How can this vulnerability be detected on my network or system? Can you suggest some commands?
[{'type': 'paragraph', 'content': 'This vulnerability is a reflected Cross Site Scripting (XSS) issue in the WordPress Export Media URLs Plugin up to version 2.2. Detection typically involves testing for the injection of malicious scripts in web requests and observing if they are reflected in the response.'}, {'type': 'paragraph', 'content': 'Common detection methods include using web vulnerability scanners or manual testing by sending crafted HTTP requests containing script payloads to the affected plugin endpoints and checking if the payload is executed or reflected.'}, {'type': 'paragraph', 'content': 'Specific commands are not provided in the resources, but you can use tools like curl or wget to send test requests, for example:'}, {'type': 'list_item', 'content': 'curl -i "http://yourwebsite.com/path-to-export-media-urls?param=<script>alert(1)</script>"'}, {'type': 'list_item', 'content': 'Observe the response for the presence of the injected script tag to confirm vulnerability.'}, {'type': 'paragraph', 'content': 'Alternatively, use automated scanners such as OWASP ZAP or Burp Suite to detect reflected XSS vulnerabilities.'}] [1]
What immediate steps should I take to mitigate this vulnerability?
The primary and immediate mitigation step is to update the WordPress Export Media URLs Plugin to version 2.3 or later, where this vulnerability has been patched.
If updating immediately is not possible, consider disabling the plugin temporarily to prevent exploitation.
Additionally, enabling auto-updates for vulnerable plugins can help ensure timely patching in the future.
Implementing web application firewall (WAF) rules to block suspicious script injection attempts can also reduce risk until the patch is applied.