Secator docs
  • GETTING STARTED
    • Introduction
    • Installation
    • CLI Usage
    • Library usage
    • Configuration
    • Examples
      • 5 minutes secator session
  • RUNNER OPTIONS
    • Global options
    • Meta options
    • Input formats
    • Output options
  • IN-DEPTH
    • Philosophy & design
    • Distributed runs with Celery
    • Concepts
      • Output types
      • Proxies
      • Exporters
      • Runners
      • Drivers
      • Profiles
    • Deployment
  • For developers
    • Development setup
    • Writing tasks
      • Integrating an external command
        • Parsing JSON lines
        • Parsing raw standard output
        • Parsing output files
        • Example: integrating ls
        • Example: cat hunters
      • Integrate custom Python code [WIP]
      • Advanced options
    • Writing workflows
    • Writing scans [WIP]
Powered by GitBook
On this page
  • Workspace (-ws)
  • Output (-o)
  • Drivers (-driver)

Was this helpful?

  1. RUNNER OPTIONS

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

Output (-o)

You can export reports in various formats using built-in 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.


Previous5 minutes secator sessionNextMeta options

Last updated 27 days ago

Was this helpful?