SEPTEMBER 17, 2026
Live Feed
Back to database
Case File

CVE-2026-81819

MEDIUM · CVSS 5.3 EPSS 0.29% Public Exploit

Source: NVD + CISA KEV + EPSS · Published 2026-08-27 · Last synced 2026-09-17

CyberRota Analysis

AI-Generated

The Flowintel application exposes the /my_assignment/user API endpoint, allowing any authenticated user to access assignment information of other users without sufficient role restrictions. This vulnerability could enable lower-privileged users to retrieve sensitive assignment data by manipulating the user_id parameter. Organizations using version 3.3.0 should prioritize patching this issue to prevent unauthorized access to user assignments.

Public Exploit Signal

A public exploit, PoC, GitHub repository or Metasploit reference was detected for this CVE.

GitHub PoC Links

Note: these links are listed for security research and verification purposes only.

CVE
CVE-2026-81819
Severity
MEDIUM
CVSS
5.3
EPSS
0.29%

Original NVD Description

Affected versions of Flowintel expose the /my_assignment/user API endpoint to any authenticated API user. The endpoint accepts a user_id parameter identifying the user whose assignments should be returned, but previously had no role restriction beyond general API authentication. As a result, a lower-privileged authenticated user could potentially query another user’s assignment information by supplying that user’s identifier. The fix changes: method_decorators = [api_required] to: method_decorators = [admin_or_org_admin_required, api_required] so only administrators or organization administrators can perform cross-user assignment queries. Version impacted =>3.3.0