pwn 0.4.813 → 0.4.815

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4180ba499107cf08547cffbb006d958959eadb02df8e336f534e114348194bdc
4
- data.tar.gz: e250433e80715ffc153b303b6dac0bb06ec6a22fea437d6b6e5ab49ea0122429
3
+ metadata.gz: 6566c8553bc576ffce7cf5388d204c51da03a4d3e1202ad41e1325909d3de0f4
4
+ data.tar.gz: d69f58605f938a6f7d3449b1afea1b24a562299a10e3d944f71130f5c9d218b2
5
5
  SHA512:
6
- metadata.gz: 8a209a39abc1ff6088b141afe3a19592e91e955dae687a6adc3d3e9c264b8bb1ba84dd8c276d9442f83c0760cd131839929be5ac54567a0fb4193d4c3687dca0
7
- data.tar.gz: e88c7b94dff0693f9ee99caeb5f821698f865e22660c939ef52f7efcea8b313eb86216dfc0d0eab250b282907072940962f08cb8efca7141f2cae16c01e37da1
6
+ metadata.gz: cb244f903461ac2c7b5cc66beb392a1158f1c0ecb412713d712ae53380b044f7055b272383f28a319ae58fdee10779a01d18ac5222f473b26f17372e0f06ef6a
7
+ data.tar.gz: 4927eacf5a4e8656a0bfe327c43c3b731026bd08ed8ffeef30a087d2e7077092ac06e6350d1c1f8b7dcd89916ea40e5d6f680ea97e7225ebd16ca67e7acd2796
data/README.md CHANGED
@@ -37,7 +37,7 @@ $ rvm use ruby-3.2.2@pwn
37
37
  $ rvm list gemsets
38
38
  $ gem install --verbose pwn
39
39
  $ pwn
40
- pwn[v0.4.813]:001 >>> PWN.help
40
+ pwn[v0.4.815]:001 >>> PWN.help
41
41
  ```
42
42
 
43
43
  [![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
52
52
  $ gem uninstall --all --executables pwn
53
53
  $ gem install --verbose pwn
54
54
  $ pwn
55
- pwn[v0.4.813]:001 >>> PWN.help
55
+ pwn[v0.4.815]:001 >>> PWN.help
56
56
  ```
57
57
 
58
58
 
@@ -120,7 +120,7 @@ def request_path(opts = {})
120
120
  http_resp: e.class
121
121
  }
122
122
  rescue RestClient::ExceptionWithResponse => e
123
- if e.responds_to?(:response)
123
+ if e.respond_to?(:response)
124
124
  rest_client_resp_hash = {
125
125
  request_timestamp: Time.now.strftime('%Y-%m-%d_%H-%M-%S'),
126
126
  http_uri: http_uri,
@@ -17,7 +17,7 @@ module PWN
17
17
  raise "PWN Error: Invalid Directory #{dir_path}" if dir_path.nil?
18
18
 
19
19
  results_hash = opts[:results_hash]
20
- report_name = results_name[:report_name]
20
+ report_name = results_hash[:report_name]
21
21
 
22
22
  File.write(
23
23
  "#{dir_path}/#{report_name}.json",
data/lib/pwn/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PWN
4
- VERSION = '0.4.813'
4
+ VERSION = '0.4.815'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pwn
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.813
4
+ version: 0.4.815
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.