SkillTotal

Is Claude Blog safe?

No malicious indicators - review capabilities before installing
Notable — review in context (capabilities are not malware):
  • Python shell/command execution
  • MCP server launches a host command
  • Python filesystem write/delete

claude-blog is an AI python_package analyzed by SkillTotal's deterministic static scanner. The scan found no malicious indicators, though 8 risky constructs are reported for review. It can: delegated authentication, filesystem read, filesystem write, mcp tools detected, network egress and shell execution — capabilities are what the code can do, not a verdict on intent. Risk score 10/100 (low).

claude-blog 2.1.1

python_package · https://github.com/AgriciDaniel/claude-blog
LOW
10
/ 100 risk score
Snapshot · scanned Aug 5, 2026 · claude-blog@2.1.1 · engine 0.38.1 / ruleset 42

Automated static-analysis result. It can contain false positives and false negatives, and is not a claim about the intent of Claude Blog's authors. Report a false positive.

Capabilities — what this component can do (not a risk score):
delegated authenticationfilesystem readfilesystem writemcp tools detectednetwork egressshell execution

Behavioral traits

How this component maps to the CSA agentic threat model. Descriptive — it never affects the risk score.

Tool surface
Tool Usage
Execution authority
Tool Access Control / Direct Tool Access
Filesystem reach
Tool Execution Context
Network egress
Interaction & Communication / Direct Communication
Network exposure
Interaction & Communication
Delegated authentication
Tool Execution Context / User Delegated Credentials

Findings (8)

HIGHMCP server launches a host commandST-MCP-SERVER-EXEC

An MCP server entry launches a command on your host.

"command": "npx",

Why it matters: Trusting the manifest means running that binary — verify what it is and where it comes from.

Fix: Verify the launched command and its source before trusting this MCP server configuration.

HIGHPython shell/command executionST-SHELL-PY

The component can run operating-system commands or spawn processes.

result = subprocess.run(
        ["git", "diff", "--cached", "--name-only"],
        check=False,
        capture_output=True,
        text=True,
    )
result = subprocess.run(
            ["gh", "auth", "token"], capture_output=True, text=True
        )
return subprocess.call([PY, str(REPO / "scripts" / script), *args], cwd=REPO)
return subprocess.run([PY, str(REPO / "scripts" / script), *args], cwd=REPO, text=True, capture_output=True, check=False)
return subprocess.run(
            command,
            cwd=REPO,
            text=True,
            capture_output=True,
            timeout=EXEC_TIMEOUT_SECONDS,
            check=False,
        )
subprocess.run([PY, *args], cwd=REPO, check=True)
proc = subprocess.run(["git", "diff", "--quiet", "--", rel], cwd=REPO, check=False)
proc = subprocess.run(
        [sys.executable, str(audit), "--require", "market-ready", "--json"],
        cwd=REPO,
        text=True,
        capture_output=True,
        check=False,
    )
proc = subprocess.run(["git", "ls-files", "-z", "--cached"], cwd=REPO, capture_output=True, check=False)
proc = subprocess.run(args, cwd=REPO, capture_output=True, check=False)
proc = subprocess.run(["git", "ls-files", "-z", "--others", "--exclude-standard"], cwd=REPO, capture_output=True, check=False)
proc = subprocess.run(["git", "rev-parse", "HEAD"], cwd=REPO, capture_output=True, text=True, check=False)
result = subprocess.run(
        ["git", "diff", "--cached", "--name-only"],
        check=False,
        capture_output=True,
        text=True,
    )
result = subprocess.run(
            ["gh", "auth", "token"], capture_output=True, text=True
        )
subprocess.run(
            ["ffmpeg", "-y", "-i", wav_path, "-codec:a", "libmp3lame",
             "-b:a", "192k", "-ar", "24000", "-ac", "1", str(tmp_path)],
            check=True, capture_output=True,
        )
result = subprocess.run([sys.executable, str(setup_script)])
subprocess.run(
                [str(self.venv_pip)] + install_args,
                check=True, capture_output=True, text=True,
            )
result = subprocess.run(["gh", "auth", "token"], capture_output=True, text=True, timeout=5)
result = subprocess.run([sys.executable, str(setup_script)])

Why it matters: Powerful and often legitimate — confirm the commands aren't built from untrusted input.

Fix: Confirm the command and its arguments are fully controlled and not derived from untrusted input; avoid shell=True.

MEDIUMServer bound to all network interfacesST-EXPOSE-BIND

A server is bound to all network interfaces (0.0.0.0), not just your own machine.

Why it matters: Without authentication, other hosts on the network can reach it.

