rex-core 0.1.28 → 0.1.30
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/.github/workflows/verify.yml +12 -6
- data/lib/rex/core/version.rb +1 -1
- data/lib/rex/exceptions.rb +6 -6
- data.tar.gz.sig +0 -0
- metadata +3 -4
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 98826de275548f6674346489347c1eadfdbcc00b469fc837b3f5bae4121f055f
|
4
|
+
data.tar.gz: 83c9d9fa15c5825da09f75bc4d9160181a7fb09fc0089920a14d0d2e133d93e4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 22b36ef36d70b2128f91dde72ff553668cdfe54c9d02b5c9d9f53f18ec4fd72fc1a24363bae1568a2acb8b0fb4674274163f411713116b7073ea33f7350bacd1
|
7
|
+
data.tar.gz: 1cfc97198648dd56168567ddb9a7e2ccf489c7f5828caf2f632843dd4f9d4d0126270a1d4d71b85e49a5edc19609af6d2ec81138f3aabbbbb8f23c705b0ab7d0
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
@@ -10,24 +10,30 @@ on:
|
|
10
10
|
|
11
11
|
jobs:
|
12
12
|
test:
|
13
|
-
runs-on:
|
13
|
+
runs-on: ${{ matrix.os }}
|
14
14
|
timeout-minutes: 40
|
15
15
|
|
16
16
|
strategy:
|
17
17
|
fail-fast: true
|
18
18
|
matrix:
|
19
19
|
ruby:
|
20
|
-
- 2.
|
21
|
-
-
|
22
|
-
- 3.
|
23
|
-
- 3.
|
20
|
+
- '2.7'
|
21
|
+
- '3.0'
|
22
|
+
- '3.1'
|
23
|
+
- '3.2'
|
24
|
+
os:
|
25
|
+
- ubuntu-20.04
|
26
|
+
- ubuntu-latest
|
27
|
+
exclude:
|
28
|
+
- { os: ubuntu-latest, ruby: '2.7' }
|
29
|
+
- { os: ubuntu-latest, ruby: '3.0' }
|
24
30
|
test_cmd:
|
25
31
|
- bundle exec rspec
|
26
32
|
|
27
33
|
env:
|
28
34
|
RAILS_ENV: test
|
29
35
|
|
30
|
-
name: Ruby ${{ matrix.ruby }} - ${{ matrix.test_cmd }}
|
36
|
+
name: ${{ matrix.os }} - Ruby ${{ matrix.ruby }} - ${{ matrix.test_cmd }}
|
31
37
|
steps:
|
32
38
|
- name: Checkout code
|
33
39
|
uses: actions/checkout@v2
|
data/lib/rex/core/version.rb
CHANGED
data/lib/rex/exceptions.rb
CHANGED
@@ -18,8 +18,8 @@ end
|
|
18
18
|
class TimeoutError < Interrupt
|
19
19
|
include Exception
|
20
20
|
|
21
|
-
def
|
22
|
-
|
21
|
+
def initialize(msg = "Operation timed out.")
|
22
|
+
super(msg)
|
23
23
|
end
|
24
24
|
end
|
25
25
|
|
@@ -32,8 +32,8 @@ end
|
|
32
32
|
class NotImplementedError < ::NotImplementedError
|
33
33
|
include Exception
|
34
34
|
|
35
|
-
def
|
36
|
-
|
35
|
+
def initialize(msg = "The requested method is not implemented.")
|
36
|
+
super(msg)
|
37
37
|
end
|
38
38
|
end
|
39
39
|
|
@@ -76,8 +76,8 @@ end
|
|
76
76
|
class ArgumentParseError < ::ArgumentError
|
77
77
|
include Exception
|
78
78
|
|
79
|
-
def
|
80
|
-
|
79
|
+
def initialize(msg = "The argument could not be parsed correctly.")
|
80
|
+
super(msg)
|
81
81
|
end
|
82
82
|
end
|
83
83
|
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rex-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.30
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Metasploit Hackers
|
@@ -93,7 +93,7 @@ cert_chain:
|
|
93
93
|
EknWpNgVhohbot1lfVAMmIhdtOVaRVcQQixWPwprDj/ydB8ryDMDosIMcw+fkoXU
|
94
94
|
9GJsSaSRRYQ9UUkVL27b64okU8D48m8=
|
95
95
|
-----END CERTIFICATE-----
|
96
|
-
date:
|
96
|
+
date: 2023-01-31 00:00:00.000000000 Z
|
97
97
|
dependencies:
|
98
98
|
- !ruby/object:Gem::Dependency
|
99
99
|
name: rake
|
@@ -177,8 +177,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
177
177
|
- !ruby/object:Gem::Version
|
178
178
|
version: '0'
|
179
179
|
requirements: []
|
180
|
-
|
181
|
-
rubygems_version: 2.7.10
|
180
|
+
rubygems_version: 3.1.4
|
182
181
|
signing_key:
|
183
182
|
specification_version: 4
|
184
183
|
summary: Core libraries required for the Ruby Exploitation (Rex) Suite.
|
metadata.gz.sig
CHANGED
Binary file
|