-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yaml.example
More file actions
83 lines (63 loc) · 2.78 KB
/
Copy pathconfig.yaml.example
File metadata and controls
83 lines (63 loc) · 2.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# MindSeeker Suite - Configuration File
# Copy this file to config.yaml and fill in your credentials
# Command: cp config.yaml.example config.yaml
# ============================================================================
# REQUIRED CREDENTIALS
# ============================================================================
github:
# GitHub Personal Access Token (REQUIRED)
# How to get: https://github.com/settings/tokens
# Scopes: public_repo, read:org, read:user, user:email
token: "ghp_your_github_token_here"
# ============================================================================
# HIGHLY RECOMMENDED (300-500% more results)
# ============================================================================
google:
# Google Custom Search API (FREE - 100 searches/day)
# Setup guide: See CREDENTIALS_SETUP.md
# API Key from: https://console.developers.google.com/apis/credentials
api_key: "AIzaSy_your_google_api_key_here"
# Search Engine ID from: https://programmablesearchengine.google.com/
cse_id: "your_search_engine_id_here"
# ============================================================================
# OPTIONAL CREDENTIALS
# ============================================================================
linkedin:
# LinkedIn Account (Optional)
# Current version uses Google dorking, not direct scraping
email: "your_email@gmail.com"
password: "your_linkedin_password"
gitlab:
# GitLab Personal Access Token (Optional - if target uses GitLab)
# How to get: https://gitlab.com/-/profile/personal_access_tokens
# Scopes: read_api, read_user, read_repository
token: "glpat_your_gitlab_token_here"
stackoverflow:
# Stack Overflow API Key (Optional - for higher rate limits)
# How to get: https://stackapps.com/apps/oauth/register
# Note: Tool works without this
key: "your_stackoverflow_key_here"
# ============================================================================
# TOOL SETTINGS (Optional)
# ============================================================================
settings:
# Maximum pages to fetch per search query (default: 3)
# Higher = more results but slower
max_pages: 3
# Rate limiting delay in seconds (default: 2)
# Increase if you hit rate limits
rate_limit_delay: 2
# Maximum repositories to analyze (default: 30)
max_repos: 30
# Output verbosity (true/false)
verbose: true
# ============================================================================
# NOTES
# ============================================================================
#
# - Use quotes around values (e.g., "value")
# - Leave values as shown if you don't have credentials yet
# - Do NOT commit config.yaml with real credentials to git
# - The .gitignore file should include config.yaml
# - Priority: config.yaml > .env > environment variables
#