CVE-2025-50584
BaseFortify
Publication date: 2025-07-18
Last updated on: 2025-09-09
Assigner: MITRE
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| daycloud | studentmanage | 1.0 |
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-50584 is a cross-site scripting (XSS) vulnerability in StudentManage v1.0, specifically in the 'Add a new teacher' module. An attacker can inject malicious JavaScript code into the teacher's name input field because the input is not properly sanitized or validated. This allows the attacker to execute arbitrary JavaScript in the context of the application. [1]
How can this vulnerability impact me? :
This vulnerability can allow attackers to execute arbitrary JavaScript code in the application, potentially leading to session hijacking, defacement, theft of sensitive information, or performing actions on behalf of legitimate users without their consent. [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 'Add a new teacher' page in StudentManage v1.0 for cross-site scripting (XSS) by injecting JavaScript code into the teacher's name input field. A common method is to input a script tag such as <script>alert('XSS')</script> and observe if the alert popup executes, indicating the vulnerability. Automated tools or manual testing with payloads targeting the input field can be used. Specific commands depend on the testing tools used, but a simple manual test involves entering the payload in the input field and submitting the form. [1]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include implementing input validation and sanitization on the 'Add a new teacher' input fields to filter and reject any executable scripts or malicious JavaScript code before processing. This prevents the injection and execution of arbitrary scripts. Applying patches or updates from the vendor, if available, is also recommended. [1]