Skip to content

DAST Scanner profile form - add remaining options [parent issue]

Summary

This issue is for implementing the remaining options for DAST Scanner Profiles.

  1. Scan Mode
  2. Ajax Spider
  3. Debug Message

Designs

Reference design in the main issue - #225804 (closed)

Implementation plan

backend issue frontend issue
#254626 (closed) #254202 (closed)

Decisions

GraphQL

Mutation for creating a DAST Scanner Profile

mutation{
  dastScannerProfileCreate(
    input: {
      fullPath: "namespace/project"
      profileName: "test"
      spiderTimeout: 123
      targetTimeout: 123
+      activeScan: true
+      ajaxSpider: true
+      showDebugMessages: true
    }
  ) {
    id
    errors
  }
}
Edited by Dheeraj Joshi