CVE-2025-41030
BaseFortify
Publication date: 2025-09-02
Last updated on: 2025-09-02
Assigner: Spanish National Cybersecurity Institute, S.A. (INCIBE)
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| t-innova | deporsite | dsuite_2025_v02.14.1115 |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-863 | The product performs an authorization check when an actor attempts to access a resource or perform an action, but it does not correctly perform the check. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability in Deporsite by T-INNOVA is a lack of authorization issue that allows an unauthenticated attacker to obtain information from other users by sending a GET request to the endpoint '/ajax/TInnova_v2/Integrantes_Recurso_v2_1/llamadaAjax/buscarPersona' with the 'dni' parameter. Essentially, it means that anyone without logging in or proper permissions can access personal information of other users.
How can this vulnerability impact me? :
The vulnerability can lead to unauthorized disclosure of personal information from other users, which could result in privacy breaches, identity theft, or misuse of sensitive data. Since it requires no authentication, attackers can exploit it remotely and easily, potentially compromising user trust and the security of the system.
How can this vulnerability be detected on my network or system? Can you suggest some commands?
You can detect this vulnerability by monitoring network traffic for unauthenticated GET requests to the endpoint '/ajax/TInnova_v2/Integrantes_Recurso_v2_1/llamadaAjax/buscarPersona' with the 'dni' parameter. For example, using tools like curl or wget to test the endpoint manually: curl -v 'http://<target>/ajax/TInnova_v2/Integrantes_Recurso_v2_1/llamadaAjax/buscarPersona?dni=<some_value>'. Additionally, network intrusion detection systems (NIDS) can be configured to alert on such suspicious GET requests targeting this specific URL pattern.
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include restricting access to the vulnerable endpoint by implementing proper authorization checks to prevent unauthenticated access. If possible, apply the vendor's patch or upgrade to a fixed version of the software. Since the CVE description does not specify a fixed version, contacting the vendor for updates or applying access control rules (e.g., firewall rules blocking external access to the endpoint) can help reduce risk.