npx skills add smithery/kiwamizamurai --skill osint
transilienceai/communitytools
osint
Open-source intelligence gathering - company repository enumeration, secret scanning, git history analysis, employee footprint, and code exposure discovery.
Installation
npx skills add transilienceai/communitytools --skill osint
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Provides open source intelligence techniques for CTF challenges.
7.5K installsDeep-dive a social media profile — map the account, its network and content, extract location a…
608 installsStart-here router for any OSINT investigation. Names the workflow and knowledge skills and pick…
603 installsInvestigate an email address — validate it, find linked accounts and breaches, and pivot to the…
601 installsWorkflow to build a sourced profile of a named individual from public sources, pivoting across …
600 installsPassive reconnaissance workflow for a domain, website, or IP — maps DNS, subdomains, infrastruc…
600 installsAlso in this package
Other skills from transilienceai/communitytools · top by installs.
npx skills add transilienceai/communitytools
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Skill metadata
Parsed from SKILL.md frontmatter.
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md1,977 B -
docs
SUMMARY.md169 B
History
- First seen on skills.sh
- First recorded snapshot · 174 installs
SKILL.md
OSINT
Passive and semi-passive intelligence gathering focused on code repositories, developer footprints, and exposed secrets across public platforms.
Phases
1. Organization Discovery
- Enumerate GitHub/GitLab/Bitbucket orgs for target company name variants
- Find employee personal accounts linked to the target org
- Identify archived, forked, and deleted repositories
2. Repository Analysis
- Map all repos: tech stack, languages, CI/CD, dependencies
- Identify internal hostnames, IPs, endpoints, environment names
- Check for
.env, config files, secrets in current code
3. Secret & Credential Scanning
- Scan current code with
gitleaks/trufflehog - Scan full git history (secrets removed in commits are still accessible)
- Search with targeted dorks (see
reference/repository-recon.md)
4. Code Intelligence
- Extract API endpoints, auth patterns, internal service names
- Review Dockerfiles, CI configs, IaC for infra details
- Check dependency files for version-specific CVE candidates
Output
data/reconnaissance/repositories.json # Repo inventory + findings
reports/reconnaissance_report.md # OSINT section appended
raw/osint/ # Raw tool outputs
Tools
trufflehog, gitleaks, gitrob, GitHub/GitLab search, gh CLI, git log
Rules
- Passive discovery first (search APIs, public pages) before any cloning
- Scan git history — deleted secrets are still in commit objects
- Check employee personal accounts, not just org accounts
- Document every discovered credential/secret immediately as a finding
- All output saved to
{OUTPUT_DIR}/per CLAUDE.md directory structure
Reference
reference/repository-recon.md- Dorks, tool commands, secret patterns, workflow