CVE-2025-67734
BaseFortify
Publication date: 2025-12-12
Last updated on: 2025-12-16
Assigner: GitHub, Inc.
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| frappe | learning | From 2.0.0 (inc) to 2.42.0 (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?
This vulnerability is a Cross-Site Scripting (XSS) issue in the Frappe Learning Management System (LMS) versions prior to 2.42.0. Authenticated attackers could inject malicious JavaScript code through the Company Website field of the Job Form. When other users open the affected job posting, the malicious script executes in their browsers, potentially compromising their security.
How can this vulnerability impact me? :
The vulnerability can lead to execution of malicious scripts in the browsers of users who view the compromised job postings. This can result in theft of user data, session hijacking, or other malicious actions performed on behalf of the user, thereby compromising user security and privacy.
What immediate steps should I take to mitigate this vulnerability?
Upgrade the Frappe Learning Management System (LMS) to version 2.42.0 or later, as this version contains the fix for the XSS vulnerability. Until the upgrade is applied, restrict access to the Job Form's Company Website field to trusted users only and educate users to avoid opening suspicious job postings.
How can this vulnerability be detected on my network or system? Can you suggest some commands?
To detect this vulnerability, you can check if your Frappe LMS installation is running a version prior to 2.42.0. Additionally, you can inspect the Job Form entries for any suspicious JavaScript code injected into the Company Website field. Since this is a stored XSS vulnerability triggered by authenticated users, monitoring HTTP requests that submit job postings with script tags or JavaScript code in the Company Website field can help detect exploitation attempts. For example, you can use web application firewall (WAF) logs or proxy logs to search for payloads containing <script> tags or JavaScript event handlers in the Company Website field. A simple command to search logs for suspicious input might be: `grep -iE '<script|javascript:' /path/to/access.log` or using tools like `curl` to test input validation by submitting payloads to the Job Form and observing if the input is sanitized or executed. However, no specific detection commands are provided in the resources. [1]