Findomain
Findomain 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 Target./findomain-linux -t {{rootDomain}} -r
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();
# -------- Agents dependencies --------
# To allow run findomain inside the docker
RUN apt-get update && apt-get install -y wget
RUN wget https://github.com/Edu4rdSHL/findomain/releases/latest/download/findomain-linux
RUN chmod +x findomain-linux
# -------- End Agents dependencies --------
Last modified 2yr ago