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.
npx agentmods add skills/0dayinc/pwn/osintnpx skills add 0dayInc/pwn --skill osintgit clone --depth 1 https://github.com/0dayInc/pwnWrote 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.
[](https://agentmods.dev/skills/0dayinc/pwn/osint)<a href="https://agentmods.dev/skills/0dayinc/pwn/osint"><img src="https://agentmods.dev/badge/skills/0dayinc/pwn/osint.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00021 | $0.01624 |
| Opus 5 | $0.00010 | $0.00812 |
| Sonnet 5 | $0.00004 | $0.00325 |
| Haiku 4.5 | $0.00002 | $0.00162 |
Grade A, and why
osint 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.
How it starts
The opening of the file, as written. The whole thing — 148 lines — stays where its author put it; the contents beside it link to each section on GitHub.
OSINT (extro_osint)
Use this whenever the ask is public-source intel on an IP, domain, email,
phone, handle, person, company, CVE, VIN, MAC, FCC ID, patent, or URL.
The verb is extro_osint (PWN::AI::Agent::Extrospection.osint). Do not
substitute extro_snapshot(sections: [:osint]) - that only lists feed
availability. Do not scrape random sites when this organ already covers
the query.
When to use
- reverse phone, person, @handle, company, CIK, NPI
- IP / ASN / BGP / Shodan / reputation
- domain CT / whois / RDAP / harvest
- CVE EPSS + CISA KEV
- VIN, MAC OUI, ham callsign, FCC ID, patent
Hand off live scanning to penetration-testing / NmapIt. Firmware IDs
can start here (:fcc_id) then hardware-and-firmware-testing.
Methodologies
- MITRE ATT&CK TA0043 Reconnaissance (passive collection)
- NIST SP 800-115: target identification / OSINT as a technical technique
- OSSTMM data channel (passive only unless the operator named active DNS)
Stay passive by default. amass is passive unless
ai.agent.extrospection.osint.bridges.amass_passive is false.
How to call
Prefer the tool:
extro_osint(query: "8.8.8.8")
extro_osint(query: "@defunkt", kind: "social")
extro_osint(query: "target.tld", feeds: ["dns", "crtsh", "theharvester"])
Or pwn_eval:
PWN::AI::Agent::Extrospection.osint(query: '8.8.8.8', kind: :ip)
One atomic indicator per call. kind: :auto is fine when the string is
unambiguous. Force kind: when auto can steal the query (below).
Force kind when auto is wrong
| Query looks like | Auto often picks | Force |
|---|---|---|
| IPv4 | :ip (ok) |
- |
00:11:22:33:44:55 |
:mac (ok; MAC beats IPv6) |
- |
| 17-char VIN | :vin |
- |
CVE-2021-44228 |
:cve |
- |
@user / @user@host |
:social |
- |
[email protected] |
:email |
- |
https://... |
:url |
- |
NPI 1679576722 |
:npi only with the NPI prefix |
prefix or kind: :npi |
W1AW |
:callsign |
- |
bare defunkt |
:username |
kind: :social + feeds: ["social_sweep"] if presence is the ask |
Acme Robotics LLC |
:company |
- |
birth record Jane Doe |
:vital_records |
keep the keyword |
2ABIP-ESP32 |
:fcc_id |
kind: :fcc_id if no hyphen |
| 10-15 digits | :phone |
E.164 +1... if possible |
| free text name | :person |
kind: :person |
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.
- 6d ago First seen · 148 lines · 21 tokens per session scan A 6aa94be8acf3
osint is a skill published in the GitHub repository 0dayInc/pwn (78 stars, last pushed yesterday), licensed MIT. It adds 21 tokens to every session and 1,624 once invoked, about $0.0001 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.
Other skills, from other repositories
analyzing-linux-elf-malware
Analyze malicious Linux ELF binaries — botnets, cryptominers, ransomware, and rootkits targeting Linux servers, containers, and cloud infrastructure — through static analysis, dynamic tracing, and reverse engineering of x8664 and ARM samples. Use when investigating Linux malware, triaging a suspicious ELF binary…
osmedeus-expert
Expert guide for the Osmedeus security automation workflow engine. Use when: (1) writing or editing YAML workflows (modules and flows), (2) running osmedeus CLI commands (scan, workflow management, installation, server), (3) configuring steps, runners, triggers, or template variables, (4) debugging workflow execution…
supabase
Supabase / PostgREST Row-Level-Security playbook — pull the anon (or leaked servicerole) key out of the frontend JS, map tables from the auto-generated OpenAPI spec, test anonymous RLS READ disclosures (PII/secret leaks), and anonymous RLS WRITE abuse (insert/update/delete — e.g. forging…
graphql
GraphQL pentest playbook — find the endpoint, dump the schema (introspection or field-suggestion fallback), then test for authorization gaps, query batching, alias overload, depth-based DoS, and SQLi/NoSQLi in resolver arguments. Use when the target exposes a /graphql endpoint, GraphiQL, Apollo, or accepts GraphQL…
jwt
JWT attack playbook — algorithm confusion (alg=none, HS/RS confusion), kid path traversal/SQLi, jku/x5u SSRF, weak HS256 cracking, and embedded JWK trickery. Use when the target uses JWTs for auth (header.payload.signature).
recon
External recon playbook for a web target — subdomain enumeration, live-host probing, tech fingerprinting, and a first pass at content discovery. Use when the user gives you a root domain or apex and wants attack surface mapping.