Profiles [WIP]

... or how to manage different runner option sets effectively.

This page is a Work In Progress. Profiles are not yet integrated with secator.

secator profiles are a way to mutualize sets of options to be quickly re-used in tasks, workflows, and scans.

We have identified that for different security assessment we need vastly different option set.

For instance, we could imagine scan profiles focused on scan speed / aggressivity playing on the rate_limit and delay options:

type: profile
name: jaguar
opts:
    rate_limit: 100000
    delay: 0

... or scan profiles focused on furtivity / stealth:

type: profile
name: ninja
opts:
    proxy: auto
    tor: true
    vpn: true

Running a task / workflow / scan with profiles be like:

secator x httpx -profiles ninja,jaguar

Last updated