bugbounty-lab101
A complete bug bounty workspace for HackerOne researchers. Includes scope enforcement, automated recon/vuln pipeline (400+ tools), report templates, CVE/CWE watchlists, and a local VM practice lab. Built for disciplined, ethical hunting.
File Explorer
- shellcheck.yml
- burp.sh
- burp_api.py
- burp_auto.sh
- README.md
- noticias.json
- common.sh
- registry.sh
- auto-scan-daemon.sh
- autopentest-pro.sh
- autopentest.sh
- file-upload-scanner.sh
- github-scan.sh
- pentest-express.sh
- pentest.sh
- quickscan.sh
- README.md
- threat-intel-monitor.sh
- threat-monitor-daemon.sh
- tool-checker.sh
- report-template.md
- bugbounty-hunter.sh
- QUICK-REFERENCE.md
- learning-resources.md
- ai-assisted-code-review.md
- hackerone-workflow.md
- known-cve-watchlist.md
- known-cwe-watchlist.md
- pentesting-quickref.md
- template-hallazgo.md
- network-config.md
- quickstart.md
- download_vms.sh
- README.md
- setup_network.sh
- start_lab.sh
- verify_lab.sh
- README.md
- README.md
- _template.md
- README.md
- check-sensitive-files.sh
- scope_guard.py
- test-shell-scope.sh
- test_burp_api.py
- test_scope_guard.py
- .gitignore
- CHANGELOG.md
- CONTRIBUTING.md
- LICENSE
- README.md
- start-server.sh
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
node
View Details ▼
node
Server-side JavaScript platform (Node.js).
node {{path/to/file}}
Run a JavaScript file:
node
Start a REPL (interactive shell):
node --watch {{path/to/file}}
Execute the specified file restarting the process when an imported file is changed (requires Node.js version 18.11+):
npm run
View Details ▼
npm run
Run a script.
npm run
List available scripts:
npm run {{script_name}}
Run a script:
npm run {{script_name}} -- {{argument}} {{--option}}
Pass arguments to a script:
