CVE-2026-10616
Authorization Bypass in GoClaw Team Task Completion Handler
Publication date: 2026-06-02
Last updated on: 2026-06-02
Assigner: VulDB
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| nextlevelbuilder | goclaw | to 3.11.3 (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-2026-10616 is an authorization bypass vulnerability in the GoClaw software, specifically in the team task management system. It allows a low-privileged team member to complete another member's in-progress task by exploiting flaws in the executeComplete function and related backend checks. The vulnerability arises because the system does not properly verify the caller's ownership or lock status of the task, enabling any authenticated team member to complete tasks they do not own by knowing the task ID.
This can be done remotely via the standard HTTP interface, and the exploit has been publicly disclosed. The vulnerability affects GoClaw versions up to 3.11.3 and has been patched in later versions.
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
The vulnerability allows a low-privileged team member to bypass authorization and complete another member's task, potentially replacing task results with arbitrary content. This can lead to corruption of downstream workflows, reviews, and audit trails.
Such unauthorized modifications and corrupted audit trails can negatively impact compliance with standards and regulations like GDPR and HIPAA, which require strict access controls, data integrity, and accurate audit logging to protect sensitive information and ensure accountability.
How can this vulnerability impact me? :
This vulnerability can impact you by allowing unauthorized team members to complete tasks they do not own, potentially replacing task results with arbitrary content. This can corrupt downstream workflows, reviews, and audit trails, leading to integrity loss in multi-agent team deployments.
Such unauthorized task completions can disrupt team operations, cause confusion, and undermine trust in the system's task management and reporting.
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by monitoring HTTP requests to the GoClaw team task management system, specifically looking for unauthorized attempts to complete tasks belonging to other team members.
Since the exploit involves completing tasks by knowing their IDs via the team-wide task listing feature, commands or scripts that audit task completion requests and verify the ownership of the requester can help detect exploitation attempts.
For example, you can analyze HTTP logs for POST or PUT requests to endpoints related to task completion, checking if the authenticated user matches the task owner.
- Use network traffic inspection tools (e.g., tcpdump, Wireshark) to capture HTTP requests to the GoClaw server.
- Use grep or similar tools to filter logs for task completion API calls, e.g., `grep 'CompleteTask' /var/log/goclaw/access.log`.
- Query the database to verify task ownership and check for inconsistencies where tasks are marked complete by users who do not own them.
What immediate steps should I take to mitigate this vulnerability?
The immediate mitigation step is to upgrade GoClaw to a version later than 3.11.3 where this vulnerability has been patched.
Until the patch can be applied, restrict access to the team task management HTTP interface to trusted users only and monitor for suspicious task completion activities.
Implement additional access controls or validation checks at the application or network level to ensure that only authorized users can complete tasks.
Review and audit task completion logs regularly to detect any unauthorized task completions.