Tailhunter is a tool for finding hidden pages using url endpoints, based on dictionary attacks (wordlist).
Tailhunter is a asynchronous project. So you can send a bunch of requests to the server at a same time. you'll get kind of 'Hydra' like feeling, while using it.
$ apt-get install git python clang
$ git clone https://github.com/mosheur15/tailhunter.git
$ cd tailhunter
$ pip install --editable .
Do not forget to put the (.) dot in the last command. After installing, you can run tailhunter from anywhere in the terminal.
$ tailhunter -u [example.com] -w [example_wordlist.txt]
$ pip uninstall tailhunter
If you face any errors while installing, try this:
$ pip install cython
$ apt-get install clang
Then try to install again by:
$ pip install --editable .