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
Fix: Wrap in try-catch and return a meaningful gRPC error:
let config: Record<string, unknown>;
try {
config = JSON.parse(env.adapterConfig) as Record<string, unknown>;
} catch {
throw new ConnectError("Invalid adapter configuration", Code.Internal);
}
Ensure database integrity. Back up the SQLite database regularly.
packages/server/src/grpc-service.ts{
"severity": "LOW",
"cwe_ids": [
"CWE-754"
],
"github_reviewed": true,
"github_reviewed_at": "2026-03-25T17:33:01Z",
"nvd_published_at": null
}