Zirkul DevSecOps
  • Welcome
  • DevSecOps
    • Getting started
    • Creating Jobs
    • Running Jobs
    • Azure DevOps Pipelines
    • Jenkins Pipelines
    • Job Script Syntax
    • Script templates
  • Zirkul Agent
    • Running the Agent
      • Command Line Interface
    • Command reference
      • Help
      • Clear
      • Var
      • Vars
      • Print
      • Date
      • Now
      • UTCNow
      • Day
      • Month
      • Year
      • Hour
      • Minute
      • Second
      • Env
      • Is base64
      • To base64
      • From base64
    • Scanner signatures
Powered by GitBook
On this page
  1. DevSecOps

Script templates

Quick templates you can use for common tasks

Feel free to use the templates in this section as the starting point for your scripts

CICD DAST scan with Zirkul scanner


var tool = 'Zirkul Scanner'

target 150
new scan dynamic scan
    targetid: target.id
    subject: 'Dynamic Scan with {{tool}} for {{target.name}}'
    status: 'not started'
    url: target.url
    tool name: tool
    submit
    -

scan scan.id
    status: 'in progress'
    description: 'Scanning Target {{target.id}} with {{tool}}'
    update
    -

scanner
    url scan.url
    start spider
    -

scan scan.id
    status: 'completed'
    response message: 'Scan completed successfully'
    update
    -

publish issues
PreviousJob Script SyntaxNextRunning the Agent

Last updated 10 months ago