Install getallurls (gau)
masterYou can install gau using several methods:
From source
Use go install to install the latest version:
go install github.com/lc/gau/v2/cmd/gau@latestFrom GitHub
Clone the repository and build the binary manually:
git clone https://github.com/lc/gau.git; \
cd gau/cmd; \
go build; \
sudo mv gau /usr/local/bin/;
gau --version;From binary
Download pre-built binaries from the releases page, extract them, and move the binary to your $PATH:
tar xvf gau_2.0.6_linux_amd64.tar.gz
mv gau /usr/bin/gauFrom Docker
Run the tool directly using the official image:
docker run --rm sxcurity/gau:latest --helpOr build your own image:
docker build -t gau .
docker run gau example.comNote: Piping commands (e.g., echo "example.com" | gau) will not work with the Docker container.
go install github.com/lc/gau/v2/cmd/gau@latest