Snyk has a proof-of-concept or detailed explanation of how to exploit this vulnerability.
The probability is the direct output of the EPSS model, and conveys an overall sense of the threat of exploitation in the wild. The percentile measures the EPSS probability relative to all known EPSS scores. Note: This data is updated daily, relying on the latest available EPSS model version. Check out the EPSS documentation for more details.
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsUpgrade kimai/kimai
to version 2.13.0 or higher.
Affected versions of this package are vulnerable to Exposure of Sensitive Information to an Unauthorized Actor due to the inconsistent handling of permissions between the UI and its API. Specifically, the view_other_timesheet
permission behaves differently across these interfaces, leading to the API divulging timesheet entries that a user should not have access to based on their team memberships. This discrepancy allows unauthorized access to sensitive information.
Give a user view_other_timesheet
permission
The result of the UI and the API call to /api/timesheets?user=all
differs in the data that is being returned
Curl command:
curl -X 'GET' \
'https://kimai.instance.com/api/timesheets?user=all' \
-H 'accept: application/json' \
-H 'X-AUTH-USER: username' \
-H 'X-AUTH-TOKEN: api_token'