Gau
Gau Agent Setup for way back urls Directory Discovery
Using
{{domain}}
ReconNess replace {{domain}}
for the subdomainecho '{{domain}}' | ./gau | grep "^https://{{domain}}"

return new ReconNess.Core.Models.ScriptOutput { HttpDirectory = lineInput };
# -------- 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 --------
echo '{{domain}}' | /root/go/bin/gau | grep "^https://{{domain}}"
Last modified 2yr ago