Using {{domain}}
ReconNess replace {{domain}}
for the subdomain
python3 dirsearch.py -u {{domain}} -e php -r
​Click here to know more about Dirsearch​
using ReconNess.Core.Models;​if (lineInputCount < 10){return new ScriptOutput();}​var match = System.Text.RegularExpressions.Regex.Match(lineInput, @"](.*?) - (.*?) - (.*?) ->");if (match.Success && match.Groups.Count == 4){return new ScriptOutput{HttpDirectoryStatusCode = match.Groups[1].Value,HttpDirectoryMethod = "GET",HttpDirectorySize= match.Groups[2].Value,HttpDirectory= match.Groups[3].Value.Replace("[0m", "")};}return new ScriptOutput();
Check the Readme on GitHub to know more about the Script.
# -------- Agents dependencies --------​# To allow run dirsearch inside the docker​RUN apt-get update && apt-get install -y git python3 python3-pipRUN git clone https://github.com/maurosoria/dirsearch.git​# -------- End Agents dependencies --------
cd /app/dirsearch && ./dirsearch.py -u {{domain}} -e php -r
​