![]() |
|
Inventus - find subdomains of a specific domain - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Hacking (https://sinister.ly/Forum-Hacking) +--- Forum: Hacking Tools (https://sinister.ly/Forum-Hacking-Tools) +--- Thread: Inventus - find subdomains of a specific domain (/Thread-Inventus-find-subdomains-of-a-specific-domain) |
Inventus - find subdomains of a specific domain - ZanGetsu - 08-29-2017 ![]() Inventus is a spider designed to find subdomains of a specific domain by crawling it and any subdomains it discovers. Installation Inventus requires Scrapy to be installed before it can be run. Firstly, clone the repo and enter it. Code: $ git clone https://github.com/nmalcolm/Inventus
$ cd InventusNow install the required dependencies using pip. Code: $ pip install -r requirements.txtAssuming the installation succeeded, Inventus should be ready to use. Usage The most basic usage of Inventus is as follows: Code: $ cd Inventus
$ scrapy crawl inventus -a domain=facebook.comThis tells Scrapy which spider to use ("inventus" in this case), and passes the domain to the spider. Any subdomains found will be sent to STDOUT. The other custom parameter is subdomain_limit. This sets a max limit of subdomains to discover before quitting. The default value is 10000, but isn't a hard limit. Code: $ scrapy crawl inventus -a domain=facebook.com -a subdomain_limit=100RE: Inventus - find subdomains of a specific domain - Shin - 08-29-2017 A noob would say, "Wot es a subdomain dadde" But vouch for contribution! RE: Inventus - find subdomains of a specific domain - Bish0pQ - 08-30-2017 This is actually good nice, going to add it to my collection of tools! Thank you! Looks like a decent tool and works pretty good. Do you also have plans to import proxy support and scanning of multiple targets at once? RE: Inventus - find subdomains of a specific domain - ZanGetsu - 08-30-2017 (08-30-2017, 10:35 AM)Bish0pQ Wrote: This is actually good nice, going to add it to my collection of tools! Thank you! Looks like a decent tool and works pretty good. Do you also have plans to import proxy support and scanning of multiple targets at once? hi, zorry the name of creator tool is nmalcolm, (https://github.com/nmalcolm/) Reggards! RE: Inventus - find subdomains of a specific domain - mothered - 08-30-2017 Time to get my VM Into action. This'll certainly come to good use. Thanks. |