Skip to content

GitLab CI Kotlin DSLopensavvy.gitlab.ciArtifactsapiFuzzing

apiFuzzing

fun apiFuzzing(path: String)

Collects API fuzzing security test reports.

GitLab can display the results of one or more API fuzzing reports in:

  • The merge request security widget

  • The Project Vulnerability report

  • The pipeline Security tab

  • The security dashboard

Example

val apiFuzzing by job {
    script {
        shell("run-api-fuzzing-tests")
    }

    artifacts {
        apiFuzzing("gl-api-fuzzing-report.json")
    }
}

External resources