osint-employees

osint-employees is a command for Claude Code from Awarexone/Agentic-Bug-Hunter. It costs 82 tokens per session (848 once invoked), scanned A, original, MIT.

A read-only research command that finds employee names and company email patterns from public sources. It can optionally search for LinkedIn results and create possible username variations.

In plain words
What is it for?
Collecting public emails and names, deriving names from email addresses, expanding username formats and optionally adding search-engine-based LinkedIn results.
Why use it?
Security preparation may require understanding public staff and naming patterns, but those details are scattered across search results and certificate records. This gathers them without trying to log in or test passwords.

Command for Claude Code

Written for Claude Code: a Claude Code command (commands/*.md).

About the project

Agentic Bug Hunter is a terminal toolkit that uses AI to investigate security targets, test for vulnerabilities, validate findings, and write bug bounty reports. It is for ethical hackers submitting findings to platforms such as HackerOne, Bugcrowd, Intigriti, or Immunefi, and can resume previous sessions. The catalogue entries package commands, skills, agents, instructions, hooks, and settings for using the toolkit.

Awarexone/Agentic-Bug-Hunter · 4,711 stars · on GitHub · awarexone.com

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/awarexone/agentic-bug-hunter/osint-employees
Clone the repo
git clone --depth 1 https://github.com/Awarexone/Agentic-Bug-Hunter

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for osint-employees

README.md
[![agentmods](https://agentmods.dev/badge/commands/awarexone/agentic-bug-hunter/osint-employees.svg)](https://agentmods.dev/commands/awarexone/agentic-bug-hunter/osint-employees)
Your own site
<a href="https://agentmods.dev/commands/awarexone/agentic-bug-hunter/osint-employees"><img src="https://agentmods.dev/badge/commands/awarexone/agentic-bug-hunter/osint-employees.svg" alt="Measured on agentmods" height="20"></a>
Per session 82 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 848 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00082 $0.00848
Opus 5 $0.00041 $0.00424
Sonnet 5 $0.00016 $0.00170
Haiku 4.5 $0.00008 $0.00085

Measured 6d ago against content hash 18682e8d7a0b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

osint-employees scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

commands/osint-employees.md · 68 lines

How it starts

The opening of the file, as written. The whole thing — 68 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/osint-employees

Gather employee names and email patterns for the spray-prep phase. Read-only OSINT — no auth probing.

Usage

/osint-employees target.com
/osint-employees target.com --with-linkedin                    # add CrossLinked LinkedIn search
/osint-employees target.com --with-pydictor-social             # add personal-style password candidates
/osint-employees target.com --company "Acme Corp"              # override auto-detected company name
/osint-employees target.com --sources duckduckgo,crtsh --limit 200

Pipeline

  1. theHarvester — emails + names from search engines + CT logs
    • Default sources: duckduckgo,brave,yahoo,mojeek,crtsh,certspotter,hackertarget,otx
    • All free, no API keys required, no LinkedIn-specific scraping
  2. Derive names from email local-parts ([email protected]John Smith)
  3. (opt) CrossLinked — LinkedIn employee names via Google/Bing dorks
    • --with-linkedin opts in
    • Uses search engines only; no LinkedIn auth required
  4. username-anarchy — expand "First Last" into 32+ username permutations
    • john, j.smith, jsmith, smithj, js, john.smith, etc.
  5. (opt) pydictor --extend — personal-style password candidates
    • --with-pydictor-social opts in
    • Generates firstname2025!, firstname123 style mutations

Output

recon/<target>/osint/
├── theharvester.json      # raw theHarvester output
├── emails.txt             # extracted emails (unique)
├── employee-names.txt     # "First Last" per line
├── usernames.txt          # all username permutations
└── (personal-passwords.txt if --with-pydictor-social)

Why opt-in for LinkedIn

CrossLinked queries Google/Bing for site:linkedin.com "Company Name" — public search, no LinkedIn auth required. But some BBP programs classify LinkedIn-based employee identification under "social engineering reconnaissance" which they don't permit. Read the program scope before running with --with-linkedin.

Read the full file on GitHub · 68 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 68 lines · 82 tokens per session scan A 18682e8d7a0b

Subscribe to this mod's changes

osint-employees is a command published in the GitHub repository Awarexone/Agentic-Bug-Hunter (4,711 stars, last pushed yesterday), licensed MIT. It adds 82 tokens to every session and 848 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other commands, from other repositories

recon

Run full recon pipeline on a target — subdomain enum (Chaos API + subfinder), live host discovery (dnsx + httpx), URL crawl (katana + waybackurls + gau), gf pattern classification, nuclei scan. Outputs to recon/ / directory. Usage: /recon target.com.

elementalsouls/Claude-BugHunter · 65 tokens

hunt

Active vulnerability hunting. Two-track dispatcher — asks Red Team vs WAPT, hands off to hunt-dispatch skill and sibling commands. Usage: /hunt target.com | /hunt .target.com | /hunt targets.txt [--vuln-class X] [--source-code P] [--chrome].

elementalsouls/Claude-BugHunter · 63 tokens

autopilot

Run autonomous hunt loop on a target — scope check → recon → rank surface → hunt → validate → report with configurable checkpoints. Usage: /autopilot target.com [--paranoid|--normal|--yolo].

elementalsouls/Claude-BugHunter · 49 tokens

triage

Quick 7-Question Gate triage on a finding before writing a report. Kills N/A submissions before they happen. Faster than /validate — for quick go/no-go decisions. Usage: /triage.

elementalsouls/Claude-BugHunter · 45 tokens

validate

Validate a finding — runs 7-Question Gate + 4-gate checklist. Kills weak findings before report writing. Prevents N/A submissions that hurt validity ratio. Usage: /validate.

elementalsouls/Claude-BugHunter · 41 tokens

intel

On-demand intelligence fetch for a target — CVEs, disclosed reports, new features. Pulls NVD/GitHub-Advisory CVEs + bundled disclosed reports + hunt memory context. Usage: /intel target.com.

elementalsouls/Claude-BugHunter · 46 tokens