rex 2.0.10 → 2.0.11
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.markdown +2 -2
- data/rex.gemspec +4 -9
- metadata +5 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c41370979486041c1f1fecb5357cb247ff9ec08a
|
4
|
+
data.tar.gz: b0e2ff6341800f1d803f1447ea6e414d3fa42537
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7d77af94ac7662cf59532b9f34582714d295acc56db4383a979f34c693a40062d4130c8886b54553f77ed18146a83a7f418956c9174d452bdac8332cc568472e
|
7
|
+
data.tar.gz: 1603078bc1e93757ae475703507b2c722a8b49bf87aa854522974fdd64af52bd183dd2cf280044a55e81cfd7309fd18dda687b39cc8f6d7ab63c42c3e585d091
|
data/README.markdown
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
# Rex
|
2
2
|
|
3
|
-
An re-packaging of the Rex library included in the Metasploit Framework for use by non-Metasploit applications. Originally created by Jacob Hammack and made official by the Rapid7 development team. The upstream of this package is the rex subdirectory of https://github.com/rapid7/metasploit-framework
|
3
|
+
An re-packaging of the Rex library included in the Metasploit Framework for use by non-Metasploit applications. Originally created by Jacob Hammack and made official by the Rapid7 development team. The upstream of this package is the `lib/rex` subdirectory of <https://github.com/rapid7/metasploit-framework>
|
4
4
|
|
5
|
-
Note that prior to version 2.0.0, the 'rex' gem was an unrelated library developed by Aaron Paterson (@tenderlove).
|
5
|
+
Note that prior to version 2.0.0, the 'rex' gem was an unrelated library developed by Aaron Paterson (@tenderlove).
|
6
6
|
|
7
7
|
For users of the prior library (a lexical scanner generator), set your Gemfile to something like the following:
|
8
8
|
```
|
data/rex.gemspec
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
|
3
3
|
APP_NAME = "rex"
|
4
|
-
VERSION = "2.0.
|
4
|
+
VERSION = "2.0.11"
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = APP_NAME
|
@@ -16,7 +16,7 @@ Gem::Specification.new do |s|
|
|
16
16
|
s.require_paths = ["lib"]
|
17
17
|
s.extra_rdoc_files = ["README.markdown"]
|
18
18
|
s.platform = "ruby"
|
19
|
-
s.required_ruby_version = ">= 2.
|
19
|
+
s.required_ruby_version = ">= 2.2.0"
|
20
20
|
|
21
21
|
# Needed for Javascript obfuscation
|
22
22
|
s.add_runtime_dependency 'jsobfu', '~> 0.4.1'
|
@@ -30,13 +30,8 @@ Gem::Specification.new do |s|
|
|
30
30
|
# Needed by anemone crawler
|
31
31
|
s.add_runtime_dependency 'nokogiri'
|
32
32
|
|
33
|
-
#
|
34
|
-
|
35
|
-
unless Gem.win_platform?
|
36
|
-
# Command line editing, history, and tab completion in msfconsole
|
37
|
-
# Use the Rapid7 fork until the official gem catches up
|
38
|
-
s.add_runtime_dependency 'rb-readline-r7'
|
39
|
-
end
|
33
|
+
# Command line editing, history, and tab completion in msfconsole
|
34
|
+
s.add_runtime_dependency 'rb-readline'
|
40
35
|
|
41
36
|
# Needed by anemone crawler
|
42
37
|
s.add_runtime_dependency 'robots'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rex
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- HD Moore
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2017-06-16 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: jsobfu
|
@@ -68,7 +68,7 @@ dependencies:
|
|
68
68
|
- !ruby/object:Gem::Version
|
69
69
|
version: '0'
|
70
70
|
- !ruby/object:Gem::Dependency
|
71
|
-
name: rb-readline
|
71
|
+
name: rb-readline
|
72
72
|
requirement: !ruby/object:Gem::Requirement
|
73
73
|
requirements:
|
74
74
|
- - ">="
|
@@ -742,7 +742,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
742
742
|
requirements:
|
743
743
|
- - ">="
|
744
744
|
- !ruby/object:Gem::Version
|
745
|
-
version: 2.
|
745
|
+
version: 2.2.0
|
746
746
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
747
747
|
requirements:
|
748
748
|
- - ">="
|
@@ -750,9 +750,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
750
750
|
version: '0'
|
751
751
|
requirements: []
|
752
752
|
rubyforge_project:
|
753
|
-
rubygems_version: 2.
|
753
|
+
rubygems_version: 2.6.11
|
754
754
|
signing_key:
|
755
755
|
specification_version: 4
|
756
756
|
summary: Ruby Exploitation Library
|
757
757
|
test_files: []
|
758
|
-
has_rdoc:
|