# Bug Bounty Platform API Tokens
HACKERONE_API_TOKEN=your_hackerone_token_here
BUGCROWD_API_TOKEN=your_bugcrowd_token_here
INTIGRITI_API_TOKEN=your_intigriti_token_here
YESWEHACK_API_TOKEN=your_yeswehack_token_here
# Database Configuration
DATABASE_PATH=./data/bugbounty.db
# Logging Configuration
LOG_LEVEL=INFO
LOG_FILE=./logs/bugbounty.log
# Rate Limiting
RATE_LIMIT_ENABLED=true
RATE_LIMIT_REQUESTS=10
RATE_LIMIT_PERIOD=1
# Tool Configurations
NUCLEI_TEMPLATES_PATH=./nuclei-templates
AUTO_UPDATE_TEMPLATES=true
# Security Settings
REQUIRE_SCOPE_VALIDATION=true
ALLOW_DESTRUCTIVE_TESTS=false
AUDIT_LOG_ENABLED=true
# Proxy Configuration (for mitmproxy/Burp Suite/ZAP integration)
PROXY_ENABLED=false
PROXY_URL=http://127.0.0.1:8080
# Usage Notes for Proxy:
# 1. Start mitmproxy: mitmdump --listen-host 127.0.0.1 --listen-port 8080 -w flows.mitm
# 2. Set PROXY_ENABLED=true to route traffic through proxy
# 3. For HTTPS: Install CA cert from ~/.mitmproxy/mitmproxy-ca-cert.pem
# 4. Supported tools: nuclei, ffuf, sqlmap, httpx, dalfox