mirror of
https://github.com/Shiva108/ai-llm-red-team-handbook.git
synced 2026-02-12 14:42:46 +00:00
- Add detailed network isolation methods using Docker, VMs, and iptables for secure lab environments. - Introduce multiple LLM setup options including Ollama, Text-Generation-WebUI, and llama.cpp for diverse testing needs. - Integrate practical red teaming tools like Garak and a core Python environment for automated vulnerability scanning. - Implement robust environmental safety mechanisms: a comprehensive kill switch, watchdog timer, API rate limiter, and cost tracker. - Update .gitignore to exclude old_chapter_07.md, cleaning up old file references.
115 lines
2.6 KiB
Plaintext
115 lines
2.6 KiB
Plaintext
# --- Core & System ---
|
|
.DS_Store
|
|
Thumbs.db
|
|
*~
|
|
*.swp
|
|
*.swo
|
|
|
|
# --- Python ---
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
*.egg-info/
|
|
.eggs/
|
|
dist/
|
|
build/
|
|
.venv/
|
|
.venvs/
|
|
/tools/prompt_injection_tester/.venv
|
|
|
|
|
|
# --- Node.js ---
|
|
node_modules/
|
|
npm-debug.log
|
|
|
|
# --- IDEs ---
|
|
.idea/
|
|
.vscode/
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
|
|
# --- Temporary & Logs ---
|
|
*.tmp
|
|
*.temp
|
|
*.log
|
|
|
|
# --- Agent & AI Workspaces ---
|
|
.agent/
|
|
.claude/
|
|
ignore/
|
|
docs/contentsuggestions
|
|
|
|
# --- Local/Env Configuration ---
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
.mcp.json
|
|
|
|
# --- Shell ---
|
|
.bash_profile
|
|
.bashrc
|
|
.profile
|
|
.zprofile
|
|
.zshrc
|
|
|
|
# --- Temporary Artifacts & Backups ---
|
|
.markdownlint.json
|
|
*.backup
|
|
*.audit_backup
|
|
|
|
# --- Generated Reports & Docs ---
|
|
docs/Visual_Recommendations.md
|
|
Visual_Recommendations_V2.md
|
|
workflows/audit-fix-humanize-chapter-v2.md
|
|
|
|
# Specific Reports
|
|
docs/reports/AI_Security_Intelligence_Report_December_2025.md
|
|
docs/reports/AI_Security_Intelligence_Report_January_2026.md
|
|
docs/reports/newsletter_jan_2026.md
|
|
|
|
# --- Tool Specific: Prompt Injection Tester ---
|
|
|
|
# Test coverage and cache
|
|
tools/prompt_injection_tester/.coverage
|
|
tools/prompt_injection_tester/.pytest_cache/
|
|
tools/prompt_injection_tester/htmlcov/
|
|
|
|
# Generated test reports (not the test scripts themselves)
|
|
tools/prompt_injection_tester/pit_report_*.json
|
|
tools/prompt_injection_tester/pit_report_*.yaml
|
|
tools/prompt_injection_tester/pit_report_*.html
|
|
tools/prompt_injection_tester/test_report_*.json
|
|
tools/prompt_injection_tester/test_report_*.yaml
|
|
tools/prompt_injection_tester/test_report_*.html
|
|
tools/prompt_injection_tester/report.json
|
|
tools/prompt_injection_tester/report.yaml
|
|
tools/prompt_injection_tester/report.html
|
|
tools/prompt_injection_tester/interrupted_*.json
|
|
tools/prompt_injection_tester/results.json
|
|
tools/prompt_injection_tester/results.html
|
|
tools/prompt_injection_tester/results.yaml
|
|
tools/prompt_injection_tester/config.yaml
|
|
tools/prompt_injection_tester/IMPLEMENTATION_COMPLETE.md
|
|
tools/prompt_injection_tester/PHASE2_COMPLETE.md
|
|
|
|
# Legacy/Archive files
|
|
tools/prompt_injection_tester/docs/reports/archive/CODE_REVIEW_2026_01_26.md
|
|
tools/prompt_injection_tester/docs/specs/CORE_ARCHITECTURE_legacy.md
|
|
tools/prompt_injection_tester/docs/specs/FUNCTIONAL_SPEC_v2_legacy.md
|
|
.idea
|
|
.ripgreprc
|
|
tools/prompt_injection_tester/PHASE5_COMPLETE.md
|
|
tools/prompt_injection_tester/TEST_RESULTS.md
|
|
tools/prompt_injection_tester/TESTING_PHASE_COMPLETE.md
|
|
tools/prompt_injection_tester/discovery_output.txt
|
|
DEPLOYMENT.md
|
|
|
|
# --- Build Artifacts ---
|
|
tools/prompt_injection_tester/prompt_injection_tester.egg-info/
|
|
scripts/tools/build/*.json
|
|
scripts/tools/build/*.txt
|
|
final_audit.json
|
|
old_chapter_07.md
|