Kbot MCP Server

@kernel.chat/kbot npm v4.5.1

Published by @kernel.chat — no publish provenance, so origin is unverified, but the source is public: the repository link below is self-declared yet readable, so you can inspect the code before adopting it.

Open-source terminal AI agent. 100+ specialist skills + audit-grade finance infra via @kernel.chat/kbot-finance. Content-addressed envelopes, hash-chained audit log, jurisdiction-aware regulatory verifier. The AI Intelligence Layer never produces the numb

Trust grade
C
72/100
Last scanned get badge →
Trust
C · 72/100
Adoption risk for you: the threat score, then adjusted down for blast radius, publisher verification and how much the scan could see. Deterministic; every point is auditable.
Capability
Critical
Blast radius if it went rogue — what the server’s tools could reach. Independent of trust.
Coverage
Source
How much the scan could actually inspect. Shallow coverage is stated, never hidden.
Share this Trust Score
𝕏 Share LinkedIn Reddit
C Why this grade threat 83 − adoption risk = 72/100

The grade answers one question — how safe is this server for you to adopt — so it is computed in two auditable stages. Nothing below is an opinion or an LLM's guess; every line is a real term the deterministic engine applied, and the same input always yields the same number.

1. Threat score — 100 − 16.6 = 83. What the published surface and source actually contain:

PointsWhat was foundCategory
−15.4 Untrusted input concatenated into a command sink ×10 MTC-SRC-009 injection
−1.2 Shell command embedded in tool metadata MTC-INJ-CMD-1 injection

2. Client adoption risk — 83 − 11 = 72. Three small, subtract-only factors that reflect your risk in adopting it — a clean scan proves less on a powerful, unverified or barely-inspectable package, so the grade says so plainly:

PointsAdoption-risk factor
−10 capability blast radius (critical) — client exposure if the model is manipulated
−1 publisher verification (public source) — no provenance, but the source is public and inspectable

Capability observations and info notes are shown under Findings but never scored. Open any row's finding below for the file, line and evidence behind a deduction.

Findings 57

critical Completed toxic-flow trifecta across toolsMTC-FLOW-002

This server (without client built-ins) exposes a complete data-exfiltration chain: kbot_github → kbot_bash. Untrusted input is ingested, private data is read, and it can be sent to an external sink via the agent composing the tools (→). Static analysis proves the primitive exists, not that a specific run will occur.

Fix: Remove one leg of the trifecta: isolate untrusted-input tools from secret-reading tools and from egress tools, or require human approval between them.

Location: flow kbot_github → kbot_bash

high Read-and-egress in one tool: "kbot_bash"MTC-FLOW-003

Tool "kbot_bash" can both read sensitive data and send data to an external destination. Even without an explicit untrusted-input leg, this is a single-call data-exfiltration path if the model is ever manipulated.

Fix: Separate reading from sending; require explicit user confirmation before egress of file/secret contents.

Location: flow kbot_bash

high Reads a sensitive credential path or dumps the environment (dist/personal-security.js)MTC-SRC-006

In the server's implementation (`dist/personal-security.js:216`): Reading private keys / cloud credentials, or serializing the whole environment, is a sensitive-data source that becomes exfiltration when combined with any egress. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: if (entry === 'id_rsa' || entry === 'id_ed25519' || entry === 'id_ecdsa' || entry === 'id_dsa' || entry.startsW

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/personal-security.js

high Reads a sensitive credential path or dumps the environment (dist/tools/redblue.js)MTC-SRC-006

In the server's implementation (`dist/tools/redblue.js:101`): Reading private keys / cloud credentials, or serializing the whole environment, is a sensitive-data source that becomes exfiltration when combined with any egress. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: 'next.config.mjs', '.npmrc', '.yarnrc', '.babelrc', 'jest.config.ts', 'jest.config.js', 'vitest.con

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/tools/redblue.js

high Reads a sensitive credential path or dumps the environment (dist/tools/security-hunt.js)MTC-SRC-006

In the server's implementation (`dist/tools/security-hunt.js:170`): Reading private keys / cloud credentials, or serializing the whole environment, is a sensitive-data source that becomes exfiltration when combined with any egress. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: const dangerousFiles = ['.npmrc', '.pypirc', '.docker/config.json', '.aws/credentials']; for (const df of dangerousF

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/tools/security-hunt.js

