web-scraping-automation
github.com/aaaaqwq/claude-code-skills
Scanned Thu, 28 May 2026 17:28:30 GMT
Scan ID crawl-hn8nizu4c5tghhf7yv4q7047 · 1ms
B
SCORE 75 / 100
Verdict: Safe to install

2 high-severity findings.

This skill triggers the shell-injection-template rule plus 4 other issues listed below.

0 critical2 high3 medium7 rules passed

Why grade B?

score · 75 / 100

The current grade reflects 2 high-severity findings (any HIGH → B).

0 CRIT2 HIGH3 MED0 LOW
To reach a higher grade
  • A
    Reach Atarget score 95

    Resolve all 2 HIGH + 1 of 3 MED (cap is 2).

Thresholds are documented at /docs/grading. Source-of-truth is the grade() function in @skillox/scanner.

Findings · ordered by severity

high
Shell-injection vector: Python subprocess with f-string + shell=True candidate
The skill constructs a shell command by interpolating into a string passed to an exec-family function (`Python subprocess with f-string + shell=True candidate`). If the interpolated value comes from agent context or user input, this is direct command injection. Use parameterized APIs (`spawn` with an arg-array, `subprocess.run([...])` without `shell=True`).
rule: shell-injection-templateline: 44CWE-78
42 # ⚠️ 强制清理残留进程
43 import subprocess
44 subprocess.run(['pkill', '-f', 'chrome'], capture_output=True)Python subprocess with f-string + shell=True candidate — use a parameterized API instead
45
46# Selenium 示例
high
Shell-injection vector: Python subprocess with f-string + shell=True candidate
The skill constructs a shell command by interpolating into a string passed to an exec-family function (`Python subprocess with f-string + shell=True candidate`). If the interpolated value comes from agent context or user input, this is direct command injection. Use parameterized APIs (`spawn` with an arg-array, `subprocess.run([...])` without `shell=True`).
rule: shell-injection-templateline: 57CWE-78
55 # ⚠️ 确保清理
56 import subprocess
57 subprocess.run(['pkill', '-f', 'chrome'], capture_output=True)Python subprocess with f-string + shell=True candidate — use a parameterized API instead
58```
59
med
Arbitrary subprocess execution detected
The skill spawns subprocesses. Without a capability manifest declaring this, the skill could execute arbitrary commands.
rule: subprocess-executionline: 44CWE-78
42 # ⚠️ 强制清理残留进程
43 import subprocess
44 subprocess.run(['pkill', '-f', 'chrome'], capture_output=True)spawns a subprocess outside declared capabilities
45
46# Selenium 示例
med
Arbitrary subprocess execution detected
The skill spawns subprocesses. Without a capability manifest declaring this, the skill could execute arbitrary commands.
rule: subprocess-executionline: 57CWE-78
55 # ⚠️ 确保清理
56 import subprocess
57 subprocess.run(['pkill', '-f', 'chrome'], capture_output=True)spawns a subprocess outside declared capabilities
58```
59
med
No capability manifest declared
The skill ships without a `manifest.yaml` or `capabilities` block in its frontmatter. Without a manifest, the runtime cannot enforce what this skill is permitted to do.
rule: no-manifest
Scan another →Share
skillox.io/r/crawl-hn8nizu4c5tghhf7yv4q7047