oss-forensics
Facilitates supply chain investigations and forensic analysis of GitHub repositories, enabling evidence recovery and structured reporting.
Install this skill
Security score
The oss-forensics skill was audited on May 17, 2026 and we found 29 security issues across 3 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
Curl to non-GitHub URL
| 161 | curl -s "https://api.github.com/repos/OWNER/REPO/commits?per_page=100" > api_commits.json |
Curl to non-GitHub URL
| 164 | curl -s "https://api.github.com/repos/OWNER/REPO/pulls?state=all&per_page=100" > api_prs.json |
Curl to non-GitHub URL
| 167 | curl -s "https://api.github.com/repos/OWNER/REPO/issues?state=all&per_page=100" > api_issues.json |
Curl to non-GitHub URL
| 170 | curl -s "https://api.github.com/repos/OWNER/REPO/contributors" > api_contributors.json |
Curl to non-GitHub URL
| 173 | curl -s "https://api.github.com/repos/OWNER/REPO/events?per_page=100" > api_events.json |
Curl to non-GitHub URL
| 176 | curl -s "https://api.github.com/repos/OWNER/REPO/git/commits/SHA" > commit_detail.json |
Curl to non-GitHub URL
| 179 | curl -s "https://api.github.com/repos/OWNER/REPO/releases?per_page=100" > api_releases.json |
Curl to non-GitHub URL
| 182 | curl -s "https://api.github.com/repos/OWNER/REPO/commits/SHA" | jq .sha |
Curl to non-GitHub URL
| 203 | curl -s "https://web.archive.org/cdx/search/cdx?url=github.com/OWNER/REPO&output=json&limit=100&from=YYYYMMDD&to=YYYYMMDD" > wayback_main.json |
Curl to non-GitHub URL
| 206 | curl -s "https://web.archive.org/cdx/search/cdx?url=github.com/OWNER/REPO/issues/NUM&output=json&limit=50" > wayback_issue_NUM.json |
Curl to non-GitHub URL
| 209 | curl -s "https://web.archive.org/cdx/search/cdx?url=github.com/OWNER/REPO/pull/NUM&output=json&limit=50" > wayback_pr_NUM.json |
Curl to non-GitHub URL
| 216 | curl -s "https://web.archive.org/cdx/search/cdx?url=github.com/OWNER/REPO/releases/tag/*&output=json" > wayback_tags.json |
Curl to non-GitHub URL
| 219 | curl -s "https://web.archive.org/cdx/search/cdx?url=github.com/OWNER/REPO/wiki/*&output=json" > wayback_wiki.json |
Access to hidden dotfiles in home directory
| 62 | > resolve `SKILL_DIR` to the actual path — e.g. `~/.hermes/skills/security/oss-forensics/` |
External URL reference
| 161 | curl -s "https://api.github.com/repos/OWNER/REPO/commits?per_page=100" > api_commits.json |
External URL reference
| 164 | curl -s "https://api.github.com/repos/OWNER/REPO/pulls?state=all&per_page=100" > api_prs.json |
External URL reference
| 167 | curl -s "https://api.github.com/repos/OWNER/REPO/issues?state=all&per_page=100" > api_issues.json |
External URL reference
| 170 | curl -s "https://api.github.com/repos/OWNER/REPO/contributors" > api_contributors.json |
External URL reference
| 173 | curl -s "https://api.github.com/repos/OWNER/REPO/events?per_page=100" > api_events.json |
External URL reference
| 176 | curl -s "https://api.github.com/repos/OWNER/REPO/git/commits/SHA" > commit_detail.json |
External URL reference
| 179 | curl -s "https://api.github.com/repos/OWNER/REPO/releases?per_page=100" > api_releases.json |
External URL reference
| 182 | curl -s "https://api.github.com/repos/OWNER/REPO/commits/SHA" | jq .sha |
External URL reference
| 203 | curl -s "https://web.archive.org/cdx/search/cdx?url=github.com/OWNER/REPO&output=json&limit=100&from=YYYYMMDD&to=YYYYMMDD" > wayback_main.json |
External URL reference
| 206 | curl -s "https://web.archive.org/cdx/search/cdx?url=github.com/OWNER/REPO/issues/NUM&output=json&limit=50" > wayback_issue_NUM.json |
External URL reference
| 209 | curl -s "https://web.archive.org/cdx/search/cdx?url=github.com/OWNER/REPO/pull/NUM&output=json&limit=50" > wayback_pr_NUM.json |
External URL reference
| 212 | # Use the Wayback Machine URL: https://web.archive.org/web/TIMESTAMP/ORIGINAL_URL |
External URL reference
| 213 | # Example: https://web.archive.org/web/20240101000000*/github.com/OWNER/REPO |
External URL reference
| 216 | curl -s "https://web.archive.org/cdx/search/cdx?url=github.com/OWNER/REPO/releases/tag/*&output=json" > wayback_tags.json |
External URL reference
| 219 | curl -s "https://web.archive.org/cdx/search/cdx?url=github.com/OWNER/REPO/wiki/*&output=json" > wayback_wiki.json |