ssh
github.com/openhands/skills
Scanned Thu, 28 May 2026 17:30:30 GMT
Scan ID crawl-qwvdpvyizdkvpb7o8yzc6ff6 · 1ms
C
SCORE 55 / 100
Verdict: Proceed with caution
10 high-severity findings.
This skill reads protected filesystem locations plus 10 other issues listed below.
0 critical10 high1 medium1 rules passed
Why grade C?
score · 55 / 100The current grade reflects 10 high-severity findings (3+ HIGHs → C).
0 CRIT10 HIGH1 MED0 LOW
To reach a higher grade
- BReach Btarget score 75
Resolve 8 of 10 HIGH (cap is 2).
- AReach Atarget score 95
Resolve all 10 HIGH.
Thresholds are documented at /docs/grading. Source-of-truth is the grade() function in @skillox/scanner.
Findings · ordered by severity
highSensitive filesystem path referencedThe skill references a path (`~\/\.ssh\/`) 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 (`~\/\.ssh\/`) that contains credentials or system secrets. Reading this from an unsandboxed skill is a credential-exfiltration vector.
39Generate a new SSH key pair:
40```bash
41ssh-keygen -t ed25519 -f ~/.ssh/key_name -C "comment" -N ""← sensitive path — credential-exfiltration vector
42```
43
highSensitive filesystem path referencedThe skill references a path (`~\/\.ssh\/`) 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 (`~\/\.ssh\/`) that contains credentials or system secrets. Reading this from an unsandboxed skill is a credential-exfiltration vector.
44Copy the public key to the remote server:
45```bash
46ssh-copy-id -i ~/.ssh/key_name.pub username@hostname← sensitive path — credential-exfiltration vector
47```
48
highSensitive filesystem path referencedThe skill references a path (`~\/\.ssh\/`) 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 (`~\/\.ssh\/`) that contains credentials or system secrets. Reading this from an unsandboxed skill is a credential-exfiltration vector.
49Connect using the private key:
50```bash
51ssh -i ~/.ssh/key_name username@hostname← sensitive path — credential-exfiltration vector
52```
53
highSensitive filesystem path referencedThe skill references a path (`~\/\.ssh\/`) 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 (`~\/\.ssh\/`) that contains credentials or system secrets. Reading this from an unsandboxed skill is a credential-exfiltration vector.
57```bash
58mkdir -p ~/.ssh
59cat > ~/.ssh/config << 'EOF'← sensitive path — credential-exfiltration vector
60Host alias
61 HostName hostname_or_ip
highSensitive filesystem path referencedThe skill references a path (`~\/\.ssh\/`) 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 (`~\/\.ssh\/`) that contains credentials or system secrets. Reading this from an unsandboxed skill is a credential-exfiltration vector.
61 HostName hostname_or_ip
62 User username
63 IdentityFile ~/.ssh/key_name← sensitive path — credential-exfiltration vector
64 Port 22
65 ServerAliveInterval 60
highSensitive filesystem path referencedThe skill references a path (`~\/\.ssh\/`) 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 (`~\/\.ssh\/`) that contains credentials or system secrets. Reading this from an unsandboxed skill is a credential-exfiltration vector.
65 ServerAliveInterval 60
66EOF
67chmod 600 ~/.ssh/config← sensitive path — credential-exfiltration vector
68```
69
highSensitive filesystem path referencedThe skill references a path (`~\/\.ssh\/`) 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 (`~\/\.ssh\/`) that contains credentials or system secrets. Reading this from an unsandboxed skill is a credential-exfiltration vector.
109Add a key to the agent:
110```bash
111ssh-add ~/.ssh/key_name← sensitive path — credential-exfiltration vector
112```
113
highSensitive filesystem path referencedThe skill references a path (`~\/\.ssh\/`) 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 (`~\/\.ssh\/`) that contains credentials or system secrets. Reading this from an unsandboxed skill is a credential-exfiltration vector.
117- Verify SSH port is open: `nc -zv hostname 22`
118- Debug connection issues: `ssh -vvv username@hostname`
119- Check permissions: SSH private keys should have 600 permissions (`chmod 600 ~/.ssh/key_name`)← sensitive path — credential-exfiltration vector
120- Verify known_hosts: If host key changed, remove the old entry with `ssh-keygen -R hostname`
121
highSensitive filesystem path referencedThe skill references a path (`~\/\.ssh\/`) 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 (`~\/\.ssh\/`) that contains credentials or system secrets. Reading this from an unsandboxed skill is a credential-exfiltration vector.
128```bash
129# Set correct permissions for private keys
130chmod 600 ~/.ssh/id_ed25519← sensitive path — credential-exfiltration vector
131# Set correct permissions for public keys
132chmod 644 ~/.ssh/id_ed25519.pub
highSensitive filesystem path referencedThe skill references a path (`~\/\.ssh\/`) 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 (`~\/\.ssh\/`) that contains credentials or system secrets. Reading this from an unsandboxed skill is a credential-exfiltration vector.
130chmod 600 ~/.ssh/id_ed25519
131# Set correct permissions for public keys
132chmod 644 ~/.ssh/id_ed25519.pub← sensitive path — credential-exfiltration vector
133# Set correct permissions for SSH directory
134chmod 700 ~/.ssh
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/r/crawl-qwvdpvyizdkvpb7o8yzc6ff6