ReconNess Docs
hello
Search…
ReconNess Docs
What is ReconNess
Getting Started
Installation
Quick start
Account
Users
Notifications
Logs
Target
Target
Subdomains
Directories
Services
Notes
Agents
Agent
Wordlists
Script Agent
Debug Agent
Install Agents
Agents Subdomain Enum
Subfinder
Amass
GoBusterDns
Sublist3r
Findomain
OneForAll
Knockpy
Massdns
Shuffledns
Puredns
AGENTS DIR DISCOVERY
ffuf
GoBusterDir
Dirsearch
Waybackurls
Gau
AGENTS SCAN
Httprobe
Ping
Nmap
Takeover
ZDNS
Dnsx
Naabu
Corsy
Nuclei
CRLFuzz
Agents Screenshot
Gowitness
Powered By
GitBook
Subfinder
Subfinder Agent Setup for Subdomain Enum
Subfinder 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
subfinder -d '{{rootDomain}}' -silent
​
Click here to know more about Subfinder
​
Subfinder Script
using
ReconNess
.
Core
.
Models
;
​
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.
Subfinder Dockerfile Entry
# -------- Agents dependencies --------
​
# To allow run subfinder inside the docker
​
RUN apt
-
get update
&&
apt
-
get install
-
y git 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 GO111MODULE=on /usr/local/go/bin/go get
-
v github.com/projectdiscovery/subfinder/v2/cmd/subfinder
​
# -------- End Agents dependencies --------
Subfinder Command for Docker
/root/go/bin/subfinder -d {{rootDomain}} -silent
Agents - Previous
Install Agents
Next - Agents Subdomain Enum
Amass
Last modified
10mo ago
Copy link
Outline
Subfinder Command
Subfinder Script
Subfinder Dockerfile Entry
Subfinder Command for Docker