Description
AgenticSeek (commit fc242c7) contains an unauthenticated remote code execution vulnerability that allows any network-adjacent attacker to execute arbitrary commands by submitting crafted queries to the unprotected POST /query API endpoint bound to 0.0.0.0:7777 with wildcard CORS. Attackers can send unauthenticated HTTP requests that cause the autonomous agent to generate and execute shell commands through BashInterpreter using subprocess.Popen with shell=True and safety=False, bypassing the incomplete command blocklist to achieve full host-level code execution.
Published: 2026-08-13
Score: 9.3 Critical
EPSS: n/a
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

AgenticSeek contains an unauthenticated remote code execution flaw that allows an attacker to run arbitrary commands on the host. The vulnerability stems from an unprotected POST /query endpoint listening on all interfaces (0.0.0.0:7777). By sending crafted queries, an attacker can trigger the autonomous agent to execute shell code through BashInterpreter that calls subprocess.Popen with shell=True and safety=False, bypassing an incomplete command blocklist. The flaw is classified as CWE-306, reflecting a failure to enforce proper authentication, and results in full host‑level compromise when exploited.

Affected Systems

The affected product is Fosowl’s AgenticSeek, with the vulnerability present in the commit fc242c7 and any releases that have not applied this fix. The software binds the vulnerable endpoint to all network interfaces on port 7777, exposing it to any network‑adjacent host that can reach that port. No specific version range is listed, so all deployments of AgenticSeek that include the unmodified code are potentially affected.

Risk and Exploitability

The CVSS score of 9.3 indicates critical severity. While the EPSS score is unavailable, the lack of a KEV listing suggests no confirmed widespread exploitation yet, but the architecture of the flaw makes it straightforward to craft an exploit. Because authentication is bypassed, any host on the same network can send a POST request to /query with a payload that triggers the vulnerable subprocess call, and the agent will execute the supplied shell command with system privileges. Security teams should treat this as an immediate risk and prioritize mitigation.

Generated by OpenCVE AI on August 13, 2026 at 22:35 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Upgrade AgenticSeek to the latest patched release that removes the vulnerable subprocess invocation; refer to the Fosowl repository for the updated version post‑commit fc242c7.
  • Restrict access to the /query endpoint by configuring a firewall or host‑based ACL to allow traffic only from trusted IP addresses or bind the service to a non‑public interface.
  • Modify or disable the BashInterpreter feature so that shell execution is prohibited, for example by removing the shell=True argument or enforcing a strict whitelist of executable commands.
  • As a temporary measure, block all POST requests to /query using a WAF or reverse proxy until the patched version is deployed.

Generated by OpenCVE AI on August 13, 2026 at 22:35 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Thu, 13 Aug 2026 23:15:00 +0000

Type Values Removed Values Added
First Time appeared Fosowl
Fosowl agenticseek
Vendors & Products Fosowl
Fosowl agenticseek

Thu, 13 Aug 2026 21:45:00 +0000

Type Values Removed Values Added
Description AgenticSeek (commit fc242c7) contains an unauthenticated remote code execution vulnerability that allows any network-adjacent attacker to execute arbitrary commands by submitting crafted queries to the unprotected POST /query API endpoint bound to 0.0.0.0:7777 with wildcard CORS. Attackers can send unauthenticated HTTP requests that cause the autonomous agent to generate and execute shell commands through BashInterpreter using subprocess.Popen with shell=True and safety=False, bypassing the incomplete command blocklist to achieve full host-level code execution.
Title AgenticSeek Unauthenticated RCE via /query API Endpoint
Weaknesses CWE-306
References
Metrics cvssV3_1

{'score': 9.8, 'vector': 'CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H'}

cvssV4_0

{'score': 9.3, 'vector': 'CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N'}


Subscriptions

Fosowl Agenticseek
cve-icon MITRE

Status: PUBLISHED

Assigner: VulnCheck

Published:

Updated: 2026-08-13T21:25:59.587Z

Reserved: 2026-08-10T15:09:12.955Z

Link: CVE-2026-72776

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-08-13T22:17:23.340

Modified: 2026-08-13T22:17:23.340

Link: CVE-2026-72776

cve-icon Redhat

No data.

cve-icon OpenCVE Enrichment

Updated: 2026-08-13T23:00:06Z

Weaknesses
  • CWE-306

    Missing Authentication for Critical Function