hof

Hacker one fetcher, fetch hacker one projects and get subdomains and heders for all scope domains.

Installation

cargo install hof

Dependencies

findomain: https://github.com/Findomain/Findomain

Configure vpn switching feature:

In the config file you can specify if you want the program to reconnect your vpn server every few requests, this can shorten the time that it takes to fetch a large chunk of domains from the same server, this is the default config file: ``` { "usevpn": false, "vpncmd": "", "vpnloop": 25, "vpnreconnect_delay": 10 }

``` If you want to use this feature change the "usevpn" key to true. in the "vpncmd" key specify a command to restart the vpn you are using, for example for openvpn you would use: "service openvpn restart". in the "vpnloop" specify in how many requests you want to restart the vpn for example the default 25 means every 25 requests the program will restart the vpn. in the "vpnreconnect_delay" specify how many seconds you want the progream to wait after reconnecting the vpn.

Command arguments:

``` USAGE: hof [OPTIONS] --query --path

OPTIONS: -h, --headers Tell the program wether to get http headers for all domains or not [default: true] --help Print help information -p, --path A path you want your project to be saved at -q, --query A query for hackerone -s, --subdomains Tell the program wether to find subdomains for scopes with wildcards or not [default: true] -t, --timeout Set timeout for each request in seconds [default: 8] -V, --version Print version information ```