agentic-bug-hunter 6.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (125) hide show
  1. agentic_bug_hunter-6.0.0.dist-info/METADATA +962 -0
  2. agentic_bug_hunter-6.0.0.dist-info/RECORD +125 -0
  3. agentic_bug_hunter-6.0.0.dist-info/WHEEL +5 -0
  4. agentic_bug_hunter-6.0.0.dist-info/entry_points.txt +3 -0
  5. agentic_bug_hunter-6.0.0.dist-info/licenses/LICENSE +21 -0
  6. agentic_bug_hunter-6.0.0.dist-info/top_level.txt +1 -0
  7. bughunter/__init__.py +8 -0
  8. bughunter/__main__.py +29 -0
  9. bughunter/agent.py +1874 -0
  10. bughunter/agents/README.md +17 -0
  11. bughunter/agents/autopilot.md +218 -0
  12. bughunter/agents/chain-builder.md +92 -0
  13. bughunter/agents/credential-hunter.md +170 -0
  14. bughunter/agents/recon-agent.md +124 -0
  15. bughunter/agents/recon-ranker.md +93 -0
  16. bughunter/agents/report-writer.md +193 -0
  17. bughunter/agents/token-auditor.md +195 -0
  18. bughunter/agents/validator.md +133 -0
  19. bughunter/agents/web3-auditor.md +174 -0
  20. bughunter/brain.py +2749 -0
  21. bughunter/engine.py +857 -0
  22. bughunter/mcp/README.md +19 -0
  23. bughunter/mcp/bughunter-mcp/README.md +40 -0
  24. bughunter/mcp/bughunter-mcp/__init__.py +3 -0
  25. bughunter/mcp/bughunter-mcp/adapters.py +413 -0
  26. bughunter/mcp/bughunter-mcp/claude-config.json +11 -0
  27. bughunter/mcp/bughunter-mcp/cli.py +102 -0
  28. bughunter/mcp/bughunter-mcp/opencode-config.json +12 -0
  29. bughunter/mcp/bughunter-mcp/policy/__init__.py +26 -0
  30. bughunter/mcp/bughunter-mcp/policy/decisions.py +46 -0
  31. bughunter/mcp/bughunter-mcp/policy/engine.py +190 -0
  32. bughunter/mcp/bughunter-mcp/policy/tool_meta.py +95 -0
  33. bughunter/mcp/bughunter-mcp/redact.py +31 -0
  34. bughunter/mcp/bughunter-mcp/server.py +362 -0
  35. bughunter/mcp/burp-mcp-client/README.md +101 -0
  36. bughunter/mcp/burp-mcp-client/config.json +13 -0
  37. bughunter/mcp/burp-mcp-client/opencode-config.json +16 -0
  38. bughunter/mcp/caido-mcp-client/README.md +84 -0
  39. bughunter/mcp/caido-mcp-client/opencode-config.json +14 -0
  40. bughunter/mcp/hackerone-mcp/config.json +10 -0
  41. bughunter/mcp/hackerone-mcp/opencode-config.json +10 -0
  42. bughunter/mcp/hackerone-mcp/server.py +336 -0
  43. bughunter/memory/README.md +16 -0
  44. bughunter/memory/__init__.py +48 -0
  45. bughunter/memory/audit_log.py +374 -0
  46. bughunter/memory/hunt_journal.py +69 -0
  47. bughunter/memory/pattern_db.py +169 -0
  48. bughunter/memory/research_case.py +115 -0
  49. bughunter/memory/rotation.py +123 -0
  50. bughunter/memory/schemas.py +560 -0
  51. bughunter/serve.py +17 -0
  52. bughunter/tools/README.md +129 -0
  53. bughunter/tools/__init__.py +6 -0
  54. bughunter/tools/_auth_helper.sh +75 -0
  55. bughunter/tools/_spray_http_form.py +279 -0
  56. bughunter/tools/_spray_oauth.py +216 -0
  57. bughunter/tools/auth_session.py +304 -0
  58. bughunter/tools/banner.py +151 -0
  59. bughunter/tools/banner.sh +105 -0
  60. bughunter/tools/breach_checker.py +240 -0
  61. bughunter/tools/bypass_403.sh +391 -0
  62. bughunter/tools/cicd_scanner.sh +148 -0
  63. bughunter/tools/cloud_recon.sh +112 -0
  64. bughunter/tools/cors_scanner.py +261 -0
  65. bughunter/tools/credential_store.py +92 -0
  66. bughunter/tools/crlf_scanner.py +191 -0
  67. bughunter/tools/cve_scan.sh +108 -0
  68. bughunter/tools/dashboard.py +596 -0
  69. bughunter/tools/dom_xss_harness.py +214 -0
  70. bughunter/tools/eol_check.py +276 -0
  71. bughunter/tools/external_arsenal.sh +170 -0
  72. bughunter/tools/graphql_audit.sh +340 -0
  73. bughunter/tools/h1_idor_scanner.py +595 -0
  74. bughunter/tools/h1_mutation_idor.py +381 -0
  75. bughunter/tools/h1_oauth_tester.py +281 -0
  76. bughunter/tools/h1_race.py +252 -0
  77. bughunter/tools/h1_run.sh +159 -0
  78. bughunter/tools/hai_browser_recon.js +171 -0
  79. bughunter/tools/hai_payload_builder.py +726 -0
  80. bughunter/tools/hai_probe.py +193 -0
  81. bughunter/tools/hunt.py +938 -0
  82. bughunter/tools/intel_engine.py +414 -0
  83. bughunter/tools/jwt_scanner.py +197 -0
  84. bughunter/tools/lead_board.py +436 -0
  85. bughunter/tools/learn.py +474 -0
  86. bughunter/tools/llm_redteam.py +243 -0
  87. bughunter/tools/memory_gc.py +183 -0
  88. bughunter/tools/memory_migrate.py +95 -0
  89. bughunter/tools/mindmap.py +366 -0
  90. bughunter/tools/multipart_mutator.py +275 -0
  91. bughunter/tools/nosqli_scanner.py +209 -0
  92. bughunter/tools/oob_listener.py +210 -0
  93. bughunter/tools/osint_employees.sh +207 -0
  94. bughunter/tools/param_discovery.sh +83 -0
  95. bughunter/tools/poc_bundler.py +644 -0
  96. bughunter/tools/port_scanner.py +218 -0
  97. bughunter/tools/prompt_safety.py +23 -0
  98. bughunter/tools/recon_adapter.py +347 -0
  99. bughunter/tools/recon_engine.sh +729 -0
  100. bughunter/tools/research_log.py +201 -0
  101. bughunter/tools/safe_http.py +99 -0
  102. bughunter/tools/sast_scan.py +171 -0
  103. bughunter/tools/scope_aggregator.sh +212 -0
  104. bughunter/tools/scope_checker.py +267 -0
  105. bughunter/tools/secrets_hunter.sh +129 -0
  106. bughunter/tools/sneaky_bits.py +231 -0
  107. bughunter/tools/spray_orchestrator.sh +242 -0
  108. bughunter/tools/takeover_scanner.sh +91 -0
  109. bughunter/tools/target_selector.py +320 -0
  110. bughunter/tools/token_scanner.py +816 -0
  111. bughunter/tools/validate.py +989 -0
  112. bughunter/tools/visual_triage.py +173 -0
  113. bughunter/tools/vuln_scanner.sh +620 -0
  114. bughunter/tools/waf_encoder.py +230 -0
  115. bughunter/tools/waf_response_analyzer.py +920 -0
  116. bughunter/tools/wordlist_engine.sh +183 -0
  117. bughunter/tools/zendesk_idor_test.py +390 -0
  118. bughunter/tools/zero_day_fuzzer.py +597 -0
  119. bughunter/wordlists/README.md +14 -0
  120. bughunter/wordlists/REFERENCES.md +51 -0
  121. bughunter/wordlists/api-endpoints.txt +298 -0
  122. bughunter/wordlists/common.txt +4751 -0
  123. bughunter/wordlists/params.txt +6453 -0
  124. bughunter/wordlists/raft-medium-dirs.txt +29999 -0
  125. bughunter/wordlists/sensitive-files.txt +109 -0
