Aquatone is a great tool, developed by user @michenriksen, used for subdomain takeovers. The reason that I specifically like this tool is because it helps you enumerate subdomains easily, giving you IPs with Open Ports and their matching subdomain.
How it works
Aquatone is divided in 4 different scripts, discover
, gather
, scan
and takeover
.
discover
– Collects the subdomains of the domain specifiedscan
– Enumerate Open Ports of hosts identified previouslygather
– Enumerate Web Servicies found on those hosts and take screenshotstakeover
– Based on standard error messages it will report if a domain is vulnerable or not.
npm executable not found
Error
This error pops up when some is on the gather script. The message is pretty clear to be honest, that npm executable is not present.
Solution
Clone npm
from their official Github https://github.com/npm/cli (Note is was recently moved from https://github.com/npm/npm) and install it using Make
.
git clone https://github.com/npm/cli.git cd cli make installVerify installation
npm -vMore info
Was this post helpful?
Let us know if you liked the post.