A simple website directory enumeration tool built with `golang`.
Explore the docs »
View Demo
·
Report Bug
·
Request Feature
bird
is a simple, multithreaded website directory enumeration tool. bird
takes a list of URLs, a list of status codes which represent that the enumeration was successful, and a wordlist for fuzzing. Then, it can parallely enumerate routes on all the URLs with words from the wordlist provided and report the route which returned one of the success codes.
To get a local copy up and running follow these simple steps.
To build a binary from source, you need the go runtime. Otherwise, you can just get the binary from the GitHub release.
- golang
You can get the binary for your Operating System directly using wget
, or download it from the GitHub releases.
wget https://github.com/roerohan/bird/releases/download/v0.1.6/bird
If you want to get it using the go
CLI, follow the steps below.
- Get the package using
go get
.
go get github.com/roerohan/bird
Alternatively, you can clone the repository and build it from source.
- Clone the Repo
git clone https://github.com/roerohan/bird.git
- Install NPM packages
cd bird
go build -o ./bin/bird
- Use the binary inside the bin folder.
./bin/bird -u https://github.com -s 200 -w ./wordlist/common.txt
Usage of bird:
-s value
Status code for success, default 200
-u value
Target URL to be bruteforced [required]
-w string
Path to wordlist [required]
A sample wordlist is provided here.
An advantage of using bird
is that you can fuzz multiple websites in parallel, as you can see in the second example below.
- To enumerate
https://github.com
with success codes 200, 302.
bird -u https://github.com -w ./wordlist/common.txt -s 200 -s 302
- To enumerate
https://github.com
andhttps://csivit.com
with success code 200, 302. These sites will be enumerated in parallel.
bird -u https://github.com -u https://csivit.com -w ./rockyou.txt -s 200 -s 302
- The default status code is
200
, so it is not necessary to pass the flag-s
.
bird -u https://github.com -w ./wordlist/common.txt
See the open issues for a list of proposed features (and known issues).
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'feat: Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
You are requested to follow the contribution guidelines specified in CONTRIBUTING.md while contributing to the project 😄.
Distributed under the MIT License. See LICENSE
for more information.