Massdns
Massdns Agent Setup for Subdomain Enum
This agent utilizes the Reconness Unviersal Wrapper which must be installed for this agent to work. Using
{{rootDomain}}
ReconNess replace {{rootDomain}}
for the root domain. Ex: yahoo.comIf we have MassdnsWrapper in the folder
~/Desktop/MassdnsWrapper/
cd ~/Desktop/MassdnsWrapper && ./reconness-universal-wrapper exec "/app/massdns/bin/massdns -r /app/massdns/lists/resolvers.txt *subdomains -w *outputFile -o S" -a api/targets/exportSubdomains/{{target}}/{{rootDomain}} --silent
using ReconNess.Core.Models;
var match = System.Text.RegularExpressions.Regex.Match(lineInput, @"([a-z-_A-Z0-9.]+).\s.*\s([0-9.]+)");
if (match.Success)
{
return new ScriptOutput { Subdomain = match.Groups[1].Value, Ip = match.Groups[2].Value };
}
return new ScriptOutput();
Change
<reconness username>, <reconness password>
and <reconness.mydomain.com>
with your username, password and domain where reconness is running.# -------- Agents dependencies --------
# To allow run Massdns inside the docker
RUN apt-get update && apt-get install -y git build-essential wget
RUN wget https://golang.org/dl/go1.16.linux-amd64.tar.gz
RUN tar -C /usr/local -xzf go1.16.linux-amd64.tar.gz
RUN export GOPATH=$HOME/go
RUN export PATH=$PATH:/usr/local/go/bin:$GOPATH/bin
RUN git clone https://github.com/blechschmidt/massdns.git && cd massdns && make
RUN /usr/local/go/bin/go get -u github.com/hiddengearz/reconness-universal-wrapper
RUN /root/go/bin/reconness-universal-wrapper setup -u <reconness username> -p <reconness password> -s <reconness.mydomain.com>
# -------- End Agents dependencies --------
/root/go/bin/reconness-universal-wrapper exec "/app/massdns/bin/massdns -r /app/massdns/lists/resolvers.txt *subdomains -w *outputFile -o S" -a api/targets/exportSubdomains/{{target}}/{{rootDomain}} --silent
Last modified 2yr ago