high Tool "kbot_bash" exposes command/code executionMTC-CAP-001

Tool "kbot_bash" appears to run shell commands or evaluate code (keyword "bash" in tool name, parameter "command"). Arbitrary execution driven by model input is one of the most dangerous MCP capabilities; combined with any untrusted input it becomes RCE.

Fix: Sandbox execution, allowlist commands/arguments, and never pass model output to a shell unescaped.

Location: tool kbot_bash

high Dynamic code execution in server code (dist/agents/security-rules.js)MTC-SRC-001

In the server's implementation (`dist/agents/security-rules.js:76`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: , description: 'new Function() constructor', recommendation: 'Replace with predefined functions or sandb

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/agents/security-rules.js

high Dynamic code execution in server code (dist/integrations/ableton-osc-installer.js)MTC-SRC-001

In the server's implementation (`dist/integrations/ableton-osc-installer.js:91`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: result = eval(code, { 'song': self.song, 'app': self.manager.appl

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/integrations/ableton-osc-installer.js

high Dynamic code execution in server code (dist/pair.js)MTC-SRC-001

In the server's implementation (`dist/pair.js:93`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: tructor — equivalent to eval()', severity: 'error' }, { pattern: /dangerouslySetInnerHTML/, message: 'dangerouslySet

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/pair.js

high Dynamic code execution in server code (dist/reflection.js)MTC-SRC-001

In the server's implementation (`dist/reflection.js:96`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: on\s*\(/i, issue: 'Used eval() or Function() constructor — potential code injection.' }, { pattern: /password\s*

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/reflection.js

high Dynamic code execution in server code (dist/tools/containers.js)MTC-SRC-001

In the server's implementation (`dist/tools/containers.js:287`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: rip(); print(f"Result: {eval(expr, {\\"__builtins__\\": {}}, vars(math))}")'], { timeout: 10_000, maxBuffer: 1024 * 1024

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/tools/containers.js

high Dynamic code execution in server code (dist/tools/redblue.js)MTC-SRC-001

In the server's implementation (`dist/tools/redblue.js:481`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: exploitation: 'new Function("return " + userInput)() allows arbitrary code execution', }, { nam

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/tools/redblue.js

high Dynamic code execution in server code (dist/tools/security-hunt.js)MTC-SRC-001

In the server's implementation (`dist/tools/security-hunt.js:322`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: fix: 'Remove eval(). Use JSON.parse() for data, or Function constructor with strict validation if absolutely

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/tools/security-hunt.js

high Shell/command execution in server code (dist/adapters/peekaboo/runner.js)MTC-SRC-002

In the server's implementation (`dist/adapters/peekaboo/runner.js:7`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: { execFile } from 'node:child_process'; function resolveBinary() { return process.env.PEEKABOO_BIN && process.env.PE

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/adapters/peekaboo/runner.js

high Shell/command execution in server code (dist/agents/security-rules.js)MTC-SRC-002

In the server's implementation (`dist/agents/security-rules.js:83`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: , description: 'exec(`... ${...}`) template literal', recommendation: 'Switch to execFile(cmd, [args]) —

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/agents/security-rules.js

high Shell/command execution in server code (dist/automations.js)MTC-SRC-002

In the server's implementation (`dist/automations.js:15`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: { execSync } from 'node:child_process'; import { randomUUID, timingSafeEqual } from 'node:crypto'; // ── Paths ── const

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/automations.js

high Shell/command execution in server code (dist/autonomous-contributor.js)MTC-SRC-002

In the server's implementation (`dist/autonomous-contributor.js:14`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: { execSync } from 'node:child_process'; // ── Constants ── const IGNORED_DIRS = new Set([ 'node_modules', '.git', 'd

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/autonomous-contributor.js

high Shell/command execution in server code (dist/bootstrap.js)MTC-SRC-002

In the server's implementation (`dist/bootstrap.js:20`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: { execSync } from 'node:child_process'; import chalk from 'chalk'; // ── Helpers ── function execQuiet(cmd, timeoutMs =

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/bootstrap.js

high Shell/command execution in server code (dist/bounty/hunter.js)MTC-SRC-002

In the server's implementation (`dist/bounty/hunter.js:19`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: ecFileSync } from 'node:child_process'; import { readFileSync, writeFileSync, existsSync, mkdirSync } from 'node:fs'; im

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/bounty/hunter.js

high Shell/command execution in server code (dist/bounty/solver.js)MTC-SRC-002

In the server's implementation (`dist/bounty/solver.js:12`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: ecFileSync } from 'node:child_process'; import { existsSync, rmSync } from 'node:fs'; import { join } from 'node:path';

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/bounty/solver.js

high Shell/command execution in server code (dist/build-targets.js)MTC-SRC-002

In the server's implementation (`dist/build-targets.js:7`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: { execSync } from 'node:child_process'; import { join } from 'node:path'; export const BUILD_TARGETS = { // ── Mobil

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/build-targets.js

high Shell/command execution in server code (dist/changelog.js)MTC-SRC-002

In the server's implementation (`dist/changelog.js:12`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: { execSync } from 'node:child_process'; import { readFileSync } from 'node:fs'; import { join } from 'node:path'; import

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/changelog.js

high Shell/command execution in server code (dist/cli.js)MTC-SRC-002

In the server's implementation (`dist/cli.js:1628`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: } = await import('node:child_process'); execSync('echo ok', { timeout: 2000 }); system.reportHe

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/cli.js

medium Hardcoded egress to an external endpoint (dist/bootstrap.js)MTC-SRC-003

In the server's implementation (`dist/bootstrap.js:57`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: const res = await fetch(`https://api.github.com/repos/${repo}`, { headers: { 'User-Agent': 'kbot-boots

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/bootstrap.js

medium Hardcoded egress to an external endpoint (dist/briefing.js)MTC-SRC-003

In the server's implementation (`dist/briefing.js:37`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: const fgRes = await fetch('https://api.alternative.me/fng/?limit=1', { signal: AbortSignal.timeout(5000) });

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/briefing.js

medium Hardcoded egress to an external endpoint (dist/cli.js)MTC-SRC-003

In the server's implementation (`dist/cli.js:1569`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: const res = await fetch(`https://eoxxpyixdieprsxlpwcs.supabase.co/functions/v1/forge-registry/search?q=${encodeURI

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/cli.js

medium Hardcoded egress to an external endpoint (dist/community-manager.js)MTC-SRC-003

In the server's implementation (`dist/community-manager.js:224`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: const npmRes = await fetch('https://api.npmjs.org/downloads/point/last-week/@kernel.chat/kbot', { signal: AbortSignal

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/community-manager.js

medium Hardcoded egress to an external endpoint (dist/daemon.js)MTC-SRC-003

In the server's implementation (`dist/daemon.js:74`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: const res = await fetch(`https://api.coingecko.com/api/v3/simple/price?ids=${ids}&vs_currencies=usd`, { signal: Ab

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/daemon.js

medium Hardcoded egress to an external endpoint (dist/discovery.js)MTC-SRC-003

In the server's implementation (`dist/discovery.js:216`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: const pageRes = await fetch(`https://news.ycombinator.com/item?id=${itemId}`, { headers: { 'Cookie': confi

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/discovery.js

medium Hardcoded egress to an external endpoint (dist/email-agent.js)MTC-SRC-003

In the server's implementation (`dist/email-agent.js:205`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: const res = await fetch(`https://api.duckduckgo.com/?q=${encoded}&format=json&no_html=1&skip_disambig=1`, {

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/email-agent.js

medium Hardcoded egress to an external endpoint (dist/error-correction.js)MTC-SRC-003

In the server's implementation (`dist/error-correction.js:142`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: const res = await fetch('https://api.anthropic.com/v1/messages', { method: 'POST', headers

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/error-correction.js

medium Hardcoded egress to an external endpoint (dist/imessage-agent.js)MTC-SRC-003

In the server's implementation (`dist/imessage-agent.js:148`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: const res = await fetch(`https://api.duckduckgo.com/?q=${encoded}&format=json&no_html=1&skip_disambig=1`, {

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/imessage-agent.js

medium Hardcoded egress to an external endpoint (dist/interactive-buttons.js)MTC-SRC-003

In the server's implementation (`dist/interactive-buttons.js:121`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: const res = await fetch('https://api.resend.com/emails', { method: 'POST', headers: {

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/interactive-buttons.js

medium Untrusted input concatenated into a command sink (dist/build-targets.js)MTC-SRC-009

In the server's implementation (`dist/build-targets.js:429`): A shell/process command assembled from concatenated or interpolated values is command injection when any part is attacker-influenced — the OWASP canonical RCE flow. Verify what reaches the interpolated value. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: ol) { try { execSync(`which ${tool}`, { stdio: 'ignore', timeout: 3000 }); return true; } ca

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/build-targets.js

medium Untrusted input concatenated into a command sink (dist/cli.js)MTC-SRC-009

In the server's implementation (`dist/cli.js:2139`): A shell/process command assembled from concatenated or interpolated values is command injection when any part is attacker-influenced — the OWASP canonical RCE flow. Verify what reaches the interpolated value. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: cess'); execSync(`ollama pull ${opts.model}`, { stdio: 'inherit', timeout: 600_000 }); p

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/cli.js

medium Untrusted input concatenated into a command sink (dist/community-autopilot.js)MTC-SRC-009

In the server's implementation (`dist/community-autopilot.js:100`): A shell/process command assembled from concatenated or interpolated values is command injection when any part is attacker-influenced — the OWASP canonical RCE flow. Verify what reaches the interpolated value. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: dy) { try { execSync(`gh issue comment ${issueNumber} --repo ${repo} --body ${JSON.stringify(body)}`, { time

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/community-autopilot.js

medium Untrusted input concatenated into a command sink (dist/community-manager.js)MTC-SRC-009

In the server's implementation (`dist/community-manager.js:80`): A shell/process command assembled from concatenated or interpolated values is command injection when any part is attacker-influenced — the OWASP canonical RCE flow. Verify what reaches the interpolated value. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: dy) { try { execSync(`gh issue comment ${issueNumber} --repo ${repo} --body ${JSON.stringify(body)}`, { time

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/community-manager.js

medium Untrusted input concatenated into a command sink (dist/discovery.js)MTC-SRC-009

In the server's implementation (`dist/discovery.js:258`): A shell/process command assembled from concatenated or interpolated values is command injection when any part is attacker-influenced — the OWASP canonical RCE flow. Verify what reaches the interpolated value. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: alse; try { execSync(`gh issue comment ${match[2]} --repo ${match[1]} --body "${comment.replace(/"/g, '\\"')

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/discovery.js

