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}}
​Click here to know more about Sublist3r​
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.
# -------- Agents dependencies --------​# To allow run sublist3r inside the docker​RUN apt-get update && apt-get install -y git python2.7 python-pipRUN git clone https://github.com/aboul3la/Sublist3r.gitRUN cd Sublist3r && pip install -r requirements.txt​# -------- End Agents dependencies --------