feat(08-04): add 10 FOFA + 10 GitLab + 5 Bing dorks

- 10 FOFA queries using title=/body=/port=/cert= syntax (8 infrastructure
  + 2 frontier: Azure OpenAI cert, OpenAI proxy api_key leak)
- 10 GitLab code search dorks across frontier/specialized/infrastructure/
  emerging categories (OpenAI, Anthropic, Google AI, Groq, Cohere, HF,
  OpenRouter, Perplexity, DeepSeek, Pinecone)
- 5 Bing dorks using site:/filetype:/intitle:/inbody: operators
  (3 frontier + 1 specialized + 1 infrastructure)
- Brings grand total across all 8 sources to 150 dorks, satisfying DORK-02
- Dual-located under pkg/dorks/definitions/ and dorks/
This commit is contained in:
salvacybersec
2026-04-06 00:21:41 +03:00
parent 1c86800c14
commit c504cbd5d3
6 changed files with 394 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
- id: bing-openai-pastebin
name: "OpenAI project keys on Pastebin (Bing)"
source: bing
category: frontier
query: 'site:pastebin.com "sk-proj-"'
description: "Finds OpenAI project keys pasted on pastebin.com via Bing site: search."
tags: [openai, pastebin, bing, frontier, tier1]
- id: bing-anthropic-pastebin
name: "Anthropic keys on Pastebin (Bing)"
source: bing
category: frontier
query: 'site:pastebin.com "sk-ant-api03-"'
description: "Finds Anthropic API keys pasted on pastebin.com via Bing site: search."
tags: [anthropic, pastebin, bing, frontier, tier1]
- id: bing-ollama-exposed
name: "Exposed Ollama via Bing"
source: bing
category: infrastructure
query: 'intitle:"Ollama" inbody:"/api/tags"'
description: "Finds exposed Ollama servers indexed by Bing via title + body operators."
tags: [ollama, bing, infrastructure]
- id: bing-openai-env
name: "OPENAI_API_KEY in .env (Bing)"
source: bing
category: frontier
query: 'filetype:env "OPENAI_API_KEY=sk-proj-"'
description: "Finds .env files indexed by Bing containing OpenAI project keys."
tags: [openai, env, bing, frontier]
- id: bing-hf-pastebin
name: "Hugging Face tokens on Pastebin (Bing)"
source: bing
category: specialized
query: 'site:pastebin.com "hf_"'
description: "Finds Hugging Face tokens pasted on pastebin.com via Bing site: search."
tags: [huggingface, pastebin, bing, specialized]