pwn 0.4.567 → 0.4.568

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 998e92bf9d42457477982895bd8cc20142b364027f0f44c6ab64721598ea299c
4
- data.tar.gz: a072b289e4e2c997dea3353b5d283d622fbc06a1ee8bbbb841a2c90305f30131
3
+ metadata.gz: 1efcb2bc24bd0a3ee0399b39fe6d168a3ed35e256820817f4a8a877d16014540
4
+ data.tar.gz: b8b124ba34dbca81576eb0ba6208856e6866a62d4abbd0aa7e1115bbce292dd9
5
5
  SHA512:
6
- metadata.gz: bcde502575eacf9f823c33fb4966cbc856e52ff2f3eef60bdd2082814306f6b9853eba0d90b15ca9fb8bd889499b7ac91f5afb2e137ecadfacc832394ce70fb7
7
- data.tar.gz: 810ecf6ecd0b94880f19044e818840f935e91fa00a41f11cc8e7ad18ab2b59fd4b6fe4dfbd2ff05dfd8f38638cbbc29dfb583acf324204b0029b009c74edd4d5
6
+ metadata.gz: a1d35f3968a972b548c097fcfdf2db20a49b3f96d83f1a3cf6c0fdd33f6877b318ff5a45b329a810444689efb36c8b1b0942c25d311608ae71d018e7641e6b0e
7
+ data.tar.gz: 8bff8bbf45e008ecd9f4d94ab4d36ff4f6f1f078437d5465aa9d367826309024e53e0ee4e07b77625df88781aa4e16dbc911beec121ef501bfc08c4bd7a7fb75
data/Gemfile CHANGED
@@ -62,7 +62,7 @@ gem 'rspec', '3.12.0'
62
62
  gem 'rtesseract', '3.1.2'
63
63
  gem 'rubocop', '1.38.0'
64
64
  gem 'rubocop-rake', '0.6.0'
65
- gem 'rubocop-rspec', '2.14.2'
65
+ gem 'rubocop-rspec', '2.15.0'
66
66
  gem 'ruby-audio', '1.6.1'
67
67
  gem 'ruby-nmap', '0.10.0'
68
68
  gem 'ruby-saml', '1.14.0'
data/README.md CHANGED
@@ -37,7 +37,7 @@ $ rvm use ruby-3.1.2@pwn
37
37
  $ rvm list gemsets
38
38
  $ gem install --verbose pwn
39
39
  $ pwn
40
- pwn[v0.4.567]:001 >>> PWN.help
40
+ pwn[v0.4.568]: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.1.2@pwn
52
52
  $ gem uninstall --all --executables pwn
53
53
  $ gem install --verbose pwn
54
54
  $ pwn
55
- pwn[v0.4.567]:001 >>> PWN.help
55
+ pwn[v0.4.568]:001 >>> PWN.help
56
56
  ```
57
57
 
58
58
 
@@ -100,6 +100,15 @@ def request_path(opts = {})
100
100
  http_resp_length: response.body.length,
101
101
  http_resp: "#{response.body[0..300]}..."
102
102
  }
103
+ rescue RestClient::Exceptions::ReadTimeout
104
+ rest_client_resp_hash = {
105
+ request_timestamp: Time.now.strftime('%Y-%m-%d_%H-%M-%S'),
106
+ http_uri: http_uri,
107
+ http_method: http_method,
108
+ http_resp_code: 'RestClient::Exceptions::ReadTimeout',
109
+ http_resp_length: 'N/A',
110
+ http_resp: 'N/A'
111
+ }
103
112
  rescue RestClient::ExceptionWithResponse,
104
113
  RestClient::ServerBrokeConnection => e
105
114
  rest_client_resp_hash = {
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.567'
4
+ VERSION = '0.4.568'
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.567
4
+ version: 0.4.568
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.
@@ -716,14 +716,14 @@ dependencies:
716
716
  requirements:
717
717
  - - '='
718
718
  - !ruby/object:Gem::Version
719
- version: 2.14.2
719
+ version: 2.15.0
720
720
  type: :runtime
721
721
  prerelease: false
722
722
  version_requirements: !ruby/object:Gem::Requirement
723
723
  requirements:
724
724
  - - '='
725
725
  - !ruby/object:Gem::Version
726
- version: 2.14.2
726
+ version: 2.15.0
727
727
  - !ruby/object:Gem::Dependency
728
728
  name: ruby-audio
729
729
  requirement: !ruby/object:Gem::Requirement