CRLFuzz
CRLFuzz Agent Setup for Scan CRLF vulnerability
Using
{{domain}}
ReconNess replace {{domain}}
for the subdomain.crlfuzz -u https://{{domain}} -s
This Agent run in each subdomain.

We save the vulnerability info inside the Subdomain's Notes
return new ReconNess.Core.Models.ScriptOutput { Note = lineInput };
# -------- Agents dependencies --------
# To allow run CRLFuzz inside the docker
RUN apt-get update && apt-get install -y git wget
RUN wget https://dl.google.com/go/go1.14.6.linux-amd64.tar.gz
RUN tar -C /usr/local -xzf go1.14.6.linux-amd64.tar.gz
RUN /usr/local/go/bin/go get -v github.com/dwisiswant0/crlfuzz/cmd/crlfuzz
# -------- End Agents dependencies --------
/root/go/bin/crlfuzz -u https://{{domain}} -s
Last modified 1yr ago