hakluke / hakrawler

Simple, fast web crawler designed for easy, quick discovery of endpoints and assets within a web application
https://hakluke.com
GNU General Public License v3.0
4.49k stars 496 forks source link

Not all flags available #140

Closed zerodayhacker closed 2 years ago

zerodayhacker commented 2 years ago

Hi, Not sure if this is the right place to ask but I installed hakrawler using sudo apt install hakrawler on an updated Kali install. Only three flags are listed as available (-d, -insecure, -t). When I attempts to use other flags, I get 'flag provided but not defined'. Ideas? Thanks in advance.

zerodayhacker commented 2 years ago

OK so I got myself sorted. Turns out installing Hakrawler using sudo apt install hakrawler apparently installs an incomplete (earlier?) version. To get full features, uses the method outlined in the 'Local Docker Install' section in Luke's readme file. First update your repositories: sudo apt update Then install Docker if you don't already have it: sudo apt install docker.io -y Then install Hakrawler, making sure you sudo the docker build and docker run commands:

git clone https://github.com/hakluke/hakrawler
cd hakrawler
sudo docker build -t hakluke/hakrawler .
sudo docker run --rm -i hakluke/hakrawler --help

You should now be good to go, with a full featured version. Great tool IMO. 🙂