CVE-2024-33724
Cross-Site Scripting (XSS) in SOPlanning 1.52.00
Publication date: 2026-05-08
Last updated on: 2026-05-08
Assigner: MITRE
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
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?
The vulnerability in SOPlanning version 1.52.00 is a Cross Site Scripting (XSS) issue. It occurs via the groupe_id parameter in the process/groupe_save.php file.
How can this vulnerability impact me? :
The vulnerability in SOPlanning 1.52.00 is a Cross Site Scripting (XSS) flaw via the groupe_id parameter in process/groupe_save.php.
This can allow an attacker to inject malicious scripts that execute in the context of the victim's browser, potentially leading to session hijacking, defacement, or redirection to malicious sites.
How can this vulnerability be detected on my network or system? Can you suggest some commands?
The vulnerability is a Cross Site Scripting (XSS) issue in SOPlanning 1.52.00 via the groupe_id parameter to process/groupe_save.php. Detection would involve testing this parameter for XSS payload injection.
Since no specific detection commands or scripts are provided in the resources, a general approach would be to send HTTP requests to the vulnerable endpoint with typical XSS payloads in the groupe_id parameter and observe if the payload is reflected or executed.
For example, you could use curl to send a request like:
- curl -v -X POST 'http://target/process/groupe_save.php' --data 'groupe_id=<script>alert(1)</script>'
Then check the response or the behavior in the application to see if the script is executed or reflected, indicating the presence of the XSS vulnerability.
What immediate steps should I take to mitigate this vulnerability?
The CVE description indicates a Cross Site Scripting (XSS) vulnerability via the groupe_id parameter in SOPlanning 1.52.00. Immediate mitigation steps include sanitizing and validating input on the server side to prevent injection of malicious scripts.
If a patch or updated version of SOPlanning is available that addresses this vulnerability, applying it should be the primary mitigation.
In the absence of a patch, you can implement web application firewall (WAF) rules to block suspicious input patterns targeting the groupe_id parameter.
Additionally, restricting access to the vulnerable endpoint and monitoring logs for suspicious activity can help reduce risk.
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
The vulnerability is a Cross Site Scripting (XSS) issue in SOPlanning 1.52.00 via the groupe_id parameter. XSS vulnerabilities can lead to unauthorized access to user data or session hijacking, which may result in exposure or manipulation of personal or sensitive information.
Such exposure or manipulation of data could potentially impact compliance with data protection regulations like GDPR or HIPAA, which require safeguarding personal and sensitive information against unauthorized access or breaches.
However, the provided information does not explicitly describe the direct impact of this vulnerability on compliance with these standards.