Fix: Bind to 127.0.0.1 for local-only use, or require authentication and restrict access if remote exposure is intended.

MEDIUMPython filesystem readST-FS-PY-READ

The component reads files from disk.

raw = counter_path.read_text(encoding="utf-8").strip()
data = json.loads(cfg_path.read_text(encoding="utf-8"))
old_lock = lock_path.read_text(encoding="utf-8")
text = path.read_text(encoding="utf-8", errors="replace")
text = path.read_text(encoding="utf-8", errors="replace")
text = path.read_text(encoding="utf-8", errors="replace")
text = path.read_text(encoding="utf-8", errors="replace")
data = json.loads(path.read_text(encoding="utf-8"))
return path.read_text(encoding="utf-8", errors="replace")
data = json.loads(marker.read_text(encoding="utf-8"))
links += len(re.findall(r"!?\[\[([^\]]+)\]\]", path.read_text(encoding="utf-8", errors="replace")))
data = json.loads(manifest_path.read_text(encoding="utf-8"))
text = hot.read_text(encoding="utf-8") if hot.exists() else ""
data = json.loads(Path(path).read_text(encoding="utf-8"))
schema = json.loads(SCHEMA_PATH.read_text(encoding="utf-8"))
raw_bytes = source.read_bytes()
data = json.loads(Path(path).read_text(encoding="utf-8"))
schema = json.loads(SCHEMA_PATH.read_text(encoding="utf-8"))

Why it matters: Usually legitimate, but worth confirming it can't be steered into reading sensitive files.

Fix: Confirm which files are read and that paths cannot be influenced by untrusted input to reach sensitive locations.

MEDIUMPython filesystem write/deleteST-FS-PY-WRITE

The component writes or deletes files on disk.

(draft_dir / "capabilities.json").write_text(json.dumps(capabilities, indent=2), encoding="utf-8")
(draft / "preflight-report.json").write_text(json.dumps(report, indent=2), encoding="utf-8")
(out_dir / "hero-credit.txt").write_text(
        f"AI-generated via {used_model}. No attribution required.\nPrompt: {prompt}\n",
        encoding="utf-8",
    )
(out_dir / "hero-credit.txt").write_text(credit, encoding="utf-8")
(out_dir / "hero-credit.txt").write_text(credit, encoding="utf-8")
(out_dir / "hero-credit.txt").write_text(credit, encoding="utf-8")
(out_dir / "hero-credit.txt").write_text(
        f'"{title}" by {creator}\nLicense: {license_name}\nSource: {source}\nURL: {src_url}\n',
        encoding="utf-8",
    )
analyze_blog._safe_write_text(args.output, rendered)

Why it matters: Usually legitimate, but worth confirming the paths can't be controlled by untrusted input.

Fix: Confirm which files are written/deleted and that paths cannot be influenced by untrusted input.

MEDIUMPython network egressST-NET-PY

The component makes outbound network requests.

req_path = Path(urllib.request.url2pathname(parsed.path)).resolve()
req_path = Path(urllib.request.url2pathname(parsed.path)).resolve()
_PREFLIGHT_NO_REDIRECT_OPENER = urllib.request.build_opener(_PreflightNoRedirectHandler())
req = urllib.request.Request(url, method="HEAD", headers={"User-Agent": USER_AGENT})
path = Path(urllib.request.url2pathname(parsed.path)).resolve()

Why it matters: Usually legitimate, but confirm the destinations are expected and no sensitive data leaves.

Fix: Confirm the destination hosts are expected and that no sensitive data is sent off-host.

LOWDelegated authentication (OAuth 2.0 / OIDC)ST-AUTH-DELEGATED

An OAuth 2.0 / OpenID Connect delegated-authentication flow was detected (authorization-code / refresh-token / token-exchange grant, an OIDC authorize/discovery endpoint or id_token, or a delegation library). Tools authenticate with the end user's delegated, scoped credentials rather than a long-lived embedded service credential. (2 occurrence(s) shown as evidence).

Fix: Delegated auth is a lower-blast-radius execution context than an embedded static credential. Confirm the requested scopes are minimal and that tokens are never logged or forwarded off-host.

LOWMCP tool surface detectedST-MCP-DETECTED

An MCP tool surface (manifest or tool definitions) was found.

Why it matters: Just context — review which tools it offers and their permissions.

Fix: Review the declared MCP tools and their permissions.

Check your own component

Run the same evidence-backed scan on any MCP server, agent skill, or package.

Scan your own component

How we determine this: deterministic static analysis (regex + AST), evidence-anchored, no code execution. Methodology →