lowVulnerability

GHSA-8g29-8xwr-qmhr

### Impact `JSON.parse(env.adapterConfig)` is called without error handling in three locations within the gRPC service. While the data originates from the server's own SQLite database and should always be valid JSON, database corruption, migration errors, or unexpected state could cause an unhandled exception that crashes the gRPC handler. Additionally, the parsed result is cast as `Record<string, unknown>` and passed to adapter methods without property validation, creating a theoretical prototype pollution surface if the database is compromised. **Affected code:** - `packages/server/src/grpc-service.ts:415` — `reconnectOrProvision` handler - `packages/server/src/grpc-service.ts:482` — `stopEnvironment` handler - `packages/server/src/grpc-service.ts:498` — `destroyEnvironment` handler ### Patches **Fix:** Wrap in try-catch and return a meaningful gRPC error: ```typescript let config: Record<string, unknown>; try { config = JSON.parse(env.adapterConfig) as Record<string, unknown>; } catch { throw new ConnectError("Invalid adapter configuration", Code.Internal); } ``` ### Workarounds Ensure database integrity. Back up the SQLite database regularly. ### Resources - CWE-754: Improper Check for Unusual or Exceptional Conditions - File: `packages/server/src/grpc-service.ts`

Properties

ghsa_id
GHSA-8g29-8xwr-qmhr
severity
low
summary
@grackle-ai/server JSON.parse lacks try-catch logic in its gRPC Service AdapterConfig Handling
cve_id
GHSA-8g29-8xwr-qmhr
is_ghsa_only
true
ghsa_published
2026-03-25T17:33:01Z
source_url
https://github.com/advisories/GHSA-8g29-8xwr-qmhr
ghsa_updated
2026-03-25T17:33:03Z

Related Entities (3)

AFFECTS (1)

[Software]npm/@grackle-ai/server

HAS_WEAKNESS (1)

[Weakness]Improper Check for Unusual or Exceptional Conditions

REPORTED_BY (1)

[Source]GitHub Advisory Database

Explore deeper with Ninja Signal's threat intelligence graph

GHSA-8g29-8xwr-qmhr — Ninja Signal Threat Intelligence | Ninja Signal