Skip to content

binarymist/zaproxy-wip

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

node-zaproxy

ZAProxy Client API for Node.js. Generated using the ZAProxy API generator. API version is 2.4.

Getting Started

Install with:

npm install zaproxy

Usage

Example:

    var options = { proxy: 'http://localhost:8080' };
    var ZapClient = require('zaproxy');
    
    var zaproxy = new ZapClient(options);
    zaproxy.core.sites(function (err, resp) {
      resp.sites.forEach(function (site) {
        // do something with the site
      });  
    });

API

For a full API list, see https://github.com/zaproxy/zaproxy/wiki/ApiGen_Index.

The Node.js API methods have the same signature as the API documentation, except that they all take a callback as their last parameter. The callback will be called with error and response arguments, with the response being an object that corresponds to the JSON output of the API call.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

 

Packages

No packages published