Skip to main content

redteam scan

redteam scan​

Execute a red team scan against a target

airs-cli redteam scan [options]

Options​

FlagRequiredDefaultDescription
--target <uuid>Yes—Target UUID
--name <name>Yes—Scan name
--type <type>NoSTATICJob type: STATIC, DYNAMIC, or CUSTOM
--categories <json>No—Category filter JSON (STATIC scans)
--prompt-sets <uuids>No—Comma-separated prompt set UUIDs (CUSTOM scans)
--goals <file>No—JSON file or inline JSON array of attack goals (DYNAMIC scans)
--depth <number>No10Max conversation turns per goal (DYNAMIC scans)
--breadth <number>No6Parallel agents per goal (DYNAMIC scans)
--no-waitNo—Submit scan without waiting for completion

Examples​

Static scan with all categories

airs-cli redteam scan --target <uuid> --name "Full Scan"

Custom scan with prompt sets

airs-cli redteam scan --target <uuid> --name "Topic Validation" --type CUSTOM --prompt-sets <uuid1>,<uuid2>

Dynamic scan with goals file

airs-cli redteam scan --target <uuid> --name "Agent Scan" --type DYNAMIC --goals goals.json --depth 10 --breadth 6