Is Guizang Social Card Skill safe?
- Python shell/command execution
- Node.js filesystem read
guizang-social-card-skill is an AI npm_package analyzed by SkillTotal's deterministic static scanner. The scan found no malicious indicators, though 2 risky constructs are reported for review. It can: filesystem read and shell execution — capabilities are what the code can do, not a verdict on intent. Risk score 0/100 (low).
guizang-social-card-skill 1.0.0
Automated static-analysis result. It can contain false positives and false negatives, and is not a claim about the intent of Guizang Social Card Skill's authors. Report a false positive.
Behavioral traits
How this component maps to the CSA agentic threat model. Descriptive — it never affects the risk score.
Findings (2)
The component can run operating-system commands or spawn processes.
return subprocess.run(cmd, check=True, text=True, capture_output=True)
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.
The component reads files from disk.
return fs.readFileSync(file, "utf8");
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.
Check your own component
Run the same evidence-backed scan on any MCP server, agent skill, or package.
Scan your own componentHow we determine this: deterministic static analysis (regex + AST), evidence-anchored, no code execution. Methodology →