Takeover
Takeover Agent Setup for Takeover subdomains scans
Using
{{domain}}
ReconNess replace {{domain}}
for the subdomain.python3 takeover.py -d {{domain}} -v
This Agent run in each subdomain.

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();
# -------- 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 --------
python3 /app/takeover/takeover.py -d {{domain}} -v
Last modified 3yr ago