Skip to content

Commit ec7d8af

Browse files
authored
Merge pull request #274 from ninp0/master
PWN::Plugins::OwaspZAP module - #bugfix in #stop method
2 parents 6ca2d1b + a9a113d commit ec7d8af

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ gem 'aws-sdk', '3.1.0'
1818
gem 'bettercap', '1.6.2'
1919
gem 'brakeman', '5.4.1'
2020
gem 'bson', '4.15.0'
21-
gem 'bundler', '>=2.4.12'
21+
gem 'bundler', '>=2.4.13'
2222
gem 'bundler-audit', '0.9.1'
2323
gem 'bunny', '2.20.3'
2424
gem 'colorize', '0.8.1'
@@ -36,7 +36,7 @@ gem 'ipaddress', '0.8.3'
3636
gem 'jenkins_api_client2', '1.9.0'
3737
gem 'js-beautify', '0.1.8'
3838
gem 'json', '2.6.3'
39-
gem 'jsonpath', '1.1.2'
39+
gem 'jsonpath', '1.1.3'
4040
gem 'jwt', '2.7.0'
4141
gem 'luhn', '1.0.2'
4242
gem 'mail', '2.8.1'

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ $ rvm use ruby-3.2.2@pwn
3737
$ rvm list gemsets
3838
$ gem install --verbose pwn
3939
$ pwn
40-
pwn[v0.4.691]:001 >>> PWN.help
40+
pwn[v0.4.692]:001 >>> PWN.help
4141
```
4242

4343
[![Installing the pwn Security Automation Framework](https://raw.githubusercontent.com/0dayInc/pwn/master/documentation/pwn_install.png)](https://youtu.be/G7iLUY4FzsI)
@@ -52,7 +52,7 @@ $ rvm use ruby-3.2.2@pwn
5252
$ gem uninstall --all --executables pwn
5353
$ gem install --verbose pwn
5454
$ pwn
55-
pwn[v0.4.691]:001 >>> PWN.help
55+
pwn[v0.4.692]:001 >>> PWN.help
5656
```
5757

5858

lib/pwn/plugins/owasp_zap.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ module OwaspZap
472472

473473
public_class_method def self.stop(opts = {})
474474
zap_obj = opts[:zap_obj]
475-
Process.kill('TERM', zab_obj[:pid]) unless zap_obj.nil?
475+
Process.kill('TERM', zap_obj[:pid]) unless zap_obj.nil?
476476
rescue StandardError => e
477477
raise e
478478
end

lib/pwn/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module PWN
4-
VERSION = '0.4.691'
4+
VERSION = '0.4.692'
55
end

0 commit comments

Comments
 (0)