Skip to content

Commit

Permalink
Merge pull request #1 from binarymist/newApi
Browse files Browse the repository at this point in the history
New api
  • Loading branch information
kingthorin authored Nov 13, 2018
2 parents ccad7ba + bc5da1a commit bdf3841
Show file tree
Hide file tree
Showing 34 changed files with 6,490 additions and 0 deletions.
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).

## [Unreleased] - Requiring major [semver](https://semver.org/) change

### Added

* Support for promises via [request-promise-native](https://github.com/request/request-promise-native), while retaining backwards compatibility for those wishing to use callbacks
* Ability to add the `apiKey` once only when instantiating the `ZapClient`. See example in [README](https://github.com/zaproxy/zap-api-nodejs/README.md#instantiate-the-client-api)
* Brand new [README](https://github.com/zaproxy/zap-api-nodejs/README.md)

### Changed

* Minimum NodeJS version is now 8.6.0 (breaking change)
* Source no longer in zaproxy/nodejs/api/zapv2. Now in its own repository [zaproxy/zap-api-nodejs](https://github.com/zaproxy/zap-api-nodejs)
* License changed from MIT to [Apache 2.0](https://github.com/zaproxy/zap-api-nodejs/blob/master/LICENSE)
* Replaced many `var`s with `const`s

### Removed

* The explicit `apikey` on many API methods (breaking change)
* [lodash](https://www.npmjs.com/package/lodash)

### Security

* Fixed all 12 known security defects by updating the dependencies

## 0.3.0 - 2017-12-04

89 changes: 89 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
<div align="center">
<br/>
<a href="https://github.com/zaproxy/zap-api-nodejs" title="zaproxy">
<img width=186px src="assets/images/ZapNodeApi.png" alt="zap-api-nodejs logo">
</a>
<br/>
<br/>
<h2>OWASP ZAP Node API</h2>
<br/><br/>

<a href="https://www.apache.org/licenses/LICENSE-2.0.html" title="License">
<img src="https://img.shields.io/badge/license-Apache%202-4EB1BA.svg" alt="License"/>
</a>

<br/><br/>
</div>

The NodeJS implementation to access the [OWASP ZAP API](https://github.com/zaproxy/zaproxy/wiki/ApiDetails). For more information
about OWASP ZAP consult the (main) [OWASP ZAP project](https://github.com/zaproxy/zaproxy/).

## Install

```
npm install zaproxy
```

## Usage

By default ZAP [requires an API key](https://github.com/zaproxy/zaproxy/wiki/FAQapikey) to be sent with every request. This is done automatically providing you supply the same API key when you instantiate the `ZapClient` that you use to run ZAP with. All following API requests will use this same API key.
You can disable the API key when running ZAP if you are on a trusted network and understand the risks. If you choose to do so, you may omit the `apiKey` property of the `zapOptions` object supplied to `ZapClient`.

### Instantiate the Node API:

```js
const ZapClient = require('zaproxy');

const zapOptions = {
apiKey: <the key you supplied to ZAP when you started it>, // I.E. 'v90dnblpqs1pcac991tn2oudl'
proxy: <protocol>://<host>:<port> // I.E. 'http://192.168.0.10:8080'
};

const zaproxy = new ZapClient(zapOptions);
```

### Use the Node API:

Callbacks:

```js
zaproxy.spider.scanAsUser(contextId, userId, sutBaseUrl, maxChildren, recurse, subtreeonly, (err, resp) => {
if (err) // Handle the error.
if (resp) // Handle the response.
});
```

Promises:

```js
await zaproxy.spider.scanAsUser(contextId, userId, sutBaseUrl, maxChildren)
.then(
resp => console.log(JSON.stringify(resp)),
err => `Error occurred while attempting to scan as user. Error was: ${err.message}`
);
```

## API

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

The Node API methods have the same signature as the API documentation, featuring both callback and promise based interfaces, making everyone happy.

The API key is no longer explicitly required on any Node API method invocations. Unless you have disabled the API key when running ZAP, simply provide it on Node API instantiation as mentioned in the [Usage](#usage) section and it will be provided automatically with each request to the ZAP API.

**Callback mode**: If you provide a callback as the 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.
**Promise mode**: If you wish to use the modern approach, simply don't provide a callback, and a native promise will be returned for you to deal with as you wish.

## Getting Help

For help using the OWASP ZAP API refer to:

* [Wiki](https://github.com/zaproxy/zaproxy/wiki/ApiDetails)
* [OWASP ZAP User Group](https://groups.google.com/group/zaproxy-users) - for asking questions;
* IRC: irc.mozilla.org #websectools (eg [using Mibbit](http://chat.mibbit.com/?server=irc.mozilla.org%3A%2B6697&channel=%23websectools)) - chat with core ZAP developers (European office hours usually best)

For specific help with this Node API, contact [@binarymist](https://github.com/binarymist) (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](https://github.com/zaproxy/zaproxy/issues).
Binary file added assets/images/ZapNodeApi.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit bdf3841

Please sign in to comment.