CVE-2025-11580
BaseFortify
Publication date: 2025-10-10
Last updated on: 2026-02-24
Assigner: VulDB
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| powerjob | powerjob | to 5.1.2 (inc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-862 | The product does not perform an authorization check when an actor attempts to access a resource or perform an action. |
| 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?
CVE-2025-11580 is an authorization vulnerability in PowerJob versions up to 5.1.2 affecting the /user/list endpoint. Due to missing authorization checks, unauthenticated users can remotely access this endpoint and retrieve the entire user list. This happens because the method handling this endpoint lacks proper access control annotations and checks, allowing unauthorized access to sensitive user information. [1, 2, 3]
How can this vulnerability impact me? :
This vulnerability can impact you by exposing sensitive user information without requiring authentication. Unauthorized actors can remotely retrieve the full list of users, compromising confidentiality. This could lead to further attacks or misuse of the exposed user data. [1, 2]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by sending an unauthenticated HTTP GET request to the /user/list endpoint of the PowerJob server and checking if the user list is returned without authentication. For example, you can use the following command to test this: curl -X GET http://<target-ip-or-domain>/user/list If the response contains user information without requiring authentication headers, the system is vulnerable. [1]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation involves enforcing proper authorization on the /user/list endpoint. Specifically, adding authorization checks such as the @ApiPermission annotation to restrict access to authenticated and authorized users only. If patching is not immediately possible, consider restricting external access to the affected endpoint via network controls or firewall rules until an update is applied. [1]