@@ -0,0 +1,962 @@
1
+ Metadata-Version: 2.4
2
+ Name: agentic-bug-hunter
3
+ Version: 6.0.0
4
+ Summary: AI-powered bug bounty hunting — recon to report, in your terminal.
5
+ Author: AwareXone
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/awarexone/Agentic-Bug-Hunter
8
+ Project-URL: Repository, https://github.com/awarexone/Agentic-Bug-Hunter
9
+ Project-URL: Issues, https://github.com/awarexone/Agentic-Bug-Hunter/issues
10
+ Keywords: security,bug-bounty,recon,pentest,ai-agent,vulnerability
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Operating System :: POSIX
14
+ Classifier: Environment :: Console
15
+ Classifier: Topic :: Security
16
+ Classifier: Intended Audience :: Developers
17
+ Requires-Python: >=3.10
18
+ Description-Content-Type: text/markdown
19
+ License-File: LICENSE
20
+ Requires-Dist: requests>=2.32.3
21
+ Requires-Dist: mcp>=1.28
22
+ Provides-Extra: test
23
+ Requires-Dist: pytest>=8.3.2; extra == "test"
24
+ Dynamic: license-file
25
+
26
+ <p align="center">
27
+ <img src="assets/banner.png" alt="Agentic Bug Hunter - by AwareXone - AI-powered bug bounty reconnaissance and vulnerability discovery" width="100%"/>
28
+ </p>
29
+
30
+ <p align="center">
31
+ <b>AI-powered bug bounty hunting — recon to report, in your terminal.</b>
32
+ <br/>
33
+ <a href="#what-is-this">What Is This</a>
34
+ ·
35
+ <a href="#trusted-by-engineers-at">Trusted By</a>
36
+ ·
37
+ <a href="#standalone-mode-no-subscription-required">Free Setup</a>
38
+ ·
39
+ <a href="#quick-start">Quick Start</a>
40
+ ·
41
+ <a href="#commands">Commands</a>
42
+ ·
43
+ <a href="#what-it-finds">What It Finds</a>
44
+ ·
45
+ <a href="#more-from-awarexone">AXguard</a>
46
+ ·
47
+ <a href="#support-this-project">Support</a>
48
+ ·
49
+ <a href="FAQ.md">FAQ</a>
50
+ </p>
51
+
52
+ <p align="center">
53
+ <a href="https://github.com/Awarexone/Agentic-Bug-Hunter/blob/main/LICENSE"><img src="https://img.shields.io/badge/License-MIT-yellow.svg?style=flat-square" alt="MIT License"></a>
54
+ <img src="https://img.shields.io/badge/Python-3.10+-3776AB.svg?style=flat-square&logo=python&logoColor=white" alt="Python 3.10+">
55
+ <a href="https://claude.ai/claude-code"><img src="https://img.shields.io/badge/Claude_Code-Plugin-D97706.svg?style=flat-square" alt="Claude Code Plugin"></a>
56
+ <a href="https://github.com/Awarexone/Agentic-Bug-Hunter/actions/workflows/tests.yml"><img src="https://img.shields.io/github/actions/workflow/status/Awarexone/Agentic-Bug-Hunter/tests.yml?branch=main&style=flat-square&label=tests" alt="Tests"></a>
57
+ <a href="https://github.com/Awarexone/Agentic-Bug-Hunter/stargazers"><img src="https://img.shields.io/github/stars/Awarexone/Agentic-Bug-Hunter?style=flat-square&color=yellow" alt="GitHub Stars"></a>
58
+ </p>
59
+
60
+ <p align="center">
61
+ <a href="https://trendshift.io/repositories/23808?utm_source=repository-badge&amp;utm_medium=badge&amp;utm_campaign=badge-repository-23808" target="_blank" rel="noopener noreferrer"><img src="https://trendshift.io/api/badge/repositories/23808" alt="Awarexone%2FAgentic-Bug-Hunter | Trendshift" width="250" height="55"/></a>
62
+ </p>
63
+
64
+ <p align="center">
65
+ Built and maintained by <b>AwareXone</b> · <a href="https://www.awarexone.com">Website</a> · <a href="https://x.com/awarexone">X</a> · <a href="https://github.com/Awarexone">GitHub</a>
66
+ </p>
67
+
68
+ <p align="center">
69
+ <img src="assets/socialsafe-blurb.png" alt="SocialSafe by AwareXone provides case review and assistance for hacked, disabled, locked, restricted, and inaccessible social media accounts in Malaysia and worldwide by remote review. Assistance is best-effort, and final decisions remain with the platform." width="720"/>
70
+ </p>
71
+
72
+ <p align="center">
73
+ <a href="https://www.awarexone.com/all-types-of-social-media-problem-solutions#case-review">
74
+ <img src="assets/apply-case-review-btn.png" alt="Apply for Case Review" height="48"/>
75
+ </a>
76
+ </p>
77
+
78
+ <p align="center">
79
+ <a href="https://fluxionai.world/register?source=github&campaign=github-awarexone&promo=AWAREXONE">
80
+ <img src="assets/fluxion-partner-banner.jpg" alt="Fluxion AI — One gateway to the world's leading AI models" width="720"/>
81
+ </a>
82
+ </p>
83
+
84
+ <p align="center">
85
+ <b>One gateway to the world's leading AI models</b><br/>
86
+ <sub>AI model access &amp; operations · partner for BugHunter standalone mode</sub>
87
+ </p>
88
+
89
+ <p align="center">
90
+ <a href="https://fluxionai.world/register?source=github&campaign=github-awarexone&promo=AWAREXONE"><b>Register with partner link →</b></a>
91
+ · promo <code>AWAREXONE</code>
92
+ · <a href="https://docs.fluxionai.world/user-guide/help-center">Docs</a>
93
+ · <a href="https://fluxionai.world/model-plaza">Model Plaza</a>
94
+ </p>
95
+
96
+ ---
97
+
98
+ ## Trusted By Engineers At
99
+
100
+ <p align="center"><i>Where this project's stargazers say they work.</i></p>
101
+
102
+ <p align="center">
103
+ <img src="https://img.shields.io/badge/HackerOne-494649?style=for-the-badge&logo=hackerone&logoColor=white" alt="HackerOne"/>
104
+ <img src="https://img.shields.io/badge/Bugcrowd-F26822?style=for-the-badge&logo=bugcrowd&logoColor=white" alt="Bugcrowd"/>
105
+ <img src="https://img.shields.io/badge/IBM-052FAD?style=for-the-badge" alt="IBM"/>
106
+ <img src="https://img.shields.io/badge/Huawei-FF0000?style=for-the-badge&logo=huawei&logoColor=white" alt="Huawei"/>
107
+ <img src="https://img.shields.io/badge/Microsoft-0078D4?style=for-the-badge" alt="Microsoft"/>
108
+ <img src="https://img.shields.io/badge/OffSec-1A1A1A?style=for-the-badge" alt="OffSec"/>
109
+ <img src="https://img.shields.io/badge/TCS-EE3A43?style=for-the-badge&logo=tcs&logoColor=white" alt="TCS"/>
110
+ <img src="https://img.shields.io/badge/Tencent-1289FF?style=for-the-badge" alt="Tencent"/>
111
+ <img src="https://img.shields.io/badge/Apple-000000?style=for-the-badge&logo=apple&logoColor=white" alt="Apple"/>
112
+ <img src="https://img.shields.io/badge/Canonical-E95420?style=for-the-badge&logo=canonical&logoColor=white" alt="Canonical"/>
113
+ <img src="https://img.shields.io/badge/Cognizant-1662BE?style=for-the-badge" alt="Cognizant"/>
114
+ <img src="https://img.shields.io/badge/Ericsson-0082F0?style=for-the-badge&logo=ericsson&logoColor=white" alt="Ericsson"/>
115
+ <img src="https://img.shields.io/badge/Goldman_Sachs-7399C6?style=for-the-badge&logo=goldmansachs&logoColor=white" alt="Goldman Sachs"/>
116
+ <img src="https://img.shields.io/badge/Google-4285F4?style=for-the-badge&logo=google&logoColor=white" alt="Google"/>
117
+ <img src="https://img.shields.io/badge/HashiCorp-000000?style=for-the-badge&logo=hashicorp&logoColor=white" alt="HashiCorp"/>
118
+ <img src="https://img.shields.io/badge/Intel-0071C5?style=for-the-badge&logo=intel&logoColor=white" alt="Intel"/>
119
+ <img src="https://img.shields.io/badge/KPMG-00338D?style=for-the-badge" alt="KPMG"/>
120
+ <img src="https://img.shields.io/badge/Meta-0467DF?style=for-the-badge&logo=meta&logoColor=white" alt="Meta"/>
121
+ <img src="https://img.shields.io/badge/Mozilla-000000?style=for-the-badge&logo=mozilla&logoColor=white" alt="Mozilla"/>
122
+ <img src="https://img.shields.io/badge/Nvidia-76B900?style=for-the-badge&logo=nvidia&logoColor=white" alt="Nvidia"/>
123
+ <img src="https://img.shields.io/badge/PwC-D04A02?style=for-the-badge" alt="PwC"/>
124
+ <img src="https://img.shields.io/badge/Qualcomm-3253DC?style=for-the-badge&logo=qualcomm&logoColor=white" alt="Qualcomm"/>
125
+ <img src="https://img.shields.io/badge/Siemens-009999?style=for-the-badge&logo=siemens&logoColor=white" alt="Siemens"/>
126
+ <img src="https://img.shields.io/badge/Snap-FFFC00?style=for-the-badge&logo=snapchat&logoColor=black" alt="Snap"/>
127
+ <img src="https://img.shields.io/badge/SpaceX-000000?style=for-the-badge&logo=spacex&logoColor=white" alt="SpaceX"/>
128
+ <img src="https://img.shields.io/badge/Synack-2C2C2C?style=for-the-badge" alt="Synack"/>
129
+ <img src="https://img.shields.io/badge/Tsinghua-660874?style=for-the-badge" alt="Tsinghua"/>
130
+ <img src="https://img.shields.io/badge/Wipro-341C53?style=for-the-badge&logo=wipro&logoColor=white" alt="Wipro"/>
131
+ <img src="https://img.shields.io/badge/YesWeHack-24BDB4?style=for-the-badge" alt="YesWeHack"/>
132
+ <img src="https://img.shields.io/badge/Zscaler-0068B5?style=for-the-badge" alt="Zscaler"/>
133
+ </p>
134
+
135
+ <p align="center">
136
+ <sub>
137
+ Compiled from public GitHub profiles of this repository's stargazers -
138
+ 43 people across 30 organizations, counted from the employer
139
+ each person lists on their own profile or from their public organization
140
+ memberships. No individual accounts are named. These companies have not
141
+ endorsed or sponsored this project; their logos are shown as trademarks of
142
+ their respective owners.
143
+ </sub>
144
+ </p>
145
+
146
+ ---
147
+ ## What Is This?
148
+
149
+ Agentic Bug Hunter finds real, reportable bugs, not theoretical ones. Point it at a target and it runs recon, tests for vulnerabilities, validates findings against a strict gate, and writes a submission-ready report for HackerOne, Bugcrowd, Intigriti, or Immunefi.
150
+
151
+ It remembers everything: patterns found on one target inform the next, and sessions pick up where they left off.
152
+
153
+ Works as a [Claude Code](https://claude.ai/claude-code) plugin, or as a fully standalone CLI (`bughunter`) with no subscription required.
154
+
155
+ ---
156
+
157
+ ## Standalone Mode: No Subscription Required
158
+
159
+ **You no longer need Claude Code, Claude Pro, or any paid AI subscription.**
160
+
161
+ Install once, use the `bughunter` command from any terminal on your machine:
162
+
163
+ ```bash
164
+ git clone https://github.com/Awarexone/Agentic-Bug-Hunter.git
165
+ cd Agentic-Bug-Hunter
166
+ ./install.sh --agent standalone
167
+ ```
168
+
169
+ Rerun the same command after pulling updates. The installer detects and
170
+ refreshes the active managed `bughunter` command, including older installations
171
+ under `/usr/local/bin` or `~/.local/bin`, while preserving your saved provider
172
+ configuration in `~/.bughunter/config.json`.
173
+
174
+ To uninstall the standalone command while keeping its configuration:
175
+
176
+ ```bash
177
+ ./uninstall.sh --agent standalone
178
+ ```
179
+
180
+ Use `--purge-config` to also delete `~/.bughunter/config.json`. The uninstaller
181
+ also supports `claude`, `opencode`, `pi`, `codex`, `agents`, and `all` targets.
182
+
183
+ ```
184
+ bughunter help # show every command
185
+ bughunter setup # choose your AI provider (Ollama is free + offline)
186
+ bughunter recon target.com # map the attack surface
187
+ bughunter hunt target.com # hunt for vulnerabilities
188
+ bughunter validate "finding" # 7-Question Gate on your finding
189
+ bughunter report # write a submission-ready report
190
+ bughunter chat # interactive AI hunting shell
191
+ bughunter providers # list all available AI providers
192
+ bughunter models # list models and show the selected one
193
+ bughunter status # check which provider is active
194
+ bughunter h target.com # short alias for hunt
195
+ bughunter r target.com # short alias for recon
196
+ bughunter v "finding" # short alias for validate
197
+ ```
198
+
199
+ ### Free AI Providers (auto-detected, free-first priority)
200
+
201
+ | Provider | Cost | Privacy | Speed | Get Started |
202
+ |:---|:---|:---|:---|:---|
203
+ | **Ollama** | 100% free · runs locally | Full - stays on your machine | Fast | `ollama pull qwen2.5:14b` |
204
+ | **Groq** | Free tier available | Cloud | Very fast | [console.groq.com](https://console.groq.com) → get API key |
205
+ | **DeepSeek** | Very cheap (v4-flash / v4-pro) | Cloud | Fast | [platform.deepseek.com](https://platform.deepseek.com) |
206
+ | Claude API | Paid | Cloud | Fast | [console.anthropic.com](https://console.anthropic.com) |
207
+ | OpenAI | Paid | Cloud | Fast | [platform.openai.com](https://platform.openai.com) |
208
+ | **Grok (xAI)** | Paid | Cloud | Fast | [console.x.ai](https://console.x.ai) → `grok-4.5` |
209
+ | **OpenRouter** | Subscription / pay-as-you-go | Cloud | Fast | [openrouter.ai/keys](https://openrouter.ai/keys) → get API key |
210
+ | **OrcaRouter** | Subscription / pay-as-you-go | Cloud | Fast | [orcarouter.ai](https://www.orcarouter.ai) → get API key |
211
+ | **Fluxion** | Subscription / pay-as-you-go | Cloud | Fast | [fluxionai.world](https://fluxionai.world/register?source=github&campaign=github-awarexone&promo=AWAREXONE) → get API key · [docs](https://docs.fluxionai.world/user-guide/help-center) · [Model Plaza](https://fluxionai.world/model-plaza) |
212
+ | **LiteLLM** | Uses your existing provider keys | Cloud / self-hosted proxy | Fast | [docs.litellm.ai](https://docs.litellm.ai) → one gateway for 100+ models |
213
+
214
+ BugHunter auto-detects providers in this order: **Ollama → Groq → DeepSeek → … → OrcaRouter → OpenRouter → Fluxion → Claude → OpenAI**. LiteLLM is opt-in (selected explicitly or when `LITELLM_API_KEY` is set) so it never preempts a provider you already configured.
215
+
216
+ Switch providers or choose an installed Ollama model anytime: `bughunter setup`.
217
+ The setup can also be fully non-interactive:
218
+
219
+ ```bash
220
+ bughunter setup --provider ollama --model qwen2.5:14b
221
+ ```
222
+
223
+ For a one-off override, put the option before the command:
224
+
225
+ ```bash
226
+ bughunter --provider ollama --model qwen3:14b hunt target.com
227
+ ```
228
+
229
+ ### Zero-cost fully offline setup
230
+
231
+ ```bash
232
+ # 1. Install Ollama (runs AI locally, no internet needed after download)
233
+ curl -fsSL https://ollama.ai/install.sh | sh
234
+ ollama pull qwen2.5:14b # ~9 GB, one-time download
235
+
236
+ # 2. Install BugHunter
237
+ git clone https://github.com/Awarexone/Agentic-Bug-Hunter.git
238
+ cd Agentic-Bug-Hunter
239
+ ./install.sh --agent standalone # creates system-wide 'bughunter' command
240
+
241
+ # 3. Hunt
242
+ bughunter setup # choose Ollama, then choose one of its installed models
243
+ bughunter recon target.com
244
+ ```
245
+
246
+ ### Groq setup (free cloud, fastest option)
247
+
248
+ ```bash
249
+ export GROQ_API_KEY="your-key-here" # free at console.groq.com
250
+ ./install.sh --agent standalone
251
+ bughunter setup # choose Groq
252
+ bughunter hunt target.com
253
+ ```
254
+
255
+ ### Fluxion setup (multi-model gateway)
256
+
257
+ Fluxion is an optional OpenAI-compatible gateway (`https://fluxionai.world/v1`). It is **not** the default provider — pick it in `bughunter setup`, or set `BRAIN_PROVIDER=fluxion` when you want it.
258
+
259
+ ```bash
260
+ # 1. Register (AwareXone partner link) and create an API key
261
+ # https://fluxionai.world/register?source=github&campaign=github-awarexone&promo=AWAREXONE
262
+ # Docs: https://docs.fluxionai.world/user-guide/help-center
263
+ # Models: https://fluxionai.world/model-plaza
264
+
265
+ export FLUXION_API_KEY="your-key-here"
266
+ ./install.sh --agent standalone
267
+ bughunter setup --provider fluxion --model openai/gpt-4o
268
+ bughunter hunt target.com
269
+
270
+ # Or one-off:
271
+ bughunter --provider fluxion --model openai/gpt-4o hunt target.com
272
+ ```
273
+
274
+ ---
275
+
276
+ ## Quick Start
277
+
278
+ **Option A - standalone (no subscription, works for everyone)**
279
+
280
+ ```bash
281
+ git clone https://github.com/Awarexone/Agentic-Bug-Hunter.git
282
+ cd Agentic-Bug-Hunter
283
+ ./install.sh --agent standalone # creates system-wide 'bughunter' command
284
+ bughunter setup # pick a free AI provider
285
+ bughunter recon target.com
286
+ bughunter hunt target.com
287
+ bughunter validate "my finding"
288
+ bughunter report
289
+ ```
290
+
291
+ **Option B - Claude Code plugin** *(requires Claude Code)*
292
+
293
+ ```bash
294
+ git clone https://github.com/Awarexone/Agentic-Bug-Hunter.git
295
+ cd Agentic-Bug-Hunter
296
+ chmod +x install_tools.sh && ./install_tools.sh # subfinder · httpx · nuclei · katana · ffuf
297
+ chmod +x install.sh && ./install.sh # skills + commands → ~/.claude/
298
+ ```
299
+
300
+ ```bash
301
+ claude
302
+ /recon target.com # map the attack surface
303
+ /hunt target.com # test for vulnerabilities
304
+ /validate # run the 7-Question Gate
305
+ /report # write the submission
306
+ ```
307
+
308
+ **Option C - let Claude install it** *(Claude Code only)*
309
+
310
+ Open your terminal, run `claude`, then paste:
311
+
312
+ ```text
313
+ Install the Claude Bug Bounty toolkit from https://github.com/Awarexone/Agentic-Bug-Hunter
314
+ into ~/tools/. Clone the repo, run ./install_tools.sh then ./install.sh.
315
+ Verify /recon /hunt /validate /report are available.
316
+ ```
317
+
318
+ ---
319
+
320
+ ## MCP
321
+
322
+ Use Agentic-Bug-Hunter from AI agents (Cursor, Claude Code, Codex, OpenCode).
323
+
324
+ ```text
325
+ AI Agent → Agentic-Bug-Hunter MCP → Scope → Recon → Hunt → Validate → Report
326
+ ```
327
+
328
+ ```bash
329
+ pip install 'mcp>=1.28'
330
+ ./install.sh --agent mcp
331
+ bughunter mcp doctor
332
+ bughunter mcp serve
333
+ ```
334
+
335
+ MCP is an adapter over the existing research engine — not a second scanner. Active tools require scope and explicit approval. See [docs/mcp.md](docs/mcp.md).
336
+
337
+ ---
338
+
339
+ ## Commands
340
+
341
+ ### Core Workflow
342
+
343
+ | Command | What It Does |
344
+ |:---|:---|
345
+ | `/recon target.com` | Subdomain enum · live host probing · URL crawl · nuclei sweep |
346
+ | `/hunt target.com` | Tests IDOR · auth bypass · SSRF · XSS · SQLi · logic flaws and more |
347
+ | `/validate` | 7-Question Gate - kills weak findings before you waste time reporting |
348
+ | `/report` | Generates an H1 · Bugcrowd · Intigriti · Immunefi submission in 60s |
349
+ | `/autopilot target.com` | Full loop, autonomous - scope → recon → hunt → validate → report |
350
+
351
+ ### Recon & Enumeration
352
+
353
+ | Command | What It Does |
354
+ |:---|:---|
355
+ | `/surface target.com` | Ranked attack surface from recon data + memory |
356
+ | `/scope-aggregate <program>` | All in-scope assets across H1 · Bugcrowd · Intigriti · YWH · Immunefi |
357
+ | `/cloud-recon --keyword <name>` | Public S3 · Azure · GCP buckets + CloudFlare-bypass origin IPs |
358
+ | `/param-discover <url>` | Hidden HTTP parameters via Arjun · x8 |
359
+ | `/secrets-hunt --js-bundle <dir>` | Leaked credentials in source, JS bundles, or a GitHub org |
360
+ | `/takeover --recon <dir>` | Subdomain takeover candidates via dnsReaper · subjack |
361
+ | `/scan-cves <host>` | Focused nuclei high/critical sweep + optional log4j-scan |
362
+ | `/bypass-403 <url>` | Header · method · encoding tricks against 403/401 |
363
+ | `/portscan <host>` | Open ports + non-web services (Redis · Docker API · DBs · RDP) via naabu/smap |
364
+ | `/screenshot -l urls.txt` | Screenshot live hosts into an HTML gallery - triage + PoC evidence |
365
+
366
+ ### Scanners (Web + LLM)
367
+
368
+ | Command | What It Does |
369
+ |:---|:---|
370
+ | `/cors <url>` | CORS misconfig - origin reflection · null · credentialed |
371
+ | `/crlf <url>` | CRLF / response-splitting + host-header injection |
372
+ | `/nosqli <url>` | NoSQL injection (operator bypass · `$where` timing) |
373
+ | `/jwt-scan <token>` | Offline JWT toolkit - alg:none · RS256→HS256 · secret crack |
374
+ | `/oob <target>` | Out-of-band listener (interactsh) for blind SSRF/XXE/SQLi |
375
+ | `/sast <path>` | Semgrep security packs over fetched JS/source → ranked sinks |
376
+ | `/domxss <url>` | Confirms DOM XSS in headless Chromium - reports only when the payload executes |
377
+ | `/llm-redteam <endpoint>` | LLM red-team corpus - prompt injection · jailbreak · exfil |
378
+
379
+ ### Smart Contract (Web3)
380
+
381
+ | Command | What It Does |
382
+ |:---|:---|
383
+ | `/web3-audit <contract.sol>` | 10-class smart contract audit with Foundry PoC template |
384
+ | `/token-scan <contract>` | Rug pull scanner - mint authority · LP lock · honeypot · bonding curve |
385
+
386
+ ### Session & Utility
387
+
388
+ | Command | What It Does |
389
+ |:---|:---|
390
+ | `/pickup target.com` | Resume from last session - untested endpoints first |
391
+ | `/intel target.com` | CVEs + disclosed reports relevant to this target |
392
+ | `/chain` | Bug A found → finds bugs B and C that chain with it |
393
+ | `/scope <asset>` | Checks if a domain or URL is in scope before you test it |
394
+ | `/triage` | Quick 2-minute go/no-go check |
395
+ | `/remember` | Logs the current finding or technique to hunt memory |
396
+ | `/memory-gc` | Inspect or rotate hunt-memory JSONL files (10 MB cap, 3 backups) |
397
+ | `/arsenal [tool]` | Lists installed external tools or prints an install hint |
398
+
399
+ ---
400
+
401
+ ## What It Finds
402
+
403
+ <details>
404
+ <summary><b>26 Web2 Vulnerability Classes</b></summary>
405
+ <br>
406
+
407
+ | Vulnerability | Typical Payout |
408
+ |:---|:---|
409
+ | IDOR / BOLA | $500 – $5K |
410
+ | Auth Bypass | $1K – $10K |
411
+ | XSS (Stored / Reflected / DOM) | $500 – $5K |
412
+ | SSRF | $1K – $15K |
413
+ | Business Logic | $500 – $10K |
414
+ | Race Conditions | $500 – $5K |
415
+ | SQL Injection | $1K – $15K |
416
+ | OAuth / OIDC | $500 – $5K |
417
+ | File Upload → RCE | $500 – $10K |
418
+ | GraphQL Auth Bypass | $1K – $10K |
419
+ | LLM / Prompt Injection | $500 – $10K |
420
+ | API Misconfiguration (mass assignment · JWT · CORS) | $500 – $5K |
421
+ | Account Takeover | $1K – $20K |
422
+ | SSTI | $2K – $10K |
423
+ | Subdomain Takeover | $200 – $5K |
424
+ | Cloud / Infra Exposure | $500 – $20K |
425
+ | HTTP Request Smuggling | $5K – $30K |
426
+ | Cache Poisoning | $1K – $10K |
427
+ | MFA / 2FA Bypass | $1K – $10K |
428
+ | SAML / SSO Attack | $2K – $20K |
429
+ | Error Disclosure / Debug Endpoints | $200 – $5K |
430
+ | CSS Injection | $500 – $5K |
431
+ | LFI → RCE | $1K – $15K |
432
+ | Insecure Deserialization | $5K – $30K |
433
+ | Dependency Confusion / Supply Chain | $1K – $20K |
434
+ | Padding Oracle / Crypto Misuse | $2K – $20K |
435
+
436
+ </details>
437
+
438
+ <details>
439
+ <summary><b>10 Web3 / Smart Contract Bug Classes</b></summary>
440
+ <br>
441
+
442
+ | Vulnerability | Typical Payout |
443
+ |:---|:---|
444
+ | Accounting Desync | $50K – $2M |
445
+ | Access Control | $50K – $2M |
446
+ | Incomplete Code Path | $50K – $2M |
447
+ | Off-By-One | $10K – $100K |
448
+ | Oracle Manipulation | $100K – $2M |
449
+ | ERC4626 Share Inflation | $50K – $500K |
450
+ | Reentrancy | $10K – $500K |
451
+ | Flash Loan Attack | $100K – $2M |
452
+ | Signature Replay | $10K – $200K |
453
+ | Proxy / Upgrade | $50K – $2M |
454
+
455
+ </details>
456
+
457
+ ---
458
+
459
+ ## AI Agents
460
+
461
+ Nine specialists, each built for one job:
462
+
463
+ | Agent | Role |
464
+ |:---|:---|
465
+ | `recon-agent` | Subdomain enum · live host discovery · URL crawl |
466
+ | `report-writer` | Impact-first reports that get paid, not N/A'd |
467
+ | `validator` | Runs the 7-Question Gate - kills weak findings |
468
+ | `web3-auditor` | Smart contract audit across 10 bug classes |
469
+ | `chain-builder` | Bug A → finds bugs B and C that chain with it |
470
+ | `autopilot` | Full hunt loop with safety checkpoints |
471
+ | `recon-ranker` | Ranks attack surface by highest-value targets first |
472
+ | `token-auditor` | Meme coin / token rug pull and security scan |
473
+ | `credential-hunter` | Wordlist gen → OSINT → breach-check → spray (hard-stop before spray) |
474
+
475
+ ---
476
+
477
+ ## How It Works
478
+
479
+ <div align="center">
480
+
481
+ ```
482
+ You ─▶ /recon ─▶ /hunt ─▶ /validate ─▶ /report
483
+ │ │
484
+ ▼ ▼
485
+ Hunt Memory 7-Question Gate
486
+ (persists across (kills weak findings
487
+ sessions) before you submit)
488
+ ```
489
+
490
+ </div>
491
+
492
+ Every tool in the pipeline is gated on whether it's installed - missing tools are skipped, not errors. Auth headers set once carry through httpx · katana · ffuf · nuclei · dalfox automatically.
493
+
494
+ ---
495
+
496
+ ## Project Structure
497
+
498
+ <details>
499
+ <summary><b>Click to expand the full tree</b></summary>
500
+ <br>
501
+
502
+ ```
503
+ Agentic-Bug-Hunter/
504
+
505
+ ├── skills/ # AI knowledge bases - loaded as /skill-name
506
+ │ ├── bug-bounty/ # Master workflow - all vuln classes, LLM testing, chains
507
+ │ ├── bb-methodology/ # Hunting mindset · 5-phase workflow · session discipline
508
+ │ ├── web2-recon/ # Subdomain enum · live host discovery · URL crawl
509
+ │ ├── web2-vuln-classes/ # 26 bug classes with bypass tables
510
+ │ ├── security-arsenal/ # Payloads · bypass tables · gf patterns
511
+ │ ├── triage-validation/ # 7-Question Gate · 4 gates · never-submit list
512
+ │ ├── report-writing/ # Templates for H1 · Bugcrowd · Intigriti · Immunefi
513
+ │ ├── web3-audit/ # Smart contract bugs · Foundry PoC · 10 bug classes
514
+ │ ├── meme-coin-audit/ # Rug pull detection · LP attacks · bonding curve
515
+ │ ├── credential-attack/ # Password spray methodology · legal guardrails
516
+ │ └── client-reverse/ # Request-signing / anti-bot token reversal
517
+
518
+ ├── commands/ # 33 slash commands (/recon /hunt /validate /report …)
519
+ ├── agents/ # 9 specialized AI agents (recon, validator, reporter …)
520
+
521
+ ├── tools/ # Python + shell scanner pipeline (~35 tools)
522
+ │ ├── hunt.py # Master orchestrator
523
+ │ ├── recon_engine.sh # Subdomain + URL discovery
524
+ │ ├── vuln_scanner.sh # XSS · SQLi · SSRF · SSTI probe pipeline
525
+ │ ├── validate.py # 4-gate finding validator with identity checks
526
+ │ └── … # 30+ more scanners - see tools/README.md
527
+
528
+ ├── memory/ # Cross-session hunt memory (pattern DB · audit log)
529
+ ├── rules/ # Always-active hunting + reporting rules
530
+ ├── tests/ # Regression test suite (pytest)
531
+ ├── web3/ # 13-chapter smart contract audit guide
532
+ ├── mcp/ # MCP — native BugHunter server + Burp · Caido · HackerOne
533
+ ├── wordlists/ # Curated wordlists + SecLists / PayloadsAllTheThings refs
534
+ ├── scripts/ # Dork runner · full hunt pipeline
535
+ ├── hooks/ # Claude Code hook configuration
536
+ ├── site/ # bughunter.fun landing page
537
+ ├── demo/ # Local vulnerable target for tutorial recordings
538
+
539
+ ├── docs/ # Extended documentation
540
+ │ ├── advanced-techniques.md # Exploitation techniques + chaining strategies
541
+ │ ├── auth-sessions.md # Auth header management guide
542
+ │ ├── payloads.md # Payload reference for common vuln classes
543
+ │ ├── smart-contract-audit.md# Smart contract audit deep-dive
544
+ │ ├── TUTORIAL.md # A→Z video tutorial walkthrough
545
+ │ └── TODOS.md # Open improvement items
546
+
547
+ ├── .github/ # GitHub community health files
548
+ │ ├── CONTRIBUTING.md # How to contribute
549
+ │ ├── CODE_OF_CONDUCT.md # Community standards
550
+ │ ├── SECURITY.md # Vulnerability reporting policy
551
+ │ ├── PULL_REQUEST_TEMPLATE.md
552
+ │ └── ISSUE_TEMPLATE/ # Bug report · Feature request · False positive
553
+
554
+ ├── engine.py # Standalone CLI - 'bughunter' command, no subscription needed
555
+ ├── brain.py # Multi-provider LLM layer (Ollama · Groq · DeepSeek · Claude · OpenAI)
556
+ ├── agent.py # LangGraph-style ReAct hunting agent
557
+ ├── install.sh # Install skills + commands → ~/.claude/ (or standalone mode)
558
+ ├── install_tools.sh # Install subfinder · httpx · nuclei · katana · ffuf …
559
+ ├── uninstall.sh # Remove skills + commands from ~/.claude/
560
+ ├── uninstall_tools.sh # Remove external scanning tools
561
+ ├── serve.py # Launch local demo target (python3 serve.py)
562
+ ├── config.example.json # Auth session config template
563
+ ├── requirements.txt # Python dependencies
564
+ ├── CLAUDE.md # Claude Code plugin manifest (auto-loaded)
565
+ ├── AGENTS.md # Multi-harness plugin guide (OpenCode · Codex · Pi)
566
+ ├── SKILL.md # Master skill shortcut (auto-loaded by agent harnesses)
567
+ ├── OPENCODE.md # OpenCode-specific installation guide
568
+ ├── CHANGELOG.md # Version history
569
+ ├── FAQ.md # Frequently asked questions
570
+ └── TERMS.md # Terms of use + authorized testing only
571
+ ```
572
+
573
+ </details>
574
+
575
+ ---
576
+
577
+ ## Installation
578
+
579
+ **Prerequisites:**
580
+
581
+ ```bash
582
+ # macOS
583
+ brew install go python3 jq
584
+
585
+ # Linux (Ubuntu/Debian)
586
+ sudo apt install golang python3 jq
587
+ ```
588
+
589
+ **Scanning tools** (installs subfinder · httpx · nuclei · katana · ffuf · gau · dnsx · nmap · dalfox and more):
590
+
591
+ ```bash
592
+ chmod +x install_tools.sh && ./install_tools.sh
593
+ ```
594
+
595
+ **Standalone `bughunter` command** (no subscription, works without Claude Code):
596
+
597
+ ```bash
598
+ ./install.sh --agent standalone
599
+ bughunter setup # choose Ollama (free) · Groq (free tier) · DeepSeek (cheap) · Claude · OpenAI
600
+ ```
601
+
602
+ **AI skills + commands** into Claude Code:
603
+
604
+ ```bash
605
+ chmod +x install.sh && ./install.sh
606
+ ```
607
+
608
+ **Other agent harnesses:**
609
+
610
+ ```bash
611
+ ./install.sh --agent opencode # OpenCode
612
+ ./install.sh --agent pi # Pi Agent
613
+ ./install.sh --agent codex # Codex
614
+ ./install.sh --agent all # every supported target
615
+ ```
616
+
617
+ **Optional: Chaos API key** (better subdomain coverage)
618
+
619
+ ```bash
620
+ export CHAOS_API_KEY="your-key"
621
+ echo 'export CHAOS_API_KEY="your-key"' >> ~/.zshrc
622
+ ```
623
+
624
+ ---
625
+
626
+ ## Rules
627
+
628
+ Seven rules run every session, no exceptions:
629
+
630
+ | # | Rule | Why |
631
+ |:-:|:---|:---|
632
+ | 1 | **Read full scope first** | Only test what the program authorizes |
633
+ | 2 | **Real bugs only** | "Can an attacker do this RIGHT NOW?" - if no, stop |
634
+ | 3 | **Kill weak findings** | A 30-second check saves hours of wasted reporting |
635
+ | 4 | **Never go out of scope** | One wrong request can get you banned |
636
+ | 5 | **5-minute rule** | No progress after 5 minutes? Move on |
637
+ | 6 | **Validate before report** | `/validate` before spending 30 minutes writing |
638
+ | 7 | **Impact first** | Test the bugs with the worst consequences first |
639
+
640
+ ---
641
+
642
+ ## Contributing
643
+
644
+ PRs welcome. Most valuable:
645
+ - New scanner modules or detection techniques
646
+ - Payload additions to `skills/security-arsenal/SKILL.md`
647
+ - Methodology improvements backed by paid reports
648
+ - Platform support (YesWeHack · Synack · HackenProof)
649
+
650
+ ```bash
651
+ git checkout -b feature/your-contribution
652
+ git commit -m "feat: short description"
653
+ git push origin feature/your-contribution
654
+ ```
655
+
656
+ ---
657
+
658
+ ## Used By
659
+
660
+ <p align="center"><i>Teams and researchers running BugHunter in their workflow.</i></p>
661
+
662
+ <table align="center">
663
+ <tr>
664
+ <td align="center" width="200">
665
+ <a href="https://awarexone.com">
666
+ <img src="assets/awarexone-logo.webp" alt="AwareXone" width="72"/>
667
+ <br/><b>AwareXone</b>
668
+ </a>
669
+ <br/><sub>AI agent vs. scams &amp; fraud</sub>
670
+ </td>
671
+ <td align="center" width="200">
672
+ <a href="ADOPTERS.md">
673
+ <img src="https://img.shields.io/badge/+-Add_your_team-7F55FF?style=for-the-badge" alt="Add your team"/>
674
+ </a>
675
+ <br/><sub>Open a one-line PR</sub>
676
+ </td>
677
+ </tr>
678
+ </table>
679
+
680
+ <p align="center">
681
+ Using BugHunter in your team, program, or workflow? <b><a href="ADOPTERS.md">Add yourself</a></b> - a quick PR to <code>ADOPTERS.md</code>, or open an <a href="https://github.com/Awarexone/Agentic-Bug-Hunter/issues">issue</a>. Real, verifiable entries only.
682
+ </p>
683
+
684
+ ---
685
+
686
+ ## Support This Project
687
+
688
+ If BugHunter helps your hunts, you can fuel more of them — every contribution helps build more open-source security tools.
689
+
690
+ ### Crypto Donations
691
+
692
+ | | Address |
693
+ |:---|:---|
694
+ | **Bitcoin (BTC)** | `1GXwGqmLcnbZWgVNskUAZyw2cmqenkUFNY` |
695
+ | **Solana (SOL)** | `4ArkPu1E7tkrt3d5X84grWzF1xjuLpScgGEy12Bp2cmE` |
696
+
697
+ <p align="center">
698
+ <a href="https://www.buymeacoffee.com/shuvonsec">
699
+ <img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" height="50"/>
700
+ </a>
701
+ </p>
702
+
703
+ ### Sponsorship
704
+
705
+ <p align="center">
706
+ <a href="https://github.com/sponsors/awarexone">
707
+ <img src="https://img.shields.io/badge/Sponsor_AwareXone-ea4aaa?style=for-the-badge&logo=github&logoColor=white" alt="Sponsor awarexone on GitHub"/>
708
+ </a>
709
+ </p>
710
+
711
+ We're open to sponsors. Sponsoring funds new features and keeps the standalone mode free for everyone, and gets your logo and a link right here in the README, plus a credit in every release.
712
+
713
+ Want to sponsor? Use [GitHub Sponsors](https://github.com/sponsors/awarexone), or reach out at [AwareXone.com](https://awarexone.com) / [b2b@awarexone.com](mailto:b2b@awarexone.com).
714
+
715
+ AI model access partner: **[Fluxion AI](https://fluxionai.world/register?source=github&campaign=github-awarexone&promo=AWAREXONE)** — [docs](https://docs.fluxionai.world/user-guide/help-center) · [Model Plaza](https://fluxionai.world/model-plaza).
716
+
717
+ ### AwareXone
718
+
719
+ BugHunter is built and maintained by [AwareXone](https://awarexone.com). Beyond open-source tools like this one, AwareXone builds AI-driven defenses against scams, fraud, and social engineering, and offers social engineering defense and human risk consultancy for organizations. If that's something your team needs, [get in touch](https://awarexone.com).
720
+
721
+ ---
722
+
723
+ ## More from AwareXone
724
+
725
+ Building apps with AI? Pair BugHunter with **[AXguard](https://github.com/Awarexone/AXguard)** — scan and fix common security issues in vibe-coded apps before you ship.
726
+
727
+ <p align="center">
728
+ <a href="https://github.com/Awarexone/AXguard">
729
+ <img src="https://raw.githubusercontent.com/Awarexone/AXguard/main/assets/cover.jpg" alt="AXguard by AwareXone" width="720"/>
730
+ </a>
731
+ </p>
732
+
733
+ <p align="center">
734
+ <a href="https://github.com/Awarexone/AXguard"><b>View AXguard on GitHub →</b></a>
735
+ ·
736
+ <a href="mailto:hello@awarexone.com">hello@awarexone.com</a>
737
+ </p>
738
+
739
+ ---
740
+
741
+ ## Thanks
742
+
743
+ <p align="center">
744
+ <b>29 people</b> have contributed to BugHunter. Click any avatar to open their GitHub profile.
745
+ </p>
746
+
747
+ <table align="center">
748
+ <tr>
749
+ <td align="center" width="110">
750
+ <a href="https://github.com/shuvonsec">
751
+ <img src="https://github.com/shuvonsec.png?size=128" width="64" height="64" alt="shuvonsec"/>
752
+ <br/><sub><b>shuvonsec</b></sub>
753
+ </a>
754
+ </td>
755
+ <td align="center" width="110">
756
+ <a href="https://github.com/shuv0n">
757
+ <img src="https://github.com/shuv0n.png?size=128" width="64" height="64" alt="shuv0n"/>
758
+ <br/><sub><b>shuv0n</b></sub>
759
+ </a>
760
+ </td>
761
+ <td align="center" width="110">
762
+ <a href="https://github.com/letztek">
763
+ <img src="https://github.com/letztek.png?size=128" width="64" height="64" alt="letztek"/>
764
+ <br/><sub><b>letztek</b></sub>
765
+ </a>
766
+ </td>
767
+ <td align="center" width="110">
768
+ <a href="https://github.com/bertolikimberly">
769
+ <img src="https://github.com/bertolikimberly.png?size=128" width="64" height="64" alt="bertolikimberly"/>
770
+ <br/><sub><b>bertolikimberly</b></sub>
771
+ </a>
772
+ </td>
773
+ <td align="center" width="110">
774
+ <a href="https://github.com/venkatas">
775
+ <img src="https://github.com/venkatas.png?size=128" width="64" height="64" alt="venkatas"/>
776
+ <br/><sub><b>venkatas</b></sub>
777
+ </a>
778
+ </td>
779
+ <td align="center" width="110">
780
+ <a href="https://github.com/DebasishTripathy13">
781
+ <img src="https://github.com/DebasishTripathy13.png?size=128" width="64" height="64" alt="DebasishTripathy13"/>
782
+ <br/><sub><b>DebasishTripathy13</b></sub>
783
+ </a>
784
+ </td>
785
+ </tr>
786
+ <tr>
787
+ <td align="center" width="110">
788
+ <a href="https://github.com/adityaax">
789
+ <img src="https://github.com/adityaax.png?size=128" width="64" height="64" alt="adityaax"/>
790
+ <br/><sub><b>adityaax</b></sub>
791
+ </a>
792
+ </td>
793
+ <td align="center" width="110">
794
+ <a href="https://github.com/BeargleIndustries">
795
+ <img src="https://github.com/BeargleIndustries.png?size=128" width="64" height="64" alt="BeargleIndustries"/>
796
+ <br/><sub><b>BeargleIndustries</b></sub>
797
+ </a>
798
+ </td>
799
+ <td align="center" width="110">
800
+ <a href="https://github.com/ftacorn">
801
+ <img src="https://github.com/ftacorn.png?size=128" width="64" height="64" alt="ftacorn"/>
802
+ <br/><sub><b>ftacorn</b></sub>
803
+ </a>
804
+ </td>
805
+ <td align="center" width="110">
806
+ <a href="https://github.com/ultra-supara">
807
+ <img src="https://github.com/ultra-supara.png?size=128" width="64" height="64" alt="ultra-supara"/>
808
+ <br/><sub><b>ultra-supara</b></sub>
809
+ </a>
810
+ </td>
811
+ <td align="center" width="110">
812
+ <a href="https://github.com/AurisDSP">
813
+ <img src="https://github.com/AurisDSP.png?size=128" width="64" height="64" alt="AurisDSP"/>
814
+ <br/><sub><b>AurisDSP</b></sub>
815
+ </a>
816
+ </td>
817
+ <td align="center" width="110">
818
+ <a href="https://github.com/Edneam">
819
+ <img src="https://github.com/Edneam.png?size=128" width="64" height="64" alt="Edneam"/>
820
+ <br/><sub><b>Edneam</b></sub>
821
+ </a>
822
+ </td>
823
+ </tr>
824
+ <tr>
825
+ <td align="center" width="110">
826
+ <a href="https://github.com/depapp">
827
+ <img src="https://github.com/depapp.png?size=128" width="64" height="64" alt="depapp"/>
828
+ <br/><sub><b>depapp</b></sub>
829
+ </a>
830
+ </td>
831
+ <td align="center" width="110">
832
+ <a href="https://github.com/Realgagenichols">
833
+ <img src="https://github.com/Realgagenichols.png?size=128" width="64" height="64" alt="Realgagenichols"/>
834
+ <br/><sub><b>Realgagenichols</b></sub>
835
+ </a>
836
+ </td>
837
+ <td align="center" width="110">
838
+ <a href="https://github.com/H4d3es">
839
+ <img src="https://github.com/H4d3es.png?size=128" width="64" height="64" alt="H4d3es"/>
840
+ <br/><sub><b>H4d3es</b></sub>
841
+ </a>
842
+ </td>
843
+ <td align="center" width="110">
844
+ <a href="https://github.com/thuvh">
845
+ <img src="https://github.com/thuvh.png?size=128" width="64" height="64" alt="thuvh"/>
846
+ <br/><sub><b>thuvh</b></sub>
847
+ </a>
848
+ </td>
849
+ <td align="center" width="110">
850
+ <a href="https://github.com/onlybugs05">
851
+ <img src="https://github.com/onlybugs05.png?size=128" width="64" height="64" alt="onlybugs05"/>
852
+ <br/><sub><b>onlybugs05</b></sub>
853
+ </a>
854
+ </td>
855
+ <td align="center" width="110">
856
+ <a href="https://github.com/savioruz">
857
+ <img src="https://github.com/savioruz.png?size=128" width="64" height="64" alt="savioruz"/>
858
+ <br/><sub><b>savioruz</b></sub>
859
+ </a>
860
+ </td>
861
+ </tr>
862
+ <tr>
863
+ <td align="center" width="110">
864
+ <a href="https://github.com/Marc-oss-hub">
865
+ <img src="https://github.com/Marc-oss-hub.png?size=128" width="64" height="64" alt="Marc-oss-hub"/>
866
+ <br/><sub><b>Marc-oss-hub</b></sub>
867
+ </a>
868
+ </td>
869
+ <td align="center" width="110">
870
+ <a href="https://github.com/Paebak">
871
+ <img src="https://github.com/Paebak.png?size=128" width="64" height="64" alt="Paebak"/>
872
+ <br/><sub><b>Paebak</b></sub>
873
+ </a>
874
+ </td>
875
+ <td align="center" width="110">
876
+ <a href="https://github.com/NaorYaacov">
877
+ <img src="https://github.com/NaorYaacov.png?size=128" width="64" height="64" alt="NaorYaacov"/>
878
+ <br/><sub><b>NaorYaacov</b></sub>
879
+ </a>
880
+ </td>
881
+ <td align="center" width="110">
882
+ <a href="https://github.com/nurazhardotcom">
883
+ <img src="https://github.com/nurazhardotcom.png?size=128" width="64" height="64" alt="nurazhardotcom"/>
884
+ <br/><sub><b>nurazhardotcom</b></sub>
885
+ </a>
886
+ </td>
887
+ <td align="center" width="110">
888
+ <a href="https://github.com/OctoBored">
889
+ <img src="https://github.com/OctoBored.png?size=128" width="64" height="64" alt="OctoBored"/>
890
+ <br/><sub><b>OctoBored</b></sub>
891
+ </a>
892
+ </td>
893
+ <td align="center" width="110">
894
+ <a href="https://github.com/prodmanpd">
895
+ <img src="https://github.com/prodmanpd.png?size=128" width="64" height="64" alt="prodmanpd"/>
896
+ <br/><sub><b>prodmanpd</b></sub>
897
+ </a>
898
+ </td>
899
+ </tr>
900
+ <tr>
901
+ <td align="center" width="110">
902
+ <a href="https://github.com/SeekAndExploit">
903
+ <img src="https://github.com/SeekAndExploit.png?size=128" width="64" height="64" alt="SeekAndExploit"/>
904
+ <br/><sub><b>SeekAndExploit</b></sub>
905
+ </a>
906
+ </td>
907
+ <td align="center" width="110">
908
+ <a href="https://github.com/Shawanga">
909
+ <img src="https://github.com/Shawanga.png?size=128" width="64" height="64" alt="Shawanga"/>
910
+ <br/><sub><b>Shawanga</b></sub>
911
+ </a>
912
+ </td>
913
+ <td align="center" width="110">
914
+ <a href="https://github.com/zeze-zeze">
915
+ <img src="https://github.com/zeze-zeze.png?size=128" width="64" height="64" alt="zeze-zeze"/>
916
+ <br/><sub><b>zeze-zeze</b></sub>
917
+ </a>
918
+ </td>
919
+ <td align="center" width="110">
920
+ <a href="https://github.com/grave0x">
921
+ <img src="https://github.com/grave0x.png?size=128" width="64" height="64" alt="grave0x"/>
922
+ <br/><sub><b>grave0x</b></sub>
923
+ </a>
924
+ </td>
925
+ <td align="center" width="110">
926
+ <a href="https://github.com/kevinaimonster">
927
+ <img src="https://github.com/kevinaimonster.png?size=128" width="64" height="64" alt="kevinaimonster"/>
928
+ <br/><sub><b>kevinaimonster</b></sub>
929
+ </a>
930
+ </td>
931
+ </tr>
932
+ </table>
933
+
934
+ <p align="center">
935
+ <a href="https://github.com/Awarexone/Agentic-Bug-Hunter/graphs/contributors"><img src="https://img.shields.io/github/contributors/Awarexone/Agentic-Bug-Hunter?style=for-the-badge&color=7F55FF&label=contributors" alt="Contributors"/></a>
936
+ <a href="#contributing"><img src="https://img.shields.io/badge/+-Add_your_name-24292F?style=for-the-badge" alt="Contribute"/></a>
937
+ </p>
938
+ ---
939
+
940
+ <p align="center">
941
+ <a href="https://github.com/shuvonsec">GitHub</a>
942
+ ·
943
+ <a href="https://x.com/awarexone">Twitter</a>
944
+ ·
945
+ <a href="mailto:hello@awarexone.com">hello@awarexone.com</a> · <a href="mailto:shuvon@awarexone.com">shuvon@awarexone.com</a><br>
946
+ <b>Built by bug hunters, for bug hunters.</b><br>
947
+ <sub>MIT License · For authorized security testing only. Always test within an approved bug bounty program scope.</sub>
948
+ </p>
949
+
950
+ <p align="center">
951
+ <a href="https://awarexone.com">
952
+ <img src="assets/awarexone-logo.webp" alt="AwareXone" width="56"/>
953
+ </a>
954
+ <br/>
955
+ <sub>Powered by <a href="https://awarexone.com"><b>AwareXone.com</b></a></sub>
956
+ <br/>
957
+ <sub>
958
+ <a href="https://awarexone.com">Website</a> ·
959
+ <a href="https://x.com/awarexone">X / Twitter</a> ·
960
+ <a href="https://github.com/Awarexone">GitHub</a>
961
+ </sub>
962
+ </p>