Global options

... or options that you can use in any context.

Global options apply to all runners (task, workflow, scan) and allow to control the overrall behaviour of the run.


Workspace (-ws)

You can pass a workspace name to use for the runner, which will save all reports to a subfolder named after the workspace.

Example: Save results to mydomain workspace
secator x httpx mydomain.com -ws mydomain
secator w host_recon mydomain.com -ws mydomain
secator s domain mydomain.com -ws mydomain

Exporters (-o)

You can export reports in various formats using exporters.

Example: export reports as table, csv, and jsonformats
secator x httpx mydomain.com -o table,csv,json
secator w host_recon mydomain.com -o table,csv,json
secator s domain mydomain.com -o table,csv,json

Learn more about Exporters.


Drivers (-driver)

You can export live results to different targets using drivers.

To use drivers, make sure you install the corresponding addon using secator install addons <NAME>.

Example - export live results to MongoDB

First, install the mongodb addon using secator install addons mongodb

Then, use the -driver flag route your results:

secator x httpx mydomain.com -driver mongodb
secator w host_recon mydomain.com -driver mongodb
secator s domain mydomain.com -driver mongodb

Learn more about Drivers.


Last updated