Skip to main content

Kimai CVE-2026-52820

MEDIUM
Authorization Bypass Through User-Controlled Key (CWE-639)
2026-07-13 https://github.com/kimai/kimai GHSA-vrr2-g9gh-c3jc
Share

Severity by source

vuln.today AI
5.4 MEDIUM

Network API exploitable by any authenticated ROLE_USER (PR:L); low complexity; limited confidentiality and integrity impact; no availability effect.

3.1 AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N
4.0 AV:N/AC:L/AT:N/PR:L/UI:N/VC:L/VI:L/VA:N/SC:N/SI:N/SA:N

Estimated by vuln.today — no official severity rating has been published for this CVE yet.

Lifecycle Timeline

2
Source Code Evidence Fetched
Jul 14, 2026 - 00:16 vuln.today
Analysis Generated
Jul 14, 2026 - 00:16 vuln.today

DescriptionCVE.org

Summary

The Timesheet API PATCH /api/timesheets/{id} and POST /api/timesheets endpoints accept a user-supplied project ID and resolve it through a Symfony EntityType whose query_builder allows the submitted ID to satisfy the access predicate via an unconditional OR branch. As a result, any authenticated user can re-assign their own timesheet to any project in the database - including projects that belong to teams or customers they have no membership in and cannot otherwise see. The user can then read serialized project/customer details via GET /api/timesheets/{id}?full=true, leaking metadata (name, currency, customer hierarchy) that would otherwise be filtered out by the team ACL.

Details

Entry point - only ownership is checked in src/API/TimesheetController.php:317-355

php
#[IsGranted('edit', 'timesheet')]
#[Route(methods: ['PATCH'], path: '/{id}', name: 'patch_timesheet', requirements: ['id' => '\d+'])]
public function patchAction(Request $request, Timesheet $timesheet): Response
{
    ...
    $form = $this->createForm(TimesheetApiEditForm::class, $timesheet, [...]);
    $form->setData($timesheet);
    $form->submit($request->request->all(), false);
    if (false === $form->isValid()) { ... }
    $this->service->saveTimesheet($timesheet);
    ...
}

src/Voter/TimesheetVoter.php:134-142:

php
if ($subject->getUser()?->getId() === $user->getId()) {
    return $this->permissionManager->hasRolePermission($user, $permission . '_own_timesheet');
}

if (!$this->permissionManager->checkTeamAccessTimesheet($subject, $user)) {
    return false;
}

For an own-timesheet, only edit_own_timesheet is required. The voter does not look at the *new* project being submitted; it only validates the existing record's ownership.

Form replays user-controlled project ID into the access query

src/Form/TimesheetEditForm.php:60-71:

php
$isNew = true;
if (isset($options['data']) && $options['data'] instanceof Timesheet) {
    ...
    if (null !== $entry->getId()) {
        $isNew = false;
    }
    ...
}
$this->addProject($builder, $isNew, $project, $customer);

src/Form/FormTrait.php:59-100:

php
$builder->addEventListener(
    FormEvents::PRE_SUBMIT,
    function (FormEvent $event) use ($builder, $project, $customer, $isNew, $options): void {
        $data = $event->getData();
        $customer = \array_key_exists('customer', $data) && $data['customer'] !== '' ? $data['customer'] : null;
        $project = \array_key_exists('project', $data) && $data['project'] !== '' ? $data['project'] : $project;

        $event->getForm()->add('project', ProjectType::class, array_merge($options, [
            'group_by' => null,
            'query_builder' => function (ProjectRepository $repo) use ($builder, $project, $customer, $isNew) {
                $project = \is_string($project) ? (int) $project : $project;
                ...
                if ($isNew && \is_int($project)) {
                    $project = $repo->find($project);
                    if ($project !== null) {
                        if (!$project->getCustomer()->isVisible()) { ... $project = null; }
                        elseif (!$project->isVisible())            { $project = null; }
                    }
                }
                ...
                $query = new ProjectFormTypeQuery($project, $customer);
                $query->setUser($builder->getOption('user'));
                $query->setWithCustomer(true);
                return $repo->getQueryBuilderForFormType($query);
            },
        ]));
    }
);

