Git Product home page Git Product logo

owasp-zap-scan's Introduction

OWASP ZAP Automated Scanning ⚡


❗ ❗ ONLY RUN THIS AGAINST APPLICATIONS / APIs YOU HAVE PERMISSION TO ATTACK ❗ ❗

Provides the ability to execute a Full Scan against a web application or a API Scan with a supplied Swagger / OpenApi Definition using the OWASP ZAP Stable Docker image within an Azure DevOps pipeline. This generates:

  1. the standard OWASP ZAP Html report
  2. an NUnit test report to publish the results to the pipeline

Getting Started

These instructions will enable you to get the Full Scan or API Scanincorporated into an Azure DevOps pipeline.

Pre-requisites

Docker needs to be installed on the machine the agent will be running on.

Incorporate into an Azure DevOps Pipeline - UKHO

This can be incorporated into an Azure Devops Pipeline by copying the azure-pipelines.yml and using this within a pipeline created against your repository for running the Zap scan.

All that needs to be done is to add a pipeline variable called ApplicationUrl, which will be the base URL of the application under test.

resources:
    repositories:
	    - repository: owaspzapui
	      type: github
	      endpoint: UKHO
	      name: UKHO/owasp-zap-ui-scan
	      ref: refs/heads/master
jobs:
- template: owasp-zap-ui-scan-template.yml@owaspzapui
  parameters:
  url: $(ApplicationUrl)

This yaml will use the contents of the master branch for this repository, using owasp-zap-ui-scan-template.yml, ZapTransform.ps1 and ZapTransformTemplate.xslt.

Incorporate into an Azure DevOps Pipeline - External to UKHO


🚧 UNDER CONSTRUCTION 🚧

The YAML file explained

The yaml template (owasp-zap-ui-scan-template.yml) needs the url parameter passed in, this will be the base URL for the application under test.

parameters:
  url: ''

A single job is executed called Run_Owasp_Zap_Scan, this will execute the steps defined below

jobs:    
- job: Run_Owasp_Zap_Scan
  pool: UKHO Ubuntu 1804
  
  workspace:
    clean: all

The first stage is to copy the files ZapTransform.ps1 and ZapTransformTemplate.xslt into the Build.ArtifactStagingDirectory of the repo that is using the template. This allows the template to access the files, as the template yaml is essentially cloned into the repository that is referencing it.

- script: |
    wget -O $(Build.ArtifactStagingDirectory)/ZapTransform.ps1 "https://raw.githubusercontent.com/UKHO/owasp-zap-ui-scan/master/src/ZapTransform.ps1"
  displayName: "Download ZapTransform.ps1 to ArtifactStagingDirectory"
  
- script: |
    wget -O $(Build.ArtifactStagingDirectory)/ZapTransformTemplate.xslt "https://raw.githubusercontent.com/UKHO/owasp-zap-ui-scan/master/src/ZapTransformTemplate.xslt"
  displayName: "Download ZapTransformTemplate.xslt to ArtifactStagingDirectory"

This next stage ensures that the agent has access to the pre-defined $(Build.ArtifactStagingDirectory) location, this may or may not be needed - this is used here as we are running on Linux.

- task: CmdLine@2
  inputs:
      script: 'chmod 777 -R $(Build.ArtifactStagingDirectory)'
      displayName: "Set chmod permissions (ArtifactStagingDirectory)"

Then the Full Scan is executed using the owasp/zap2docker-stable docker image, and the inbuilt zap-full-scan python script. The reports are then stored in the $(Build.ArtifactStagingDirectory) location.

- task: CmdLine@2
  inputs:
      script: 'docker run --rm --mount type=bind,source=$(Build.ArtifactStagingDirectory),target=/zap/wrk/ -t owasp/zap2docker-stable zap-full-scan.py -t $(ApplicationUrl) -g gen.conf -r OWASP-Zap-Report.html -x Report.xml || true' 
  displayName: "Run OWASP ZAP Full Scan"

Next up is to convert the OWASP Zap xml report into an NUnit Test Results file and publish the results. This uses the ZapTransform.ps1 and the ZapTransformTemplate.xslt.

- task: CmdLine@2  
  inputs:
      script: docker run --rm --mount type=bind,source=$(Build.SourcesDirectory)/src,target=/tmp/nunit/ --mount type=bind,source=$(Build.ArtifactStagingDirectory),target=/tmp/report/ mcr.microsoft.com/powershell:ubuntu-18.04 pwsh -File '/tmp/nunit/ZapTransform.ps1'
  displayName: "Create Nunit Test Report"

- task: PublishTestResults@2
  inputs:
      testResultsFormat: 'NUnit'
      testResultsFiles: 'Converted-OWASP-ZAP-Report.xml'
      searchFolder: '$(Build.ArtifactStagingDirectory)'
  displayName: "Publish OWASP ZAP Test Report"

All of the artifacts are then published to the pipeline.

- task: PublishBuildArtifacts@1
  inputs:
      PathtoPublish: '$(Build.ArtifactStagingDirectory)'
      ArtifactName: 'Owasp Zap HTML Report'
      publishLocation: 'Container'
  displayName: "Publish OWASP ZAP Report"

The chmod permissions are then reverted.

- task: CmdLine@2
  inputs:
      script: 'chmod 755 -R $(Build.ArtifactStagingDirectory)'
  displayName: "Revert chmod permissions (ArtifactStagingDirectory)"

References

License

This project is licensed under the MIT License - see the LICENSE file for details

Security Disclosure

The UK Hydrographic Office (UKHO) collects and supplies hydrographic and geospatial data for the merchant shipping and the Royal Navy, to protect lives at sea. Maintaining the confidentially, integrity and availability of our services is paramount. Found a security bug? You might be saving a life by reporting it to us at [email protected]

owasp-zap-scan's People

Contributors

dynamictulip avatar gregzealley avatar tomguppy avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.