Osint 技能查找
- 作者仓库星标 1
- 许可证 MIT
- 作者仓库 agent-toolkit
OSINT Dorking Skill
This skill teaches an agent how to reliably answer OSINT dorking requests. It currently uses GHDB as a robust baseline data source and can be extended with additional dork sources.
Why this workflow
Exploit-DB pages can enforce anti-bot protections and rate limits. Instead of scraping HTML pages, use the official GHDB XML feed from the ExploitDB GitLab repository through the bundled helper script.
Primary data source used by the helper:
Examples
Use these as few-shot references for what strong, practical dorks look like.
- Exposed environment files:
- Dork: inurl:.env OR intitle:"index of" ".env"
- Why useful: helps detect leaked runtime secrets in misconfigured deployments.
- Open directory listings:
- Dork: intitle:"index of" "backup" OR intitle:"index of" "/uploads"
- Why useful: surfaces browseable file indexes that may expose sensitive artifacts.
- WordPress configuration backups:
- Dork: intitle:"index of" "wp-config.php.bak"
- Why useful: identifies accidental backup exposure of database credentials.
- Database dump files:
- Dork: ext:sql "dump" ("db" OR "backup")
- Why useful: finds potentially exposed SQL exports for defensive verification.
- Git metadata exposure:
- Dork: intitle:"index of" ".git"
- Why useful: highlights repositories accidentally exposed via directory listing.
Safety and scope rules
- Only provide dorking guidance for authorized, legal, and defensive use.
- If the user requests clearly unauthorized targeting, refuse and offer benign alternatives (hardening checks, self-audit queries, training/lab examples).
- Prefer least harmful, discovery-focused dorks over intrusive guidance.
- Do not provide step-by-step exploitation instructions.
Procedure
- Clarify intent and constraints.
- Ask what technology, file type, product, or exposure class the user wants to detect.
- If needed, ask whether they want broad discovery or highly specific dorks.
- Query dork data via bundled script.
- Run commands from this skill directory:
skills/osint-dorking. - Run:
- ./scripts/search.sh --keyword "<term>" --limit 10
- Equivalent direct Python entrypoint:
- python3 scripts/search_dorks.py --keyword "<term>" --limit 10
- For category filters:
- ./scripts/search.sh --keyword "<term>" --category "Files Containing Juicy Info" --limit 10
- For exact reproducibility in machine-readable format:
- ./scripts/search.sh --keyword "<term>" --format json --limit 20
- If results are weak, iterate.
- Try synonyms and related products.
- Switch between broad and narrow terms.
- Use multiple keywords with match-any mode:
- ./scripts/search.sh --keyword "wordpress" --keyword "wp-config" --match any --limit 20
- Respond with curated output.
- Return a concise list including:
- GHDB ID
- Category
- Dork query
- Why it is relevant
- Add a short caution reminding the user to test only systems they own or are authorized to assess.
- If the feed cannot be fetched.
- Retry once with --refresh.
- If network still fails, rely on cached data at data/ghdb.xml.
- Tell the user the data may be stale and provide date context if available.
Output template
Use this structure in responses:
Match 1:
- ID: <id>
- Category: <category>
- Dork: <query>
- Relevance: <reason>
Match 2:
- ID: <id>
- Category: <category>
- Dork: <query>
- Relevance: <reason>
Notes for agents
- Preferred entrypoint is ./scripts/search.sh because it handles Python interpreter selection and forwards args safely.
- Prefer running the local script over direct Fetch calls to exploit-db pages.
- Keep answers practical and defensive.
- If the user asks for more, expand with adjacent categories and safer variants.
- 流狐分类
- 工程开发
- 作者声明 Agent
- 未找到明确声明;不据此推断已兼容或已测试
- 静态检查
- 94 / 100 · 启发式扫描,不代表运行安全
- 作者 / 版本 / 许可
- @000001000000 · MIT
- 流狐 Token 估算
- 低消耗
- 流狐接入估算
- 需简单配置
- 是否需要外部 API Key
- 未发现要求
- 检测到的系统要求
- 未声明
- 底层运行要求
- Python
- 检测到的文件与系统行为
-
- 只读
- Shell 执行
- 读取环境变量
- 检测到的网络行为
- 允许外网请求
- 安装命令数
- 无(仅作为资料)
档案由构建时根据 SKILL.md 与安装命令自动衍生,可能与作者实际意图存在差异。
需要注意: 未限定 allowed-tools,默认拥有全部工具权限。
作者没有在当前 SKILL.md 中定义固定输出样例。 Exploit-DB pages can enforce anti-bot protections and rate limits. Instead of scraping HTML pages, use the official GHDB XML feed from the ExploitDB GitLab repository through the bundled helper script. Primary data source used by the helper:
Use these as few-shot references for what strong, practical dorks look like. Exposed environment files: Dork: inurl:.env OR intitle:"index of" ".env"
Only provide dorking guidance for authorized, legal, and defensive use. If the user requests clearly unauthorized targeting, refuse and offer benign alternatives (hardening checks, self-audit queries, training/lab examples).
Clarify intent and constraints. Ask what technology, file type, product, or exposure class the user wants to detect. If needed, ask whether they want broad discovery or highly specific dorks.
Use this structure in responses: Match 1: ID: <id>
Preferred entrypoint is ./scripts/search.sh because it handles Python interpreter selection and forwards args safely. Prefer running the local script over direct Fetch calls to exploit-db pages. Keep answers practical and defensive.
# OSINT Dorking Skill
This skill teaches an agent how to reliably answer OSINT dorking requests. It currently uses GHDB as a robust baseline data source and can be extended with additional dork sources.
## Why this workflow
Exploit-DB pages can enforce anti-bot protections and rate limits. Instead of scraping HTML pages, use the official GHDB XML feed from the ExploitDB GitLab repository through the bundled helper script.
Primary data source used by the helper:
- https://gitlab.com/exploit-database/exploitdb/-/raw/main/ghdb.xml
## Examples
Use these as few-shot references for what strong, practical dorks look like.
- Exposed environment files:
- Dork: inurl:.env OR intitle:"index of" ".env"
- Why useful: helps detect leaked runtime secrets in misconfigured deployments.
- Open directory listings:
- Dork: intitle:"index of" "backup" OR intitle:"index of" "/uploads"
- Why useful: surfaces browseable file indexes that may expose sensitive artifacts.
- WordPress configuration backups:
- Dork: intitle:"index of" "wp-config.php.bak"
- Why useful: identifies accidental backup exposure of database credentials.
- Database dump files:
- Dork: ext:sql "dump" ("db" OR "backup")
- Why useful: finds potentially exposed SQL exports for defensive verification.
- Git metadata exposure:
- Dork: intitle:"index of" ".git"
- Why useful: highlights repositories accidentally exposed via directory listing.
## Safety and scope rules
1. Only provide dorking guidance for authorized, legal, and defensive use.
2. If the user requests clearly unauthorized targeting, refuse and offer benign alternatives (hardening checks, self-audit queries, training/lab examples).
3. Prefer least harmful, discovery-focused dorks over intrusive guidance.
… 作者原文负责流程事实;流狐只索引当前章节、要点、文件与命令。
章节 -> Why this workflow → Examples → Safety and scope rules → Procedure → Output template → Notes for agents
要点 -> This skill teaches an agent how to reliably answer OSINT dorking requests. · Exploit-DB pages can enforce anti-bot protections and rate limits. · Use these as few-shot references for what strong, practical dorks look like. · 1. Only provide dorking guidance for authorized, legal, and defensive use. · 1. Clarify intent and constraints. · 2. Query dork data via bundled script. · 3. If results are weak, iterate. · 4. Respond with curated output.
文件/命令 -> skills/osint-dorking · gitlab.com/exploit-database/exploitdb/-/raw/main/ghdb.xml · training/lab · ./scripts/search.sh · scripts/searchdorks.py · data/ghdb.xml.
内容 SHA-256 -> ad1680b0e8f2
方法与流程
适用与边界
原文中的明确线索
skills/osint-dorking、gitlab.com/exploit-database/exploitdb/-/raw/main/ghdb.xml、training/lab、./scripts/search.sh、scripts/searchdorks.py、data/ghdb.xml.