Skip to main content

emergency-rescue

Provides step-by-step recovery procedures for developers facing critical issues like force pushes, lost commits, and deployment failures.

Install this skill

or
0/100

Security score

The emergency-rescue skill was audited on Feb 9, 2026 and we found 32 security issues across 3 threat categories, including 6 high-severity. Review the findings below before installing.

Categories Tested

AI Security Analysis

SUSPICIOUS70% confidenceFlag For Review

An AI model reviewed this skill's content and provided the following security assessment:

The skill contains several instances of accessing sensitive files and making external calls, which could be legitimate in the context of recovering from developer disasters. However, the presence of multiple file access patterns, especially related to SSH keys and .env files, raises concerns about potential misuse. The external calls to non-GitHub URLs could also indicate data exfiltration risks. A manual review is needed to ensure these actions are safe and intended.

gemini-2.0-flashFeb 11, 2026Adjusted score: 70/100

Security Issues

medium line 647

Curl to non-GitHub URL

SourceSKILL.md
647curl -s -o /dev/null -w "%{http_code}" https://myapp.example.com/health
medium line 720

Curl to non-GitHub URL

SourceSKILL.md
720curl -sI https://mysite.com | head -5
low line 298

Access to hidden dotfiles in home directory

SourceSKILL.md
298rm -rf ~/.npm/_cacache
low line 737

Access to hidden dotfiles in home directory

SourceSKILL.md
737ssh -i ~/.ssh/specific_key user@host # Try explicit key
low line 738

Access to hidden dotfiles in home directory

SourceSKILL.md
738chmod 600 ~/.ssh/id_rsa # Fix key permissions
low line 739

Access to hidden dotfiles in home directory

SourceSKILL.md
739chmod 700 ~/.ssh # Fix .ssh dir permissions
low line 911

Access to hidden dotfiles in home directory

SourceSKILL.md
911# Check Trash first: ~/.Trash/
low line 933

Access to hidden dotfiles in home directory

SourceSKILL.md
933chmod 700 ~/.ssh
low line 934

Access to hidden dotfiles in home directory

SourceSKILL.md
934chmod 600 ~/.ssh/id_rsa
low line 935

Access to hidden dotfiles in home directory

SourceSKILL.md
935chmod 644 ~/.ssh/id_rsa.pub
low line 936

Access to hidden dotfiles in home directory

SourceSKILL.md
936chmod 600 ~/.ssh/authorized_keys
low line 937

Access to hidden dotfiles in home directory

SourceSKILL.md
937chmod 644 ~/.ssh/config
high line 737

Access to SSH directory

SourceSKILL.md
737ssh -i ~/.ssh/specific_key user@host # Try explicit key
high line 738

Access to SSH directory

SourceSKILL.md
738chmod 600 ~/.ssh/id_rsa # Fix key permissions
high line 934

Access to SSH directory

SourceSKILL.md
934chmod 600 ~/.ssh/id_rsa
high line 935

Access to SSH directory

SourceSKILL.md
935chmod 644 ~/.ssh/id_rsa.pub
high line 936

Access to SSH directory

SourceSKILL.md
936chmod 600 ~/.ssh/authorized_keys
high line 937

Access to SSH directory

SourceSKILL.md
937chmod 644 ~/.ssh/config
low line 192

Access to .env file

SourceSKILL.md
192echo ".env" >> .gitignore
medium line 218

Access to .env file

SourceSKILL.md
218### .env file pushed to public repo
low line 221

Access to .env file

SourceSKILL.md
221# STEP 1: Revoke ALL credentials in that .env file. All of them. Now.
low line 224

Access to .env file

SourceSKILL.md
224git rm --cached .env
low line 225

Access to .env file

SourceSKILL.md
225echo ".env" >> .gitignore
low line 227

Access to .env file

SourceSKILL.md
227git commit -m "Remove .env from tracking"
low line 230

Access to .env file

SourceSKILL.md
230git filter-repo --path .env --invert-paths
low line 233

Access to .env file

SourceSKILL.md
233# List every variable that was in the .env:
low line 234

Access to .env file

SourceSKILL.md
234git show HEAD~1:.env 2>/dev/null || git log --all -p -- .env | head -50
low line 240

Access to .env file

SourceSKILL.md
240if git diff --cached --name-only | grep -qE '\.env$|\.env\.local$|credentials'; then
low line 242

Access to .env file

SourceSKILL.md
242echo "Files: $(git diff --cached --name-only | grep -E '\.env|credentials')"
low line 201

External URL reference

SourceSKILL.md
201# Download from https://rtyley.github.io/bfg-repo-cleaner/
low line 647

External URL reference

SourceSKILL.md
647curl -s -o /dev/null -w "%{http_code}" https://myapp.example.com/health
low line 720

External URL reference

SourceSKILL.md
720curl -sI https://mysite.com | head -5
Scanned on Feb 9, 2026
View Security Dashboard
Installation guide →