Links

Sublist3r

Sublist3r Agent Setup for Subdomain Enum

Sublist3r Command

Using {{rootDomain}} ReconNess replace {{rootDomain}} to the root domain, for example, yahoo.com if we define that as a root domain adding the Target
If we have sublist3r in the folder /app/Sublist3r/
python /app/Sublist3r/sublist3r.py -d {{rootDomain}}

Sublist3r Script

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 };
Check the Readme on GitHub to know more about the Script.

Sublist3r Dockerfile Entry

# -------- 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 --------

Sublist3r Command for Docker

python /app/Sublist3r/sublist3r.py -d {{rootDomain}}