Kestrel
대시보드로 돌아가기
CVE-2026-52820MEDIUMGHSA대응게시일: 2026. 07. 13.수정일: 2026. 07. 13.

Kimai: Timesheet PATCH/POST allows assigning to project outside user's team via query_builder OR-bypass

위협 신호 · CVSS · EPSS · KEV

정기 패치· 높은 악용 신호 없음
CVSS
medium

이론적 심각도 점수

EPSS

예측 데이터 없음

KEV
미등재

실측 악용 기록 없음

권장 대응 기한60일 이내CISA SSVC 기준

계획된 패치 주기 내 조치(60일 이내)

외부 노출· KEV 미등재 · 자동화 어려움 · 부분 영향 · 외부 노출

CVSS 벡터 · 메트릭

CVSS 벡터 정보 없음

상세 설명

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

bash
1#[IsGranted('edit', 'timesheet')]
2#[Route(methods: ['PATCH'], path: '/{id}', name: 'patch_timesheet', requirements: ['id' => '\d+'])]
3public function patchAction(Request $request, Timesheet $timesheet): Response
4{
5 ...
6 $form = $this->createForm(TimesheetApiEditForm::class, $timesheet, [...]);
7 $form->setData($timesheet);
8 $form->submit($request->request->all(), false);
9 if (false === $form->isValid()) { ... }
10 $this->service->saveTimesheet($timesheet);
11 ...
12}

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

bash
1if ($subject->getUser()?->getId() === $user->getId()) {
2 return $this->permissionManager->hasRolePermission($user, $permission . '_own_timesheet');
3}
4
5if (!$this->permissionManager->checkTeamAccessTimesheet($subject, $user)) {
6 return false;
7}

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:

bash
1$isNew = true;
2if (isset($options['data']) && $options['data'] instanceof Timesheet) {
3 ...
4 if (null !== $entry->getId()) {
5 $isNew = false;
6 }
7 ...
8}
9$this->addProject($builder, $isNew, $project, $customer);

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

bash
1$builder->addEventListener(
2 FormEvents::PRE_SUBMIT,
3 function (FormEvent $event) use ($builder, $project, $customer, $isNew, $options): void {
4 $data = $event->getData();
5 $customer = \array_key_exists('customer', $data) && $data['customer'] !== '' ? $data['customer'] : null;
6 $project = \array_key_exists('project', $data) && $data['project'] !== '' ? $data['project'] : $project;
7
8 $event->getForm()->add('project', ProjectType::class, array_merge($options, [
9 'group_by' => null,
10 'query_builder' => function (ProjectRepository $repo) use ($builder, $project, $customer, $isNew) {
11 $project = \is_string($project) ? (int) $project : $project;
12 ...
13 if ($isNew && \is_int($project)) {
14 $project = $repo->find($project);
15 if ($project !== null) {
16 if (!$project->getCustomer()->isVisible()) { ... $project = null; }
17 elseif (!$project->isVisible()) { $project = null; }
18 }
19 }
20 ...
21 $query = new ProjectFormTypeQuery($project, $customer);
22 $query->setUser($builder->getOption('user'));
23 $query->setWithCustomer(true);
24 return $repo->getQueryBuilderForFormType($query);
25 },
26 ]));
27 }
28);

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:

bash
1public function getQueryBuilderForFormType(ProjectFormTypeQuery $query): QueryBuilder
2{
3 ...
4 $mainQuery = $qb->expr()->andX();
5 $mainQuery->add($qb->expr()->eq('p.visible', ':visible'));
6 $mainQuery->add($qb->expr()->eq('c.visible', ':customer_visible'));
7 if (!$query->isIgnoreDate()) { ... }
8 if ($query->hasCustomers()) { ... }
9
10 $permissions = $this->getPermissionCriteria($qb, $query->getUser(), $query->getTeams());
11 if ($permissions->count() > 0) {
12 $mainQuery->add($permissions);
13 }
14
15 $outerQuery = $qb->expr()->orX();
16 if ($query->hasProjects()) {
17 $outerQuery->add($qb->expr()->in('p.id', ':project')); // <-- unconditional
18 $qb->setParameter('project', $query->getProjects());
19 }
20 ...
21 $outerQuery->add($mainQuery);
22 $qb->andWhere($outerQuery);
23 return $qb;
24}

The final WHERE clause is roughly:

text
1WHERE (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

AI 심층 분석

공격 시나리오 · 재현 가능한 PoC 페이로드 · 즉시 적용 가능한 차단 패치를 한 번에 받아 보세요. 보안 운영팀이 그대로 점검·티켓팅에 쓸 수 있는 형태로 정리해 드립니다.