medium Untrusted input concatenated into a command sink (dist/evolution.js)MTC-SRC-009

In the server's implementation (`dist/evolution.js:147`): A shell/process command assembled from concatenated or interpolated values is command injection when any part is attacker-influenced — the OWASP canonical RCE flow. Verify what reaches the interpolated value. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: const result = execSync(`grep -rn "TODO\\|FIXME\\|HACK\\|XXX" "${srcDir}" --include="*.ts" | head -20`, { encod

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/evolution.js

medium Untrusted input concatenated into a command sink (dist/github-release.js)MTC-SRC-009

In the server's implementation (`dist/github-release.js:34`): A shell/process command assembled from concatenated or interpolated values is command injection when any part is attacker-influenced — the OWASP canonical RCE flow. Verify what reaches the interpolated value. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: try { return execSync(`git ${cmd}`, { cwd: process.cwd(), encoding: 'utf-8',

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/github-release.js

medium Untrusted input concatenated into a command sink (dist/hooks.js)MTC-SRC-009

In the server's implementation (`dist/hooks.js:38`): A shell/process command assembled from concatenated or interpolated values is command injection when any part is attacker-influenced — the OWASP canonical RCE flow. Verify what reaches the interpolated value. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: const output = execSync(`sh "${hookPath}"`, { encoding: 'utf-8', timeout: 10000,

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/hooks.js

medium Untrusted input concatenated into a command sink (dist/ide/lsp-bridge.js)MTC-SRC-009

