Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/m8sec/subwalker
Simultaneously execute various subdomain enumeration tools and aggregate results.
https://github.com/m8sec/subwalker
bugbounty recon subdomain-enumeration
Last synced: about 1 month ago
JSON representation
Simultaneously execute various subdomain enumeration tools and aggregate results.
- Host: GitHub
- URL: https://github.com/m8sec/subwalker
- Owner: m8sec
- License: mit
- Created: 2020-08-23T23:11:09.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-06-19T14:32:32.000Z (8 months ago)
- Last Synced: 2024-12-05T23:51:30.532Z (about 2 months ago)
- Topics: bugbounty, recon, subdomain-enumeration
- Language: Shell
- Homepage:
- Size: 25.4 KB
- Stars: 39
- Watchers: 5
- Forks: 16
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# SubWalker
SubWalker is a simple Bash recon script that will simultaneously execute various subdomain enumeration tools, aggregate the results, and write entries to a file free of duplicates. This helps prevent discrepancies in enumeration tools, even those claiming to use similar sources.
**Tools used:**
* [SubScraper](https://github.com/m8sec/subscraper)
* [Sublist3r](https://github.com/aboul3la/Sublist3r)
* [AssetFinder](https://github.com/tomnomnom/assetfinder)### Install
Written for Debian-based Linux distributions (*Kali* & *Ubuntu*):```text
git clone https://github.com/m8sec/subwalker
cd subwalker; chmod +x install.sh subwalker.sh
sudo ./install.sh
```### Usage
```text
#> ./subwalker.sh example.com
[*] Executing SubWalker against: example.com
[*] Launching SubScraper
[*] Launching Sublist3r
[*] Launching assetfinder
[*] Waiting until all scripts complete...[+] SubWalker complete with 107 results
[+] Output saved to: /opt/subwalker/subwalker.txt
```### Write-Up
* [Tool Chaining with Bash *(m8sec.medium.com)*](https://infosecwriteups.com/intro-to-bug-bounty-automation-tool-chaining-with-bash-13e11348016f)