Two problems compound:

  1. The visibility re-check on line 73 is gated on $isNew. For PATCH, $isNew = false, so the closure passes the attacker-supplied ID straight through.
  2. Even when $isNew = true (POST), the re-check only validates isVisible() - it does not validate team membership.

The query-builder unconditionally accepts the submitted ID

src/Repository/ProjectRepository.php:150-208:

php
public function getQueryBuilderForFormType(ProjectFormTypeQuery $query): QueryBuilder
{
    ...
    $mainQuery = $qb->expr()->andX();
    $mainQuery->add($qb->expr()->eq('p.visible', ':visible'));
    $mainQuery->add($qb->expr()->eq('c.visible', ':customer_visible'));
    if (!$query->isIgnoreDate()) { ... }
    if ($query->hasCustomers()) { ... }

    $permissions = $this->getPermissionCriteria($qb, $query->getUser(), $query->getTeams());
    if ($permissions->count() > 0) {
        $mainQuery->add($permissions);
    }

    $outerQuery = $qb->expr()->orX();
    if ($query->hasProjects()) {
        $outerQuery->add($qb->expr()->in('p.id', ':project'));     // <-- unconditional
        $qb->setParameter('project', $query->getProjects());
    }
    ...
    $outerQuery->add($mainQuery);
    $qb->andWhere($outerQuery);
    return $qb;
}

The final WHERE clause is roughly:

WHERE (p.id IN (:project)) OR (p.visible AND c.visible AND <date> AND <team-ACL>)

Because :project is the submitted ID itself, the first branch matches unconditionally, completely bypassing the team-ACL applied by getPermissionCriteria. Symfony's EntityType happily resolves the foreign Project entity, the form passes validation, and the timesheet is persisted with the new project_id.

No downstream validation closes the gap

  • TimesheetService::saveTimesheetupdateTimesheet (src/Timesheet/TimesheetService.php:154-177) is explicitly documented as *not* validating.
  • TimesheetBasicValidator only validates begin/end and project/activity coherence.
  • TimesheetDeactivatedValidator::validateActivityAndProject (src/Validator/Constraints/TimesheetDeactivatedValidator.php:36-42) returns early for non-running existing timesheets.
  • No validator anywhere in the timesheet pipeline checks that the project's team membership intersects the acting user's teams.

*A PoC was provided, but removed for security reasons.*

Impact

  • Integrity: any authenticated user can attribute their own tracked time to any project ID in the database - including projects belonging to teams/customers they cannot see. This pollutes per-project budgets, billing exports and reports for other teams. There is no in-app warning that records belonging to outsiders have been added.
  • Confidentiality: by reading the timesheet back via ?full=true, the attacker obtains serialized project and customer details (name, currency, start/end dates, customer hierarchy) which would normally be filtered by the team ACL.
  • Privilege model: the edit_own_timesheet permission is part of the default ROLE_USER, so the bypass is reachable by every regular user without any administrator action.

The blast radius is bounded by what an attacker can persist (their own timesheet rows) and what the ?full=true serializer exposes - there is no direct ability to modify other teams' existing data.

Solution

  • The FormTrait was updated to only pass the project forward for new timesheets
  • A new TimesheetTeamAccessValidatorwas added, which checks if project or activity were changed. If that is the case, the team access permission is checked first

Find out more at https://www.kimai.org/en/security/ghsa-vrr2-g9gh-c3jc

AnalysisAI

Broken object-level authorization in Kimai's Timesheet API (versions <= 2.56.0) allows any authenticated user with the default ROLE_USER permission to reassign their own timesheet entries to arbitrary project IDs in the database - including projects belonging to teams or customers they have no membership in. The root cause is an unconditional OR branch in the Symfony EntityType query_builder that matches any submitted project ID before team-ACL predicates are evaluated; the TimesheetVoter further compounds this by checking only timesheet ownership, never the destination project's access controls. …

Unlock full vulnerability intelligence

  • Risk assessment & exploitation conditions
  • Attack chain visualization
  • Remediation with exact patch versions
  • Threat intelligence from 22 sources
  • Personal watchlist & email alerts

Free forever · No credit card required

Attack ChainAIDerived

Hypothetical attack flow derived from CVE metadata

Access
Authenticate as default ROLE_USER
Delivery
Send PATCH /api/timesheets/{id} with arbitrary target project ID
Exploit
OR-branch in query_builder satisfies ACL predicate unconditionally
Execution
TimesheetVoter approves (checks ownership only, not destination project)
Persist
Timesheet persisted with unauthorized project ID
Impact
GET /api/timesheets/{id}?full=true exfiltrates project and customer metadata

Vulnerability AssessmentAI

Exploitation The attacker must be authenticated with at least ROLE_USER, the default role assigned to all new Kimai accounts - no administrator action or elevated permission is required. … Additional conditions and limiting factors are described in the full assessment.
Risk Assessment No NVD CVSS vector was published at the time of analysis, so all metric assessments are independently derived. … Full risk analysis with EPSS, KEV, and SSVC signal comparison available after sign-in.
Exploit Scenario An authenticated attacker with a standard ROLE_USER account enumerates project IDs by sending PATCH requests to /api/timesheets/{own_id} with sequentially incremented project values; each successful 200 response confirms a valid project ID in the database. The attacker then issues GET /api/timesheets/{own_id}?full=true to retrieve serialized project and customer metadata (name, currency, customer hierarchy) for projects belonging to teams they have no membership in. …
Remediation Upgrade Kimai to version 2.57.0, which introduces two targeted fixes: FormTrait was updated to only pass the project forward for new timesheets (eliminating the $isNew bypass for PATCH), and a new TimesheetTeamAccessValidator was added that checks team access permissions whenever the project or activity fields are changed on any timesheet. … Detailed patch versions, workarounds, and compensating controls in full report.

Threat intelligence, references, and detailed analysis are available after sign-in.

More in PHP

View all
CVE-2012-1823 CRITICAL POC
9.8 May 11

sapi/cgi/cgi_main.c in PHP before 5.3.12 and 5.4.x before 5.4.2, when configured as a CGI script (aka php-cgi), does not

CVE-2016-1555 CRITICAL POC
9.8 Apr 21

(1) boardData102.php, (2) boardData103.php, (3) boardDataJP.php, (4) boardDataNA.php, and (5) boardDataWW.php in Netgear

CVE-2024-11680 CRITICAL POC
9.8 Nov 26

ProjectSend versions prior to r1720 are affected by an improper authentication vulnerability. Rated critical severity (C

CVE-2025-49113 CRITICAL POC
9.9 Jun 02

Roundcube Webmail contains a critical PHP object deserialization vulnerability (CVE-2025-49113, CVSS 9.9) that allows au

CVE-2017-9841 CRITICAL POC
9.8 Jun 27

Util/PHP/eval-stdin.php in PHPUnit before 4.8.28 and 5.x before 5.6.3 allows remote attackers to execute arbitrary PHP c

CVE-2025-0108 HIGH POC
8.8 Feb 12

Palo Alto Networks PAN-OS management web interface contains an authentication bypass allowing unauthenticated attackers

CVE-2021-25298 HIGH POC
8.8 Feb 15

Nagios XI version xi-5.7.5 is affected by OS command injection. Rated high severity (CVSS 8.8), this vulnerability is re

CVE-2021-25296 HIGH POC
8.8 Feb 15

Nagios XI version xi-5.7.5 is affected by OS command injection. Rated high severity (CVSS 8.8), this vulnerability is re

CVE-2013-4983 CRITICAL POC
10.0 Sep 10

The get_referers function in /opt/ws/bin/sblistpack in Sophos Web Appliance before 3.7.9.1 and 3.8 before 3.8.1.1 allows

CVE-2023-6553 CRITICAL POC
9.8 Dec 15

The Backup Migration plugin for WordPress is vulnerable to Remote Code Execution in all versions up to, and including, 1

CVE-2024-46506 CRITICAL POC
10.0 May 13

NetAlertX (formerly PiAlert) versions 23.01.14 through 24.x before 24.10.12 allow unauthenticated command injection thro

CVE-2024-8353 CRITICAL POC
9.8 Sep 28

The GiveWP - Donation Plugin and Fundraising Platform plugin for WordPress is vulnerable to PHP Object Injection in all

Share

CVE-2026-52820 vulnerability details – vuln.today

This site uses cookies essential for authentication and security. No tracking or analytics cookies are used. Privacy Policy