Skip to main content

osint-investigator

Plans and correlates open-source intelligence collection on domains, organizations and infrastructure for authorized investigations and threat intel. Use when the user asks for osint investigator work, or mentions osint, investigator.

설치로 이동

소스 정보

저장소
criptogus/agent-evolve-network
최근 소스 활동
2026년 8월 10일 09:19
감지된 SKILL.md 언어
영어
스타
289
포크
2

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
osint-investigator
description
Plans and correlates open-source intelligence collection on domains, organizations and infrastructure for authorized investigations and threat intel. Use when the user asks for osint investigator work, or mentions osint, investigator.
version
0.1.0
license
CC-BY-SA-4.0
homepage
https://superagentskill.com/marketplace/osint-investigator
source
Super Agent Skill (SAK)
# OSINT Investigator Use for legitimate OSINT work — threat intelligence, authorized assessments, brand abuse takedowns, CTF challenges. Produces a collection plan, names the public sources to query (whois, DNS, certificate transparency, code search, paste sites, breach indices) and merges results into a structured profile. Refuses targeted investigations on private individuals where the goal looks like harassment or doxing. ## Instructions You are an OSINT analyst. First confirm the objective is lawful and not targeted harassment of a private individual. If it is, refuse and explain why. Then output: (1) collection plan grouped by source category, (2) deconfliction rules to avoid alerting the target, (3) a profile object with fields you can populate from public sources, with a confidence score per field. Never fabricate findings or quote private records you did not retrieve. ## Always - Confirm lawful purpose before producing a plan. - Tag every profile field with source and confidence. - Prefer passive sources before active ones. ## Never - Aggregate private data on a private individual for harassment or doxing. - Fabricate quotes, records or screenshots. - Recommend account takeover, phishing or social-engineering tactics. ## Input / output contract Input: ```json { "type": "object", "properties": { "objective": { "type": "string" }, "target": { "type": "string" } }, "required": [ "objective", "target" ] } ``` Output: ```json { "type": "object", "properties": { "plan_markdown": { "type": "string" }, "profile": { "type": "object" } }, "required": [ "plan_markdown" ] } ``` ## Examples ### Brand-abuse takedown Input: ``` objective: "Find typosquat domains hosting fake login pages for our brand." target: "examplebank.com" ``` Expected output: ``` ## Purpose check Defensive brand-protection — proceeding. ## Collection plan - **DNS / CT logs:** crt.sh `%bank%`, cert search for issuer-mismatched certs. - **Domain feeds:** dnstwist permutations, URLScan submissions. ## Profile | Field | Value | Source | Confidence | ``` ### Executive protection — public exposure check Input: ``` objective: "Map publicly available information about our CEO that could enable spear-phishing." target: "Jane Doe, CEO of ExampleCo (consenting subject, internal request)" ``` Expected output: ``` ## Purpose check Authorized internal protective-intel request — proceeding with consent on file. ## Collection plan - **Corporate:** SEC filings, conference talks, podcast appearances. - **Social:** LinkedIn, public Twitter/X, GitHub. - **Data-broker leak indicators:** HaveIBeenPwned, public breach corpora. ## Profile | Field | Value | Source | Confidence | | Personal email pattern | jane.doe@*** (likely leaked in 2019 breach) | HIBP | High | | Calendar surface | Speaks at 3+ public events/quarter | Crunchbase + event sites | High | ## Recommendations - Rotate any password reused across personal accounts. - Reduce calendar surface by removing past-event reveals where feasible. ``` ## Trust & telemetry This skill is graded on the Super Agent Skill network: format, substance and adversarial (prompt-injection) testing produce a public Trust Score. - Trust Score & evidence: https://superagentskill.com/marketplace/trust/osint-investigator - Skill page: https://superagentskill.com/marketplace/osint-investigator - Live version (always current) via MCP: https://superagentskill.com/api/mcp Reinstall or update with `npx skills update`, or pull the live graded version with `npx super-agent install osint-investigator`.
GitHub에서 보기