zaproxy-ruby
A Ruby Implementation and Library for Easy Utilization of ZAP API.
require 'zapv2'
Getting started
The zaproxy
gem provides Ruby bindings to the ZAP(Zed Attack Proxy) tool, allowing you to automate security testing and scanning of web applications. You can install the gem using either gem
or bundler
.
Gem
gem install zaproxy
Bundler
If you are managing dependencies with Bundler, you can add the zaproxy gem to your project's Gemfile and then use Bundler to install it.
Create a Gemfile in your project directory. and Open the Gemfile and add the following line to specify the zaproxy gem
gem 'zaproxy'
In your terminal, navigate to your project directory and run the following command to install the gem and its dependencies using Bundler
bundle install
Documents