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
Takeover
Takeover Agent Setup for Takeover subdomains scans
Takeover Command
Using
{{domain}}
ReconNess
replace
{{domain}}
for the
subdomain
.
python3 takeover.py -d {{domain}} -v
​
Click here to know more about Takeover
​
This Agent run in each subdomain.
Takeover Script
using
ReconNess
.
Core
.
Models
;
​
if
(
lineInputCount
<
13
)
{
return
new
ScriptOutput
();
}
​
if
(
lineInput
.
Contains
(
"service found! Potential domain takeover found"
))
{
return
new
ScriptOutput
{
Takeover
=
true
,
IsAlive
=
true
};
}
​
return
new
ScriptOutput
();
Check the
Readme
on
GitHub
to know more about the Script.
Takeover Dockerfile Entry
# -------- Agents dependencies --------
​
# To allow run takeover inside the docker
​
RUN apt
-
get update
&&
apt
-
get install
-
y git python3 python3
-
pip wget
RUN git clone https
:
//github.com/m4ll0k/takeover.git
RUN cd takeover
&&
python3 setup.py install
​
# -------- End Agents dependencies --------
Takeover Command for Docker
python3 /app/takeover/takeover.py -d {{domain}} -v
AGENTS SCAN - Previous
Nmap
Next - AGENTS SCAN
ZDNS
Last modified
1yr ago
Copy link
Outline
Takeover Command
Takeover Script
Takeover Dockerfile Entry
Takeover Command for Docker