ReconNess Docs
Search…
⌃K
Links

Gau

Gau Agent Setup for way back urls Directory Discovery

Gau Command

Using {{domain}} ReconNess replace {{domain}} for the subdomain
echo '{{domain}}' | ./gau | grep "^https://{{domain}}"

Gau Script

return new ReconNess.Core.Models.ScriptOutput { HttpDirectory = lineInput };
Check the Readme on GitHub to know more about the Script.

Gau Dockerfile Entry

# -------- Agents dependencies --------
# To allow run gau inside the docker
RUN apt-get update && apt-get install -y git wget
RUN wget https://golang.org/dl/go1.16.linux-amd64.tar.gz
RUN tar -C /usr/local -xzf go1.16.linux-amd64.tar.gz
RUN export GOPATH=$HOME/go
RUN export PATH=$PATH:/usr/local/go/bin:$GOPATH/bin
RUN /usr/local/go/bin/go get -u -v github.com/lc/gau
# -------- End Agents dependencies --------

Gau Command for Docker

echo '{{domain}}' | /root/go/bin/gau | grep "^https://{{domain}}"