@saucelabs/zap
TypeScript icon, indicating that this package has built-in type declarations

0.5.2 • Public • Published

Saucebot Infosec

Sauce Labs OWASP ZAP Node API Test Changes

The NodeJS implementation to access the OWASP ZAP API in Sauce Labs. This is a "Labs" project and for experimental use only.

Install

npm install @saucelabs/zap

Usage

Sauce Labs provides OWASP Zap instances in the cloud for you to use. You only need to authenticate with your Sauce account to access the API. Currently only the australia-southeast1 region is supported.

import SauceZAP from '@saucelabs/zap'

;(async () => {
    const zaproxy = new SauceZAP({
        user: process.env.SAUCE_USERNAME,
        key: process.env.SAUCE_ACCESS_KEY,
        region: 'apac' // only supported region so far
    });

    /**
     * initiate cloud session (no other command will be accessible before)
     */
    await zaproxy.session.newSession({ commandTimeout: 1000 * 60 })

    /**
     * run ZAP commands
     */
    const { scan } = await zaproxy.spider.scan({ url: 'https://saucedemo.com' })
    // ...

    /**
     * delete session
     */
    await zaproxy.session.deleteSession()
})().catch(console.error)

Note: you can find a complete example in /examples/spider.ts

Attach to an Existing Session

If you already have a session running and you want to attach to it, you can do that by passing in the desired session id, e.g.:

const zaproxy = new SauceZAP({
    user: process.env.SAUCE_USERNAME,
    key: process.env.SAUCE_ACCESS_KEY,
    region: 'apac',
    sessionId: 'a71199b9-6016-4abd-a582-5b14f965a413'
});

/**
 * no `newSession` call needed, you can immeditially run commands
 */
const { scan } = await zaproxy.spider.scan({ url: 'https://saucedemo.com' })

API

For a full API list, see https://www.zaproxy.org/docs/api. The Node API methods have the same signature as the API documentation.

Getting Help

For help using the OWASP ZAP API refer to:

For specific help with this Node API, contact @christian-bromann (the maintainer).

Issues

To report issues related to the OWASP ZAP Node API, bugs and enhancements requests, use the issue tracker of the main OWASP ZAP project.

Dependents (0)

Package Sidebar

Install

npm i @saucelabs/zap

Weekly Downloads

1

Version

0.5.2

License

Apache-2.0

Unpacked Size

1.28 MB

Total Files

24

Last publish

Collaborators

  • william.nunes-sl
  • christina.tonkonogaya
  • joaquin.hurtado
  • webdev-saucelabs
  • gracjan.grala
  • david.missmann
  • thomas.fett
  • aluedeke_sauce
  • pawel-sauce
  • nick.sauce
  • diego.molina
  • sakhi-sl
  • navrajsingh
  • it10403npm
  • rillgen-saucelabs
  • saucebot
  • krzysztof.sulejczak.sauce