Using {{rootDomain}}
ReconNess replace {{rootDomain}}
to the root domain, for example, yahoo.com if we define that as a root domain adding the Target
./findomain-linux -t {{rootDomain}} -r
​Click here to know more about Findomain​
using ReconNess.Core.Models;​if (lineInputCount < 13){return new ScriptOutput();}​var match = System.Text.RegularExpressions.Regex.Match(lineInput, @"([^\.\/]+)(\.[^\.\/]+)+(?:\/|$)");if (match.Success){return new ScriptOutput { Subdomain = match.Groups[0].Value };}​return new ScriptOutput();
Check the Readme on GitHub to know more about the Script.
# -------- Agents dependencies --------​# To allow run findomain inside the docker​RUN apt-get update && apt-get install -y wgetRUN wget https://github.com/Edu4rdSHL/findomain/releases/latest/download/findomain-linuxRUN chmod +x findomain-linux​# -------- End Agents dependencies --------