
Osint Recon
- 159 installs
- 341 repo stars
- Updated May 27, 2026
- briiirussell/cybersecurity-skills
OSINT Recon is a Claude skill that gathers and correlates open-source intelligence from public sources for authorized investigations, threat intelligence, and attack-surface assessment.
About
This skill systematically gathers, analyzes, and correlates publicly available information from open sources for authorized investigations, threat intelligence, and attack-surface assessment. A developer or analyst uses it to map a target's domains, infrastructure, organization, emails, documents, and threat-feed exposure using only public data. It enforces an ethics check and rates each finding's confidence by corroboration.
- Gathers and correlates open-source intelligence from public sources for authorized investigations
- Covers domain/infra, organization, email/username, document, and threat-intel OSINT
- Gates on an ethics check and refuses doxing, stalking, or unauthorized surveillance
Osint Recon by the numbers
- 159 all-time installs (skills.sh)
- Ranked #871 of 2,203 Security skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
osint-recon capabilities & compatibility
- Capabilities
- recon · security audit
- Use cases
- research · security audit · web search
What osint-recon says it does
Systematically gather, analyze, and correlate publicly available information from open sources.
Refuse requests that target individuals for harassment or aggregate private information beyond what the objective requires.
npx skills add https://github.com/briiirussell/cybersecurity-skills --skill osint-reconAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 159 |
|---|---|
| repo stars | ★ 341 |
| Last updated | May 27, 2026 |
| Repository | briiirussell/cybersecurity-skills ↗ |
What it does
Gather and correlate open-source intelligence on an authorized target's public footprint for threat intel or assessment.
Who is it for?
Analysts mapping a target's public digital footprint for threat intel or an authorized assessment.
Skip if: Active target probing like port scanning or fingerprinting (use recon) and any harassment or doxing.
When should I use this skill?
The user mentions OSINT, open source intelligence, digital footprint, threat intelligence, investigate a domain, or public records.
What you get
An OSINT report with corroborated findings, correlations, intelligence gaps, and confidence ratings.
- OSINT report with findings, correlations, gaps, and confidence ratings
By the numbers
- 3-point ethics check before collection
- 5 OSINT collection categories (domain, org, email/username, document, threat-intel)
Files
OSINT Recon — Open Source Intelligence Gathering
Systematically gather, analyze, and correlate publicly available information from open sources.
Cross-references: recon for the active/passive target-mapping pass against an authorized system (DNS, ports, fingerprinting) — osint-recon focuses on people, organizations, leaked data, and historical artifacts; the two pair naturally. breach-patterns for ingesting public breach intelligence into your own preemptive assessments. incident-triage if OSINT surfaces evidence the user is already compromised.
Ethics Check
Before proceeding, confirm: 1. The investigation has a legitimate purpose (threat intel, authorized assessment, CTF, defensive research) 2. You are only gathering publicly available information 3. Results will not be used for harassment, stalking, or doxing
Refuse requests that target individuals for harassment or aggregate private information beyond what the objective requires.
Collection Techniques
Domain and Infrastructure OSINT
Run these to map a target's infrastructure:
whois <domain> # Registration data
dig any <domain> # DNS recordsQuery certificate transparency for subdomains:
curl -s "https://crt.sh/?q=%25.<domain>&output=json" | jq -r '.[].name_value' | sort -uAdditional sources: SecurityTrails, DNSDumpster, ipinfo.io, bgp.he.net, Wayback Machine, Shodan, Censys.
Organization OSINT
- Company registrations, filings, SEC records (public companies)
- LinkedIn company page — employee count, roles, tech stack hints
- Job postings — reveal internal tools, tech stack, pain points
- Press releases and news articles
- GitHub/GitLab organization pages and public repositories
- Patent filings
Email and Username OSINT
- Email format patterns (e.g., first.last@domain.com)
- HaveIBeenPwned — check for breach exposure (check only, never distribute breach data)
- PGP key servers for email discovery
- Gravatar lookups for email-to-identity correlation
Document and File OSINT
- Extract metadata from public documents:
exiftool <file>reveals author, software, GPS, timestamps - Google dorking:
site:<domain> filetype:pdf,site:<domain> filetype:xlsx - Pastebin and code paste site monitoring
- Public cloud storage enumeration (S3 buckets, GCS buckets with predictable names)
Threat Intelligence
- CVE databases for the target's technology stack
- Exploit databases (exploit-db, searchsploit)
- Threat feeds and IOC databases (VirusTotal, MalwareBazaar, OTX)
- Abuse contact databases
Analysis
- Cross-reference findings across multiple sources
- Validate information with at least two independent sources
- Build a timeline of events when investigating incidents
- Map relationships between entities (people, domains, IPs, organizations)
- Rate confidence: High (multiple corroborating sources), Medium (single reliable source), Low (unverified)
Output Format
# OSINT Report
## Objective: [what we're investigating and why]
## Target: [entity/domain/person]
## Date: [date]
### Collection Summary
| Source | Findings | Confidence |
|--------|----------|------------|
### Key Findings
#### Finding 1: [Title]
- **Source:** [where this was found]
- **Details:** [what was discovered]
- **Confidence:** High / Medium / Low
- **Relevance:** [why this matters to the objective]
### Correlations
[How different findings connect to each other]
### Intelligence Gaps
[What we couldn't find or verify]
### Recommendations
[Next steps and actionable intelligence]Boundaries
- Only use publicly available sources
- Never attempt to access private or authenticated systems
- Do not aggregate PII beyond what is necessary for the stated objective
- Attribute all findings to their source
- Rate confidence levels honestly — do not overstate certainty
- If a finding could cause harm if misused, note the sensitivity
- Refuse requests for doxing, stalking, or unauthorized surveillance
References
- OSINT Framework (osintframework.com)
- SANS OSINT resource list
- Bellingcat Online Investigation Toolkit
Related skills
FAQ
What sources does osint-recon use?
Only publicly available ones: whois and DNS, crt.sh certificate transparency, SecurityTrails, Shodan, Censys, LinkedIn and job postings, HaveIBeenPwned check-only, exiftool metadata, and threat feeds like VirusTotal and OTX.
How does it rate findings?
It rates confidence as High for multiple corroborating sources, Medium for a single reliable source, and Low for unverified, and validates with at least two independent sources.