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
Findomain
Findomain Agent Setup for Subdomain Enum
Findomain 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
./findomain-linux -t {{rootDomain}} -r
​
Click here to know more about
Findomain
​
Findomain
Script
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.
Findomain Dockerfile Entry
# -------- 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 --------
Agents Subdomain Enum - Previous
Sublist3r
Next - Agents Subdomain Enum
OneForAll
Last modified
2yr ago
Copy link
Outline
Findomain Command
Findomain Script
Findomain Dockerfile Entry