
구독 여부와 관계없이 사용할 수 있는 AI 기반 버그 바운티 헌팅 툴킷.
AI 기반 버그 바운티 헌팅 — 리콘부터 보고서까지, 터미널에서.
무료 설정
·
빠른 시작
·
명령어
·
탐지 항목
·
설치
·
FAQ
Powered by AwareXone.com — 사기·스캠에 맞서는 AI 에이전트
💜 후원 모집 중
BugHunter는 후원을 모집합니다. 후원은 새 기능 개발을 지원하고 무료 독립 실행 모드를 모두가 계속 사용할 수 있게 합니다. 후원자에게는 이 README에 로고와 링크가 게재되며, 모든 릴리스에서 크레딧이 제공됩니다.
후원하고 싶으신가요? AwareXone.com 또는 이메일 **[email protected]**으로 연락해 주세요.
전문 버그 바운티 헌팅 툴킷으로, Claude 구독 여부와 관계없이 작동합니다. 타겟을 지정하면 리콘 처리, 취약점 테스트, 엄격한 게이트를 통한 검증, 그리고 HackerOne, Bugcrowd, Intigriti, Immunefi에 바로 제출할 수 있는 보고서 작성을 수행합니다.
모든 것을 기억합니다. 한 타겟에서 발견한 패턴은 다음 타겟에 반영됩니다. 세션은 중단된 지점부터 이어집니다.
Claude Code 플러그인 또는 무료 AI 제공업체로 구동되는 완전 독립형 CLI(bughunter)로 작동합니다.
이제 Claude Code, Claude Pro 또는 유료 AI 구독이 필요하지 않습니다.
한 번 설치하고 나면, 사용자 머신의 어떤 터미널에서든 bughunter 명령어를 사용할 수 있습니다:```bash
git clone https://github.com/shuvonsec/claude-bug-bounty.git
cd claude-bug-bounty
./install.sh --agent standalone
업데이트를 가져온 후 동일한 명령을 다시 실행하세요. 설치 프로그램은 활성 관리형 `bughunter` 명령을 감지하고 새로 고칩니다. 여기에는 `/usr/local/bin` 또는 `~/.local/bin` 아래의 이전 설치도 포함되며, `~/.bughunter/config.json`에 저장된 공급자 구성은 보존됩니다.
구성을 유지하면서 독립 실행형 명령을 제거하려면:```bash
./uninstall.sh --agent standalone
~/.bughunter/config.json도 삭제하려면 --purge-config를 사용하세요. 이 제거 프로그램은
claude, opencode, pi, codex, agents 및 all 대상도 지원합니다.```
bughunter help # show every command
bughunter setup # choose your AI provider (Ollama is free + offline)
bughunter recon target.com # map the attack surface
bughunter hunt target.com # hunt for vulnerabilities
bughunter validate "finding" # 7-Question Gate on your finding
bughunter report # write a submission-ready report
bughunter chat # interactive AI hunting shell
bughunter providers # list all available AI providers
bughunter models # list models and show the selected one
bughunter status # check which provider is active
bughunter h target.com # short alias for hunt
bughunter r target.com # short alias for recon
bughunter v "finding" # short alias for validate
### 무료 AI 제공업체 (자동 감지, 무료 우선)
| 제공업체 | 비용 | 개인정보 | 속도 | 시작하기 |
|:---|:---|:---|:---|:---|
| **Ollama** | 100% 무료 · 로컬에서 실행 | 완전 — 내 기기에 저장 | 빠름 | `ollama pull qwen2.5:14b` |
| **Groq** | 무료 티어 제공 | 클라우드 | 매우 빠름 | [console.groq.com](https://console.groq.com) → API 키 받기 |
| **DeepSeek** | 매우 저렴 (v4-flash / v4-pro) | 클라우드 | 빠름 | [platform.deepseek.com](https://platform.deepseek.com) |
| Claude API | 유료 | 클라우드 | 빠름 | [console.anthropic.com](https://console.anthropic.com) |
| OpenAI | 유료 | 클라우드 | 빠름 | [platform.openai.com](https://platform.openai.com) |
| **Grok (xAI)** | 유료 | 클라우드 | 빠름 | [console.x.ai](https://console.x.ai) → `grok-4.5` |
| **OpenRouter** | 구독 / 종량제 | 클라우드 | 빠름 | [openrouter.ai/keys](https://openrouter.ai/keys) → API 키 받기 |
| **OrcaRouter** | 구독 / 종량제 | 클라우드 | 빠름 | [orcarouter.ai](https://www.orcarouter.ai) → API 키 받기 |
BugHunter는 다음 순서로 제공업체를 자동 감지합니다: **Ollama → Groq → DeepSeek → … → OrcaRouter → OpenRouter → Claude → OpenAI**
언제든지 제공업체를 전환하거나 설치된 Ollama 모델을 선택하세요: `bughunter setup`.
설정은 완전히 비대화형으로 실행할 수도 있습니다:```bash
bughunter setup --provider ollama --model qwen2.5:14b
일회성 재정의를 위해 명령 앞에 옵션을 넣으십시오:```bash bughunter --provider ollama --model qwen3:14b hunt target.com
### 완전 오프라인 무비용 설정```bash
# 1. Install Ollama (runs AI locally, no internet needed after download)
curl -fsSL https://ollama.ai/install.sh | sh
ollama pull qwen2.5:14b # ~9 GB, one-time download
# 2. Install BugHunter
git clone https://github.com/shuvonsec/claude-bug-bounty.git
cd claude-bug-bounty
./install.sh --agent standalone # creates system-wide 'bughunter' command
# 3. Hunt
bughunter setup # choose Ollama, then choose one of its installed models
bughunter recon target.com
export GROQ_API_KEY="your-key-here" # free at console.groq.com ./install.sh --agent standalone bughunter setup # choose Groq bughunter hunt target.com
---
## 빠른 시작
**옵션 A — 독립형 (구독 불필요, 모두에게 작동)**```bash
git clone https://github.com/shuvonsec/claude-bug-bounty.git
cd claude-bug-bounty
./install.sh --agent standalone # creates system-wide 'bughunter' command
bughunter setup # pick a free AI provider
bughunter recon target.com
bughunter hunt target.com
bughunter validate "my finding"
bughunter report
옵션 B — Claude Code 플러그인 (Claude Code 필요)```bash git clone https://github.com/shuvonsec/claude-bug-bounty.git cd claude-bug-bounty chmod +x install_tools.sh && ./install_tools.sh # subfinder · httpx · nuclei · katana · ffuf chmod +x install.sh && ./install.sh # skills + commands → ~/.claude/
입력 내용이 없습니다.```bash
claude
/recon target.com # map the attack surface
/hunt target.com # test for vulnerabilities
/validate # run the 7-Question Gate
/report # write the submission
옵션 C — Claude가 설치하도록 하기 (Claude Code 전용)
터미널을 열고 claude를 실행한 다음 붙여넣으세요:```text
Install the Claude Bug Bounty toolkit from https://github.com/shuvonsec/claude-bug-bounty
into ~/tools/. Clone the repo, run ./install_tools.sh then ./install.sh.
Verify /recon /hunt /validate /report are available.
---
## 명령어
### 핵심 워크플로우
| Command | 기능 |
|:---|:---|
| `/recon target.com` | 하위 도메인 열거 · 활성 호스트 탐색 · URL 크롤링 · nuclei 스캔 |
| `/hunt target.com` | IDOR · 인증 우회 · SSRF · XSS · SQLi · 논리적 결함 등을 테스트 |
| `/validate` | 7문 게이트 — 리포트 작성 시간을 낭비하기 전에 약한 발견 항목을 제거 |
| `/report` | 60초 안에 H1 · Bugcrowd · Intigriti · Immunefi 제출물 생성 |
| `/autopilot target.com` | 전체 루프 자동 수행 — 범위 → 정찰 → 헌팅 → 검증 → 리포트 |
### 정찰 및 열거
| Command | 기능 |
|:---|:---|
| `/surface target.com` | 정찰 데이터 + 메모리 기반 공격 표면 순위 |
| `/scope-aggregate <program>` | H1 · Bugcrowd · Intigriti · YWH · Immunefi 전반의 모든 인스코프 자산 |
| `/cloud-recon --keyword <name>` | 공개 S3 · Azure · GCP 버킷 + CloudFlare 우회 원본 IP |
| `/param-discover <url>` | Arjun · x8로 숨겨진 HTTP 파라미터 발견 |
| `/secrets-hunt --js-bundle <dir>` | 소스, JS 번들 또는 GitHub 조직에서 유출된 자격 증명 검색 |
| `/takeover --recon <dir>` | dnsReaper · subjack을 통한 하위 도메인 탈취 후보 탐지 |
| `/scan-cves <host>` | 집중적인 nuclei high/critical 스캔 + 선택적 log4j-scan |
| `/bypass-403 <url>` | 403/401 우회 헤더 · 메서드 · 인코딩 트릭 |
| `/portscan <host>` | naabu/smap으로 열린 포트 + 비웹 서비스 탐지 (Redis · Docker API · DB · RDP) |
| `/screenshot -l urls.txt` | 활성 호스트를 HTML 갤러리로 스크린샷 — 분류 + PoC 증거 |
### 스캐너 (Web + LLM)
| Command | 기능 |
|:---|:---|
| `/cors <url>` | CORS 오설정 — origin 반사 · null · 자격 증명 |
| `/crlf <url>` | CRLF / 응답 분할 + 호스트 헤더 주입 |
| `/nosqli <url>` | NoSQL 인젝션 (연산자 우회 · `$where` 타이밍) |
| `/jwt-scan <token>` | 오프라인 JWT 툴킷 — alg:none · RS256→HS256 · 시크릿 크랙 |
| `/oob <target>` | 블라인드 SSRF/XXE/SQLi용 대역외 리스너 (interactsh) |
| `/sast <path>` | 수집된 JS/소스에 대한 Semgrep 보안 팩 → 순위가 매겨진 싱크 |
| `/domxss <url>` | 헤드리스 Chromium에서 DOM XSS 확인 — 페이로드가 실행될 때만 리포트 |
| `/llm-redteam <endpoint>` | LLM 레드팀 코퍼스 — 프롬프트 인젝션 · 탈옥 · 외부 유출 |
### 스마트 계약 (Web3)
| Command | 기능 |
|:---|:---|
| `/web3-audit <contract.sol>` | Foundry PoC 템플릿이 포함된 10클래스 스마트 계약 감사 |
| `/token-scan <contract>` | 러그 풀 스캐너 — 민팅 권한 · LP 잠금 · 허니팟 · 본딩 커브 |
### 세션 및 유틸리티
| Command | 기능 |
|:---|:---|
| `/pickup target.com` | 마지막 세션에서 재개 — 테스트되지 않은 엔드포인트 우선 |
| `/intel target.com` | 이 타겟과 관련된 CVE + 공개 리포트 |
| `/chain` | 버그 A 발견 → 연쇄 가능한 버그 B와 C를 탐색 |
| `/scope <asset>` | 테스트 전에 도메인 또는 URL이 범위 내인지 확인 |
| `/triage` | 빠른 2분 go/no-go 확인 |
| `/remember` | 현재 발견 항목 또는 기법을 헌트 메모리에 기록 |
| `/memory-gc` | 헌트 메모리 JSONL 파일 검사 또는 순환 (10MB 상한, 백업 3개) |
| `/arsenal [tool]` | 설치된 외부 도구 목록 표시 또는 설치 힌트 출력 |
---
## 발견 대상
<details>
<summary><b>26 Web2 취약점 클래스</b></summary>
<br>
| Vulnerability | Typical Payout |
|:---|:---|
| IDOR / BOLA | $500 – $5K |
| Auth Bypass | $1K – $10K |
| XSS (Stored / Reflected / DOM) | $500 – $5K |
| SSRF | $1K – $15K |
| Business Logic | $500 – $10K |
| Race Conditions | $500 – $5K |
| SQL Injection | $1K – $15K |
| OAuth / OIDC | $500 – $5K |
| File Upload → RCE | $500 – $10K |
| GraphQL Auth Bypass | $1K – $10K |
| LLM / Prompt Injection | $500 – $10K |
| API Misconfiguration (mass assignment · JWT · CORS) | $500 – $5K |
| Account Takeover | $1K – $20K |
| SSTI | $2K – $10K |
| Subdomain Takeover | $200 – $5K |
| Cloud / Infra Exposure | $500 – $20K |
| HTTP Request Smuggling | $5K – $30K |
| Cache Poisoning | $1K – $10K |
| MFA / 2FA Bypass | $1K – $10K |
| SAML / SSO Attack | $2K – $20K |
| Error Disclosure / Debug Endpoints | $200 – $5K |
| CSS Injection | $500 – $5K |
| LFI → RCE | $1K – $15K |
| Insecure Deserialization | $5K – $30K |
| Dependency Confusion / Supply Chain | $1K – $20K |
| Padding Oracle / Crypto Misuse | $2K – $20K |
</details>
<details>
<summary><b>10 Web3 / 스마트 계약 버그 클래스</b></summary>
<br>
| Vulnerability | Typical Payout |
|:---|:---|
| Accounting Desync | $50K – $2M |
| Access Control | $50K – $2M |
| Incomplete Code Path | $50K – $2M |
| Off-By-One | $10K – $100K |
| Oracle Manipulation | $100K – $2M |
| ERC4626 Share Inflation | $50K – $500K |
| Reentrancy | $10K – $500K |
| Flash Loan Attack | $100K – $2M |
| Signature Replay | $10K – $200K |
| Proxy / Upgrade | $50K – $2M |
</details>
---
## AI 에이전트
각각 하나의 작업을 위해 제작된 9명의 전문가:
| Agent | 역할 |
|:---|:---|
| `recon-agent` | 하위 도메인 열거 · 활성 호스트 탐색 · URL 크롤링 |
| `report-writer` | N/A 처리되지 않고 실제 보상을 받는 영향력 우선 리포트 |
| `validator` | 7문 게이트 실행 — 약한 발견 항목 제거 |
| `web3-auditor` | 10개 버그 클래스에 대한 스마트 계약 감사 |
| `chain-builder` | 버그 A 발견 → 연쇄 가능한 버그 B, C 탐색 |
| `autopilot` | 안전 체크포인트가 포함된 전체 헌트 루프 |
| `recon-ranker` | 가장 가치 높은 타겟부터 공격 표면 순위 지정 |
| `token-auditor` | 밈 코인 / 토큰 러그 풀 및 보안 스캔 |
| `credential-hunter` | 워드리스트 생성 → OSINT → 유출 확인 → 스프레이 (스프레이 전 하드스톱) |
---
## 작동 방식
<div align="center">```
You ─▶ /recon ─▶ /hunt ─▶ /validate ─▶ /report
│ │
▼ ▼
Hunt Memory 7-Question Gate
(persists across (kills weak findings
sessions) before you submit)
파이프라인의 모든 도구는 설치 여부에 따라 활성화됩니다. 설치되지 않은 도구는 오류가 아니라 건너뜁니다. 한 번 설정된 인증 헤더는 httpx · katana · ffuf · nuclei · dalfox에 자동으로 적용됩니다.
전제 조건:```bash
brew install go python3 jq
sudo apt install golang python3 jq
**스캐닝 도구** (subfinder · httpx · nuclei · katana · ffuf · gau · dnsx · nmap · dalfox 등을 설치합니다):```bash
chmod +x install_tools.sh && ./install_tools.sh
독립형 bughunter 명령어 (구독 불필요, Claude Code 없이도 작동):```bash
./install.sh --agent standalone
bughunter setup # choose Ollama (free) · Groq (free tier) · DeepSeek (cheap) · Claude · OpenAI
**AI 스킬 + 명령어**를 Claude Code로:```bash
chmod +x install.sh && ./install.sh
기타 에이전트 하네스:```bash ./install.sh --agent opencode # OpenCode ./install.sh --agent pi # Pi Agent ./install.sh --agent codex # Codex ./install.sh --agent all # every supported target
**선택 사항: Chaos API key** (더 나은 서브도메인 커버리지)```bash
export CHAOS_API_KEY="your-key"
echo 'export CHAOS_API_KEY="your-key"' >> ~/.zshrc
일곱 가지 규칙이 모든 세션에서 적용되며, 예외는 없습니다:
PR을 환영합니다. 가장 가치 있는 것:
skills/security-arsenal/SKILL.md에 페이로드 추가---
## 사용처
<p align="center"><i>자신의 워크플로우에서 BugHunter를 사용하는 팀과 연구자들.</i></p>
<table align="center">
<tr>
<td align="center" width="200">
<a href="https://awarexone.com">
<img src="https://assets.kitploit.com/production/public/readmes/51066/29e21784cbe8b37142a688801ddd02d4084136effa303a59c67cdd8621e4ac2a/b44baafd696ad5280f1c515671c279895b049b007d04ef2400f00b7eaef441fc-display-v1.webp" alt="AwareXone" width="72"/>
<br/><b>AwareXone</b>
</a>
<br/><sub>스캠 & 사기와 맞서는 AI 에이전트</sub>
</td>
<td align="center" width="200">
<a href="ADOPTERS.md">
<img src="https://img.shields.io/badge/+-Add_your_team-7F55FF?style=for-the-badge" alt="팀 추가"/>
</a>
<br/><sub>한 줄 PR 열기</sub>
</td>
</tr>
</table>
<p align="center">
팀, 프로그램 또는 워크플로우에서 BugHunter를 사용 중이신가요? <b><a href="ADOPTERS.md">자신을 추가하세요</a></b> — <code>ADOPTERS.md</code>에 빠른 PR을 보내거나 <a href="https://github.com/shuvonsec/claude-bug-bounty/issues">이슈</a>를 열어 주세요. 실제 검증 가능한 항목만 등록됩니다.
</p>
---
## 스타 히스토리
<p align="center">
<a href="https://star-history.dera.page/#shuvonsec/claude-bug-bounty&type=date&legend=top-left">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://star-history.dera.page/svg?repos=shuvonsec/claude-bug-bounty&type=date&theme=dark&legend=top-left" />
<source media="(prefers-color-scheme: light)" srcset="https://star-history.dera.page/svg?repos=shuvonsec/claude-bug-bounty&type=date&legend=top-left" />
<img alt="스타 히스토리 차트" src="https://star-history.dera.page/svg?repos=shuvonsec/claude-bug-bounty&type=date&legend=top-left" width="560" />
</picture>
</a>
</p>
---
## 후원
BugHunter가 당신의 헌팅에 도움이 되었다면, 더 많은 헌팅을 지원해 주실 수 있습니다:
<p align="center">
<a href="https://www.buymeacoffee.com/shuvonsec">
<img src="https://assets.kitploit.com/production/public/readmes/51066/322a7c99f1dd15a03b3c1b00b0d18ddd87443d80b823d3467a240721ae02357e/37540ef5b455c7e9fd2e680a883fa3eaa5ac7dfe7ea38853db90363dee628a84-display-v1.webp" alt="Buy Me A Coffee" height="50"/>
</a>
</p>
---
## 감사의 말
BugHunter에 기여해 주신 모든 분들께 감사드립니다. 아바타를 클릭하면 해당 GitHub 프로필을 열 수 있습니다.
<p align="center">
<a href="https://github.com/shuvonsec"><img src="https://assets.kitploit.com/production/public/readmes/51066/3c71ec4e8d747afbf17f2422c15a990e89b1e4c711129890ae2c2ddc0cf33b11/c28f708717c97d5e9032426d44661d39e54cbb0ea831351e3da7862fa89b0266-display-v1.webp" width="48" height="48" alt="shuvonsec" title="shuvonsec"/></a>
<a href="https://github.com/shuv0n"><img src="https://assets.kitploit.com/production/public/readmes/51066/d1087f300aa2f159be8a3f20f1da3b0d498d1a3b086006f00bba2e96bcafa1ca/3e4e701d8d7199dbc4aa5bfd0872da422c3630a3682e81bd4f00fb4b3eff796a-display-v1.webp" width="48" height="48" alt="shuv0n" title="shuv0n"/></a>
<a href="https://github.com/letztek"><img src="https://assets.kitploit.com/production/public/readmes/51066/8236747fa6130ad14ab79ca13ad7e1f727530cf03388d5ff69f6522d1202855b/850834b0bcf7305c85e3e2eef40eae2829896eb40992635126a5b518430569e3-display-v1.webp" width="48" height="48" alt="letztek" title="letztek"/></a>
<a href="https://github.com/bertolikimberly"><img src="https://assets.kitploit.com/production/public/readmes/51066/03de9cce0dd4aa48faa6d9c325d8b68533d34370322e235b459eb7cf8985aba7/610e73a3dd0ebcd37db0f1d16bb7ebf6cc7810df13cbebe65d77871ec3115621-display-v1.webp" width="48" height="48" alt="bertolikimberly" title="bertolikimberly"/></a>
<a href="https://github.com/venkatas"><img src="https://assets.kitploit.com/production/public/readmes/51066/b8248121001fa656e73d22b66e556f5416729e73c034c3df7e6fd6d178f69c64/2adc3afc7934f533642edb4278fcd3d4ad503b268bc0bd5a5d5cee7828190544-display-v1.webp" width="48" height="48" alt="venkatas" title="venkatas"/></a>
<a href="https://github.com/adityaax"><img src="https://assets.kitploit.com/production/public/readmes/51066/61029b5a332921d3cf18ee1f45ed1f427923e6e6afe082118104fa9f2ffde0c0/de5f88e6b6618bb8d52d8728c2dad1a3e20822f2d382e341792edf29758d2956-display-v1.webp" width="48" height="48" alt="adityaax" title="adityaax"/></a>
<a href="https://github.com/BeargleIndustries"><img src="https://assets.kitploit.com/production/public/readmes/51066/2b982731b11d958663f6cd0e2f70004401d97951366a574498718441f4314048/0cee9f5a6efcd85c280bd743ededb88faa88ed95b04ecb8966c302f7aa3065ec-display-v1.webp" width="48" height="48" alt="BeargleIndustries" title="BeargleIndustries"/></a>
<a href="https://github.com/ultra-supara"><img src="https://assets.kitploit.com/production/public/readmes/51066/c6d39ef6033dbeac0f1ed6bdbca50a78aa2f7b6cf92ef3270fda4163eb45e7c6/caae781831ae9859baa23bdbc1048e2ea737179d71af9e6f126644d53a111129-display-v1.webp" width="48" height="48" alt="ultra-supara" title="ultra-supara"/></a>
<a href="https://github.com/AurisDSP"><img src="https://assets.kitploit.com/production/public/readmes/51066/faa96c27e7d0493d309fee7b94e79aed51b991d83f17a44f605d22e2657691f0/50c186ab21c94f2b974570ebf01f896c770a361ab066e25338625993193d5604-display-v1.webp" width="48" height="48" alt="AurisDSP" title="AurisDSP"/></a>
<a href="https://github.com/Edneam"><img src="https://assets.kitploit.com/production/public/readmes/51066/e1a7a36a04544478fa1984f793aa3cea48f8a51bb090ce74a28e13334aafa6ab/bb9611fa7eeb5ebb5e58ae2a2cd4103c7bdf917f9191babf517d83f1eb5a6852-display-v1.webp" width="48" height="48" alt="Edneam" title="Edneam"/></a>
<a href="https://github.com/depapp"><img src="https://assets.kitploit.com/production/public/readmes/51066/3156944f4894fdd30b89baf215623103e46a7481c2858849d76016d17169c5ba/d8b617a44887e6737983e20cff14f61af07d18706bf0e3752ffeae54f5a7cc8b-display-v1.webp" width="48" height="48" alt="depapp" title="depapp"/></a>
<a href="https://github.com/Realgagenichols"><img src="https://assets.kitploit.com/production/public/readmes/51066/422e70caa8cce448ca55f0a63c0d7620f721b53821309c0291242ad0e4ff2043/9ce2cb2bd457ba0b88efca09db59c1264da78e7b854bb96352514aac13183d90-display-v1.webp" width="48" height="48" alt="Realgagenichols" title="Realgagenichols"/></a>
<a href="https://github.com/thuvh"><img src="https://assets.kitploit.com/production/public/readmes/51066/1dc37fcd3ddadd6b175572a34e2c86c44aedbc97fba2d79a1809a65aa4dce155/5a8b7a48be2c5e81eff7134f4d3f42b6e3ef9d4da35f88e87e99d129aa874859-display-v1.webp" width="48" height="48" alt="thuvh" title="thuvh"/></a>
<a href="https://github.com/onlybugs05"><img src="https://assets.kitploit.com/production/public/readmes/51066/f529bc0c7273b2e98e26352bb1a174c515dee670826bdf519240b63774f05b33/a89875927c1da3655d8c5880c93d1b13c30af04928b7a8335c4bb57e7a2f858d-display-v1.webp" width="48" height="48" alt="onlybugs05" title="onlybugs05"/></a>
<a href="https://github.com/savioruz"><img src="https://assets.kitploit.com/production/public/readmes/51066/362ee5f394d18365f33beae9d4e24b1f54a3bb299ceaa69aad6476c7912add35/fadecab17667be841099372f346c2892398fc55069a8d6c9e7c1031745fa92e9-display-v1.webp" width="48" height="48" alt="savioruz" title="savioruz"/></a>
<a href="https://github.com/Paebak"><img src="https://assets.kitploit.com/production/public/readmes/51066/0f26c58b1801e41175d39ad5df2ed02574c2bbff6e72a0999f278a962aaf9a2e/56ab94c06cf38bfc7c83550efc5b06597a135c4855b2f3122a79e9c493ef5310-display-v1.webp" width="48" height="48" alt="Paebak" title="Paebak"/></a>
<a href="https://github.com/nurazhardotcom"><img src="https://assets.kitploit.com/production/public/readmes/51066/3af62ef52780b5fac95a8b00db8fb562b8d03bf151a4a34c51dd4df37d47b4ab/e29f4b8a62da7772a4fbf0d385cc827efa746d74ec6cdc4f854c217e3d3b539d-display-v1.webp" width="48" height="48" alt="nurazhardotcom" title="nurazhardotcom"/></a>
<a href="https://github.com/SeekAndExploit"><img src="https://assets.kitploit.com/production/public/readmes/51066/943bffd56ab7cd823f6226ba45e1b2d8bfb24e2c705cf7285cd30c12d54b4d29/50579361c6456568868e787108a75c019b117b43e79ad16bfb43546876ffb1f1-display-v1.webp" width="48" height="48" alt="SeekAndExploit" title="SeekAndExploit"/></a>
<a href="https://github.com/Shawanga"><img src="https://assets.kitploit.com/production/public/readmes/51066/2f168dbf41d11829183809a1ada43bd407eb789ca322351b72544e9d8d689490/161721c856e5630413a4d7dabf33e2aadec45ff7a97f101952bbeeef8fff1b11-display-v1.webp" width="48" height="48" alt="Shawanga" title="Shawanga"/></a>
<a href="https://github.com/zeze-zeze"><img src="https://assets.kitploit.com/production/public/readmes/51066/6712b474717b9a0d31df50db07c0679323d745992e6905ef146ba93f059f1a0e/ea68d492a788a174c59ee241475e4ec6ba168ef8671359c2af6dc0db53d2aa7f-display-v1.webp" width="48" height="48" alt="zeze-zeze" title="zeze-zeze"/></a>
<a href="https://github.com/grave0x"><img src="https://assets.kitploit.com/production/public/readmes/51066/b177d7f1eb1e5f5f4ea6b0f01927068568d92feeb450c3588da3eb4ee444be3f/997770039b73abeb34cfa1bf34430cdd81e54b96626c1d856317711f6e55a15f-display-v1.webp" width="48" height="48" alt="grave0x" title="grave0x"/></a>
<a href="https://github.com/kevinaimonster"><img src="https://assets.kitploit.com/production/public/readmes/51066/eebb78e8387a8f45d69ee11489aa55bcefe42e934c61b6200470d4b3f8b8bc03/4dbb85af058868212ac2306d2ecd5f376ae81eb8faed80e96d9144193aea57c8-display-v1.webp" width="48" height="48" alt="kevinaimonster" title="kevinaimonster"/></a>
</p>
---
<p align="center">
<img src="https://assets.kitploit.com/production/public/readmes/51066/d32053d974d60dcec5ad625a665f0d22dbbddbc152b6d1184ad7b3774f0839e0/85e958d2288223e9020199c1ab154ead84e0e2170b64e9c21ce4ea15d6830014-display-v1.webp" alt="BugHunter" width="48"/><br>
<a href="https://github.com/shuvonsec">GitHub</a>
·
<a href="https://x.com/shuvonsec">Twitter</a>
·
<a href="mailto:[email protected]">[email protected]</a><br>
<b>버그 헌터에 의해, 버그 헌터를 위해 만들어졌습니다.</b><br>
<sub>MIT 라이선스 · 승인된 보안 테스트에만 사용하세요. 항상 승인된 버그 바운티 프로그램 범위 내에서 테스트하세요.</sub>
</p>
<p align="center">
<a href="https://awarexone.com">
<img src="https://assets.kitploit.com/production/public/readmes/51066/29e21784cbe8b37142a688801ddd02d4084136effa303a59c67cdd8621e4ac2a/b44baafd696ad5280f1c515671c279895b049b007d04ef2400f00b7eaef441fc-display-v1.webp" alt="AwareXone" width="56"/>
</a>
<br/>
<sub>제공: <a href="https://awarexone.com"><b>AwareXone.com</b></a> · 스캠 & 사기와 맞서는 당신의 AI 에이전트</sub>
</p>
| # | 규칙 | 이유 |
|---|
| 1 | 먼저 전체 범위를 읽으세요 | 프로그램이 승인한 것만 테스트하세요 |
| 2 | 실제 버그만 | "공격자가 지금 당장 이 작업을 할 수 있나?" — 아니요라면 중단하세요 |
| 3 | 약한 결과 제거 | 30초 확인으로 수 시간의 낭비되는 보고를 절약할 수 있습니다 |
| 4 | 범위를 벗어나지 마세요 | 잘못된 요청 하나로 차단될 수 있습니다 |
| 5 | 5분 규칙 | 5분 후에도 진전이 없나요? 다음으로 넘어가세요 |
| 6 | 보고 전 검증 | 30분 작성 전에 /validate를 실행하세요 |
| 7 | 영향 우선 | 최악의 결과를 초래하는 버그를 먼저 테스트하세요 |