pwn 0.4.814 → 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: 6c393428995b2a6743fdd54e89558f51d1f2cba39e2b66584c28dcab6909ded6
4
- data.tar.gz: 99f6018be39be88d0ebae33622ad8f68c6d79ea59004e276122127d7080bf661
3
+ metadata.gz: 6566c8553bc576ffce7cf5388d204c51da03a4d3e1202ad41e1325909d3de0f4
4
+ data.tar.gz: d69f58605f938a6f7d3449b1afea1b24a562299a10e3d944f71130f5c9d218b2
5
5
  SHA512:
6
- metadata.gz: 43d685833561ddc676025a9564bb1bfc1b1218efb8bd235931e30aa34b7876d7b4dc70d7f130fbe29170452f564cc0f3e5c9953cbcf41120f21a7b06fa3efcb5
7
- data.tar.gz: 7dd5d2f44872fc0cf029294641aba371e836debcb239728044a35d54ffd430f5222a3bebf2fbeff218245ea700fdfc9163d86e6a24925a94a199461f26b2e03b
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.814]: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.814]: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,
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.814'
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.814
4
+ version: 0.4.815
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.