ReconNess Docs
Search…
⌃K
Links

Waybackurls

Waybackurls Agent Setup for way back urls Directory Discovery

Waybackurls Command

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

Waybackurls Script

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

Waybackurls Dockerfile Entry

# -------- Agents dependencies --------
# To allow run waybackurls 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 github.com/tomnomnom/waybackurls
# -------- End Agents dependencies --------

Waybackurls Command for Docker

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