Skip to content

cli usage

Wellington Moraes edited this page May 21, 2022 · 1 revision

to use cli run:

cd burnrecon/burnrecon

python3 cli.py --help
Usage: cli.py [OPTIONS] COMMAND [ARGS]...

Options:
  --install-completion [bash|zsh|fish|powershell|pwsh]
                                  Install completion for the specified shell.
  --show-completion [bash|zsh|fish|powershell|pwsh]
                                  Show completion for the specified shell, to
                                  copy it or customize the installation.
  --help                          Show this message and exit.

Commands:
  alive-hosts  Check if subdomain is alive.
  enum         Enumerate subdomains.
  list-subs    List all subdomains of a target.
  list-urls    List all urls of a target.

Enum subdomains:

python3 cli.py enum -t hackerone -d hackerone.com

python3 cli.py enum --help
Usage: cli.py enum [OPTIONS]

  Enumerate subdomains.

Options:
  -t, --target TEXT  Name of target  [required]
  -d, --domain TEXT  Domain of target  [required]
  --help             Show this message and exit.

List subdomains:

python3 cli.py list-subs -t hackerone

python3 cli.py list-subs --help
Usage: cli.py list-subs [OPTIONS]

  List all subdomains of a target.

Options:
  -t, --target TEXT  Name of target  [required]
  --help             Show this message and exit.

Test alive hosts:

python3 cli.py alive-hosts -t hackerone

python3 cli.py alive-hosts --help
Usage: cli.py alive-hosts [OPTIONS]

  Check if subdomain is alive.

Options:
  -t, --target TEXT  Name of target  [required]
  --help             Show this message and exit.

List alive urls:

python3 cli.py list-urls -t hackerone

python3 cli.py list-urls --help
Usage: cli.py list-urls [OPTIONS]

  List all urls of a target.

Options:
  -t, --target TEXT  Name of target  [required]
  --help             Show this message and exit.

To use discord bot run:

Before do the first run, you need setting up Discord developer Application.

for instructions, please visit:

Discord Setup

Please remember to add discord token on .secrets.toml

cd burnrecon/burnrecon
python3 bot_discord.py

Clone this wiki locally