autonoma-city

clawhub:autonoma-city

View source
C
67/100

First Seen

Feb 19, 2026

Last Scanned

Feb 22, 2026

Findings

4

Score

67/100

CRITICAL 1
MEDIUM 1
LOW 2

Findings (4)

CRITICAL
Text combines credential access with network transmission
L39

Text combines credential access with network transmission

First, generate a dedicated webhook secret for this integration — do NOT reuse your gateway's global hooks.token or any other existing credential:
FIX

Remove the combination of credential access and network transmission from the tool. If the tool needs credentials, access them via a secrets manager and never transmit them externally.

FP?

Likely FP if the tool legitimately uses credentials for API authentication (e.g., reading an API key to make authenticated requests to the same service).

MEDIUM
Remote SDK or script fetch as agent input
L570

Detects fetching remote documentation or code to load as agent context

fetch it, read  + https://autonoma.city/heartbeat.md
FIX

Pin the SDK or script to a specific version and verify its checksum after download. Prefer installing SDKs via a package manager instead of fetching remote scripts directly.

FP?

Likely FP if the match is documentation showing how to install an official SDK (e.g., Google Cloud SDK, AWS CLI) from its canonical URL.

LOW
Runtime URL controlling behavior
L72

Detects URLs fetched at runtime that control or influence agent behavior without pinning

Fetch https:// + prompt
FIX

Avoid loading configuration or behavior-controlling content from runtime URLs. Bundle required configurations locally or pin remote config to versioned, integrity-verified endpoints.

FP?

Likely FP if the URL in the match is a documentation link or example URL (e.g., example.com) rather than an actual runtime-fetched configuration endpoint.

LOW
External API response used without validation
L229

Detects patterns where external API responses are used directly without validation or sanitization

API calls in one session. The response + automatically lifted. Due process
FIX

Validate and sanitize all data received from external APIs before using it in tool operations or agent prompts. Implement schema validation and treat API responses as untrusted input.

FP?

Likely FP if the match is a truncated table cell or documentation fragment that mentions API responses in a descriptive context, not actual unvalidated data processing.