In the server's implementation (`dist/ide/lsp-bridge.js:36`): A shell/process command assembled from concatenated or interpolated values is command injection when any part is attacker-influenced — the OWASP canonical RCE flow. Verify what reaches the interpolated value. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: hild_process'); execSync(`which ${serverCmd[0]}`, { stdio: 'ignore', timeout: 3000 }); return serverCmd;

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/ide/lsp-bridge.js

medium Untrusted input concatenated into a command sink (dist/integrations/ableton-osc-installer.js)MTC-SRC-009

In the server's implementation (`dist/integrations/ableton-osc-installer.js:123`): A shell/process command assembled from concatenated or interpolated values is command injection when any part is attacker-influenced — the OWASP canonical RCE flow. Verify what reaches the interpolated value. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: } try { execSync(`git clone --depth 1 ${REPO_URL} "${tmpDir}"`, { stdio: 'pipe' }); log(' Clone

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/integrations/ableton-osc-installer.js

medium Tool "kbot_edit_file" can modify the filesystemMTC-CAP-002

Tool "kbot_edit_file" can write, overwrite or delete files (keyword "edit_file" in tool name). Verify it is scoped to a safe directory.

Fix: Constrain file operations to an explicit, non-sensitive root; reject path traversal.

Location: tool kbot_edit_file

medium Tool "kbot_write_file" can modify the filesystemMTC-CAP-002

Tool "kbot_write_file" can write, overwrite or delete files (keyword "write_file" in tool name). Verify it is scoped to a safe directory.

Fix: Constrain file operations to an explicit, non-sensitive root; reject path traversal.

Location: tool kbot_write_file

medium Unconstrained command parameter "command" on "kbot_bash"MTC-CAP-006

Tool "kbot_bash" takes a command-shaped parameter "command" with no enum/pattern constraint. Free-form, model- or attacker-controlled arguments reaching a shell is the command-injection precondition.

Fix: Constrain the parameter (enum/pattern), or build the command from a fixed template with escaped args.

Location: tool kbot_bash · inputSchema.properties.command

medium Dynamic module load from a non-literal (dist/inference.js)MTC-SRC-005

In the server's implementation (`dist/inference.js:17`): Loading a module chosen at runtime (from a variable) can pull in and run attacker-influenced code paths. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: { return await import(LLAMA_MODULE); } catch { throw new Error('node-llama-cpp is not installed

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/inference.js

medium Dynamic module load from a non-literal (dist/plugin-sdk.js)MTC-SRC-005

In the server's implementation (`dist/plugin-sdk.js:149`): Loading a module chosen at runtime (from a variable) can pull in and run attacker-influenced code paths. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: ; const mod = await import(fileUrl); const plugin = mod.default || mod; // Validate required fields if (

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/plugin-sdk.js

medium Dynamic module load from a non-literal (dist/plugins.js)MTC-SRC-005

In the server's implementation (`dist/plugins.js:174`): Loading a module chosen at runtime (from a variable) can pull in and run attacker-influenced code paths. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: const mod = await import(fileUrl); const definitions = []; if (mod.default) {

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/plugins.js

medium Dynamic module load from a non-literal (dist/tools/index.js)MTC-SRC-005

In the server's implementation (`dist/tools/index.js:286`): Loading a module chosen at runtime (from a variable) can pull in and run attacker-influenced code paths. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: const imported = await import(mod.path); const registerFn = imported[mod.registerFn]; if (typeof regist

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/tools/index.js

low Mutating tool "kbot_edit_file" declares no destructiveHintMTC-CAP-005

Tool "kbot_edit_file" can mutate/egress but declares no destructiveHint. Clients that don't default to spec-safe behavior may not prompt before running it.

Fix: Declare accurate annotations, and gate destructive tools on user confirmation regardless.

Location: tool kbot_edit_file

low Mutating tool "kbot_write_file" declares no destructiveHintMTC-CAP-005

Tool "kbot_write_file" can mutate/egress but declares no destructiveHint. Clients that don't default to spec-safe behavior may not prompt before running it.

Fix: Declare accurate annotations, and gate destructive tools on user confirmation regardless.

Location: tool kbot_write_file

low Mutating tool "kbot_bash" declares no destructiveHintMTC-CAP-005

