Sublist3r
Sublist3r Agent Setup for Subdomain Enum
Using
{{rootDomain}}
ReconNess replace {{rootDomain}}
to the root domain, for example, yahoo.com if we define that as a root domain adding the TargetIf we have sublist3r in the folder
/app/Sublist3r/
python /app/Sublist3r/sublist3r.py -d {{rootDomain}}
using ReconNess.Core.Models;
if (lineInputCount < 23)
{
return new ReconNess.Core.Models.ScriptOutput();
}
lineInput = lineInput.Replace("\u001b[92m", string.Empty).Replace("\u001b[0m", string.Empty);
return new ScriptOutput { Subdomain = lineInput };
# -------- Agents dependencies --------
# To allow run sublist3r inside the docker
RUN apt-get update && apt-get install -y git python2.7 python-pip
RUN git clone https://github.com/aboul3la/Sublist3r.git
RUN cd Sublist3r && pip install -r requirements.txt
# -------- End Agents dependencies --------
python /app/Sublist3r/sublist3r.py -d {{rootDomain}}
Last modified 2yr ago