Dangerous exec
- Finding
- Shell command execution detected (child_process).
Security checks across static analysis, malware telemetry, and agentic risk
This skill appears purpose-aligned: it scans a user-specified local image folder and writes a local HTML presentation, with no evidence of network exfiltration or credential use.
This skill is reasonable to install if you want local design-image folders converted into an HTML presentation. Provide only the folder you intend to analyze, choose a safe output filename, and avoid using untrusted custom HTML content.
VirusTotal findings are pending for this skill version.
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
If given the wrong output path, the skill could replace a local file with the generated HTML report.
The skill writes an HTML file to a user-provided path and creates the parent directory if needed. This is central to the skill, but users should choose the output path carefully because existing files could be overwritten.
const outputFile = path.resolve(options.outputFile); ... fs.mkdirSync(path.dirname(outputFile), { recursive: true }); ... fs.writeFileSync(outputFile, html, 'utf8');Use a clear, non-sensitive output path such as a new file on the Desktop, and avoid pointing it at existing important files.
Running the optional test script from unusual paths containing shell metacharacters could behave unexpectedly.
The optional test script executes a local Node command through the shell. The arguments are mostly hardcoded test paths, so this is not evidence of malicious behavior, but shell-joined arguments are less safe than spawn/execFile with an argument array.
const result = execSync(args.join(' '), { encoding: 'utf8' });Normal users do not need to run the test harness. If maintaining the skill, replace execSync(args.join(' ')) with execFileSync or spawnSync using an argument array.
If untrusted HTML is supplied as a custom section, it may affect the generated page when opened in a browser.
The skill explicitly allows custom raw HTML content in generated reports. This is a disclosed feature, but it means content should come from trusted users or trusted sources.
每章的 `content` 字段是HTML字符串,支持所有HTML标签和内联样式。
Only use trusted custom section content and trusted local image folders; avoid pasting third-party HTML or script-like content into sections.
The skill may fail to run on systems without Node.js even though the registry metadata does not list it as required.
The package declares a Node.js runtime requirement, while the registry requirements list no required binaries. This is an under-declared runtime dependency rather than malicious behavior.
"engines": { "node": ">=14.0.0" }Confirm Node.js is installed before using the skill, or ask the publisher to declare Node.js as a required binary.