CVE-2025-67078
BaseFortify
Publication date: 2026-01-15
Last updated on: 2026-03-10
Assigner: MITRE
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| agora-project | agora-project | to 25.10 (exc) |
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?
CVE-2025-67078 is a Cross-Site Scripting (XSS) vulnerability in the Omnispace Agora Project before version 25.10. It occurs because the 'notify' parameter in the file controller's error handling is not properly escaped. This allows attackers to inject and execute arbitrary JavaScript code in the browsers of users who view the error messages, potentially compromising their security. [1]
How can this vulnerability impact me? :
This vulnerability can impact you by allowing attackers to execute arbitrary JavaScript code in your users' browsers. This can lead to theft of sensitive information such as cookies or session tokens, unauthorized actions performed on behalf of users, or distribution of malware. It poses a significant security risk to installations of Agora Project prior to version 25.10. [1]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
Detection of this XSS vulnerability involves monitoring HTTP requests to the file controller for the presence of the 'notify' parameter containing suspicious or unescaped JavaScript code. You can use web server logs or a web application firewall (WAF) to detect such attempts. For example, using command-line tools like grep on access logs to find requests with 'notify' parameter: grep -i 'notify=' /var/log/apache2/access.log. Additionally, tools like OWASP ZAP or Burp Suite can be used to scan the application for reflected XSS vulnerabilities by testing the 'notify' parameter. [1]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include upgrading the Agora Project to version 25.10 or later, where this vulnerability is fixed. If upgrading is not immediately possible, apply input validation and proper escaping on the 'notify' parameter in the file controller to prevent injection of arbitrary JavaScript. Additionally, consider implementing a Web Application Firewall (WAF) to block malicious payloads targeting this parameter. [1]