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

79
dorks/gitlab/all.yaml Normal file
View File

@@ -0,0 +1,79 @@
- id: gitlab-openai-envfile
name: "OpenAI project key in .env (GitLab)"
source: gitlab
category: frontier
query: 'sk-proj- extension:env'
description: "Finds OpenAI project keys committed to .env files in GitLab public repos."
tags: [openai, gitlab, env, frontier, tier1]
- id: gitlab-anthropic-envfile
name: "Anthropic key in .env (GitLab)"
source: gitlab
category: frontier
query: 'sk-ant-api03- extension:env'
description: "Finds Anthropic API keys committed to .env files in GitLab code."
tags: [anthropic, gitlab, env, frontier, tier1]
- id: gitlab-google-ai-json
name: "Google Generative Language key in JSON (GitLab)"
source: gitlab
category: frontier
query: 'AIzaSy extension:json "generativelanguage"'
description: "Finds Google Generative AI keys in JSON configs referencing generativelanguage."
tags: [google, gemini, gitlab, json, frontier]
- id: gitlab-groq-envfile
name: "Groq API key in .env (GitLab)"
source: gitlab
category: specialized
query: 'gsk_ extension:env'
description: "Finds Groq API keys committed to .env files in GitLab."
tags: [groq, gitlab, env, specialized]
- id: gitlab-cohere-envfile
name: "Cohere API key in .env (GitLab)"
source: gitlab
category: specialized
query: 'COHERE_API_KEY extension:env'
description: "Finds Cohere API keys referenced in .env files on GitLab."
tags: [cohere, gitlab, env, specialized]
- id: gitlab-hf-pyfile
name: "Hugging Face token in .py (GitLab)"
source: gitlab
category: infrastructure
query: 'hf_ extension:py'
description: "Finds Hugging Face tokens hardcoded in Python source files on GitLab."
tags: [huggingface, gitlab, python, infrastructure]
- id: gitlab-openrouter-env
name: "OpenRouter key in .env (GitLab)"
source: gitlab
category: emerging
query: 'sk-or-v1- extension:env'
description: "Finds OpenRouter API keys in .env files on GitLab."
tags: [openrouter, gitlab, env, emerging]
- id: gitlab-perplexity-env
name: "Perplexity key in .env (GitLab)"
source: gitlab
category: emerging
query: 'pplx- extension:env'
description: "Finds Perplexity API keys committed to .env files on GitLab."
tags: [perplexity, gitlab, env, emerging]
- id: gitlab-deepseek-env
name: "DeepSeek API key in .env (GitLab)"
source: gitlab
category: emerging
query: 'DEEPSEEK_API_KEY extension:env'
description: "Finds DeepSeek API keys referenced in .env files on GitLab."
tags: [deepseek, gitlab, env, emerging]
- id: gitlab-pinecone-env
name: "Pinecone API key in .env (GitLab)"
source: gitlab
category: specialized
query: 'PINECONE_API_KEY extension:env'
description: "Finds Pinecone vector DB API keys referenced in .env files on GitLab."
tags: [pinecone, vectordb, gitlab, env, specialized]