rex-core 0.1.11 → 0.1.12
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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/lib/rex/core/version.rb +1 -1
- data/lib/rex/sync/thread_safe.rb +1 -1
- data/rex-core.gemspec +3 -6
- metadata +7 -7
- metadata.gz.sig +0 -0
- data/bin/console +0 -14
- data/bin/setup +0 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ce404dfff0f44ea18f454bbccea589ae6a736628
|
|
4
|
+
data.tar.gz: 249d1e07db959a68db3283e56c9989b23a9d552c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 63cf3c9b79a52132469b05d117b1f2c144a6bb54a3be1ed158bc9334043291f7ee8bff77c969a735577c53499463c527f467246ab3caeb4108b408f593d0e143
|
|
7
|
+
data.tar.gz: ea49f8b29517ab4e08e1d7023631ac75f7077fcb6b4a0fcdfe26797bb127b4e5e855052fca37d29339e0aa09fc4697e07fd95f3cccc2b3cae61a96e1e23ba6de
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data.tar.gz.sig
CHANGED
|
Binary file
|
data/lib/rex/core/version.rb
CHANGED
data/lib/rex/sync/thread_safe.rb
CHANGED
|
@@ -33,7 +33,7 @@ module ThreadSafe
|
|
|
33
33
|
|
|
34
34
|
# Poll the set supplied to us at least once.
|
|
35
35
|
begin
|
|
36
|
-
rv = ::IO.select(rfd, wfd, efd,
|
|
36
|
+
rv = ::IO.select(rfd, wfd, efd, DEFAULT_CYCLE)
|
|
37
37
|
rescue ::IOError, ::Errno::EBADF, ::Errno::ENOTSOCK
|
|
38
38
|
# If a stream was detected as being closed, re-raise the error as
|
|
39
39
|
# a StreamClosedError with the specific file descriptor that was
|
data/rex-core.gemspec
CHANGED
|
@@ -9,15 +9,12 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.authors = ["David Maloney"]
|
|
10
10
|
spec.email = ["DMaloney@rapid7.com"]
|
|
11
11
|
|
|
12
|
-
spec.summary = %q{Core libraries required for the Ruby Exploitation(Rex) Suite.}
|
|
13
|
-
spec.description = %q{Core libraries required for the Ruby Exploitation(Rex) Suite.
|
|
12
|
+
spec.summary = %q{Core libraries required for the Ruby Exploitation (Rex) Suite.}
|
|
13
|
+
spec.description = %q{Core libraries required for the Ruby Exploitation (Rex) Suite.
|
|
14
|
+
Rex provides a variety of classes useful for security testing and exploit development.}
|
|
14
15
|
spec.homepage = "https://github.com/rapid7/rex-core"
|
|
15
16
|
|
|
16
|
-
|
|
17
|
-
|
|
18
17
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
19
|
-
spec.bindir = "exe"
|
|
20
|
-
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
21
18
|
spec.require_paths = ["lib"]
|
|
22
19
|
|
|
23
20
|
spec.required_ruby_version = '>= 2.2.0'
|
metadata
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
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.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Maloney
|
|
8
8
|
autorequire:
|
|
9
|
-
bindir:
|
|
9
|
+
bindir: bin
|
|
10
10
|
cert_chain:
|
|
11
11
|
- |
|
|
12
12
|
-----BEGIN CERTIFICATE-----
|
|
@@ -88,7 +88,7 @@ cert_chain:
|
|
|
88
88
|
G+Hmcg1v810agasPdoydE0RTVZgEOOMoQ07qu7JFXVWZ9ZQpHT7qJATWL/b2csFG
|
|
89
89
|
8mVuTXnyJOKRJA==
|
|
90
90
|
-----END CERTIFICATE-----
|
|
91
|
-
date: 2017-07-
|
|
91
|
+
date: 2017-07-20 00:00:00.000000000 Z
|
|
92
92
|
dependencies:
|
|
93
93
|
- !ruby/object:Gem::Dependency
|
|
94
94
|
name: bundler
|
|
@@ -132,7 +132,9 @@ dependencies:
|
|
|
132
132
|
- - "~>"
|
|
133
133
|
- !ruby/object:Gem::Version
|
|
134
134
|
version: '3.0'
|
|
135
|
-
description:
|
|
135
|
+
description: |-
|
|
136
|
+
Core libraries required for the Ruby Exploitation (Rex) Suite.
|
|
137
|
+
Rex provides a variety of classes useful for security testing and exploit development.
|
|
136
138
|
email:
|
|
137
139
|
- DMaloney@rapid7.com
|
|
138
140
|
executables: []
|
|
@@ -147,8 +149,6 @@ files:
|
|
|
147
149
|
- LICENSE
|
|
148
150
|
- README.md
|
|
149
151
|
- Rakefile
|
|
150
|
-
- bin/console
|
|
151
|
-
- bin/setup
|
|
152
152
|
- lib/rex/compat.rb
|
|
153
153
|
- lib/rex/core.rb
|
|
154
154
|
- lib/rex/core/version.rb
|
|
@@ -188,5 +188,5 @@ rubyforge_project:
|
|
|
188
188
|
rubygems_version: 2.6.8
|
|
189
189
|
signing_key:
|
|
190
190
|
specification_version: 4
|
|
191
|
-
summary: Core libraries required for the Ruby Exploitation(Rex) Suite.
|
|
191
|
+
summary: Core libraries required for the Ruby Exploitation (Rex) Suite.
|
|
192
192
|
test_files: []
|
metadata.gz.sig
CHANGED
|
Binary file
|
data/bin/console
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env ruby
|
|
2
|
-
|
|
3
|
-
require "bundler/setup"
|
|
4
|
-
require "rex/core"
|
|
5
|
-
|
|
6
|
-
# You can add fixtures and/or initialization code here to make experimenting
|
|
7
|
-
# with your gem easier. You can also use a different console, if you like.
|
|
8
|
-
|
|
9
|
-
# (If you use this, don't forget to add pry to your Gemfile!)
|
|
10
|
-
# require "pry"
|
|
11
|
-
# Pry.start
|
|
12
|
-
|
|
13
|
-
require "irb"
|
|
14
|
-
IRB.start
|