Tool "kbot_bash" can mutate/egress but declares no destructiveHint. Clients that don't default to spec-safe behavior may not prompt before running it.

Fix: Declare accurate annotations, and gate destructive tools on user confirmation regardless.

Location: tool kbot_bash

low Shell command embedded in tool metadataMTC-INJ-CMD-1

Shell command embedded in tool metadata detected in the description of tool "kbot_bash". Instruction-like content in tool metadata is executed by the model, not the human, and is the primary tool-poisoning vector.

Evidence: rm -rf

Fix: Tool descriptions should describe behavior, not instruct the assistant. Treat imperative / secrecy / sequencing language in metadata as hostile.

Location: tool kbot_bash · description

low Unconstrained path parameter "path" on "kbot_edit_file"MTC-CAP-008

Tool "kbot_edit_file" takes a path parameter "path" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.

Fix: Resolve and verify the path stays within an allowed root; reject traversal sequences.

Location: tool kbot_edit_file · inputSchema.properties.path

low Unconstrained path parameter "path" on "kbot_write_file"MTC-CAP-008

Tool "kbot_write_file" takes a path parameter "path" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.

Fix: Resolve and verify the path stays within an allowed root; reject traversal sequences.

Location: tool kbot_write_file · inputSchema.properties.path

low Unconstrained path parameter "path" on "kbot_read_file"MTC-CAP-008

Tool "kbot_read_file" takes a path parameter "path" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.

Fix: Resolve and verify the path stays within an allowed root; reject traversal sequences.

Location: tool kbot_read_file · inputSchema.properties.path

Tools 27

Each tool and what it can reach — statically extracted from the published source.

  • kbot_bashreads sensitive dataruns code / shell
  • kbot_edit_filereads sensitive datawrites files
  • kbot_write_filereads sensitive datawrites files
  • kbot_chatreads sensitive data
  • kbot_githubingests untrusted input
  • kbot_grepingests untrusted input
  • kbot_read_filereads sensitive data
  • Available Agentsno sensitive capability
  • codeno sensitive capability
  • errorno sensitive capability
Show 17 more tools ↓
  • explain_codeno sensitive capability
  • fix_errorno sensitive capability
  • generate_testsno sensitive capability
  • kbot_agentno sensitive capability
  • kbot_diagnosticsno sensitive capability
  • kbot_globno sensitive capability
  • kbot_planno sensitive capability
  • kbot_rememberno sensitive capability
  • kbot_replyno sensitive capability
  • kbot_searchno sensitive capability
  • kbot_statusno sensitive capability
  • kbot_toolsno sensitive capability
  • Persistent Memoryno sensitive capability
  • Project Contextno sensitive capability
  • refactorno sensitive capability
  • review_codeno sensitive capability
  • Saved Sessionsno sensitive capability

Toxic flows 2

Cross-tool combinations that form a data-exfiltration primitive (untrusted input → sensitive source → external sink).

What this scan could not see

Versions 2

Scan history per published version. The engine is deterministic — the same version always yields the same score, so a changed score means the package itself changed.

VersionScoreFindingsEngineScanned
v4.5.1 latest C 72/100 57 1.13.0 2026-09-07
v4.5.0 C 72/100 57 1.12.1 2026-08-14

Embed this score

Show this server's live Trust Score in your README, docs or website. The badge is served straight from the registry and updates automatically after every rescan — no API key needed. It links back to this page, so anyone who sees the grade can also read the findings behind it instead of taking a number on faith.

MCP Trust Score: C · 72/100
Markdown (GitHub README)
[![MCP Trust Score](https://mcptrustchecker.com/registry/kernel-chat-kbot/badge.svg)](https://mcptrustchecker.com/registry/kernel-chat-kbot)
HTML
<a href="https://mcptrustchecker.com/registry/kernel-chat-kbot"><img src="https://mcptrustchecker.com/registry/kernel-chat-kbot/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/kernel-chat-kbot/badge.json via https://img.shields.io/endpoint?url=…

Verify this score yourself

The score above is reproducible: the same package version always yields the same result. Run it locally or over the free API — no account, no LLM, fully deterministic.

npx mcptrustchecker scan @kernel.chat/kbot --online

Use the free API → How scoring works

More in Security & Testing