rex-bin_tools 0.1.3 → 0.1.4
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/bin_tools/version.rb +1 -1
- data/rex-bin_tools.gemspec +0 -2
- metadata +2 -4
- 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: '09603f0d6d8660e8cc3b32a8c0146f17e776d735'
|
|
4
|
+
data.tar.gz: 49c1e8b061cd4a404aa0486c260477d58a8bb56e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f3ec4191363a4d995bd16e163d85b786f9c17e62a74b3b91a397d804fc1e48f3b723247d6336444011f1d9108e1ce1c7436a9abe9a1c5f965370b5f2b5ff02ca
|
|
7
|
+
data.tar.gz: 324c8bbb064f1243a9553d32c428fa12b117fb29995c0012064b3fec0910104e1afc4864d2fda1b15dc5bfa33c967658748a009385e2134a6cbc0a0835142f05
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data.tar.gz.sig
CHANGED
|
Binary file
|
data/rex-bin_tools.gemspec
CHANGED
|
@@ -13,8 +13,6 @@ Gem::Specification.new do |spec|
|
|
|
13
13
|
spec.description = "A suite of tools for analyzing Elf,Mach, and PE format executables to find specific chunks of code."
|
|
14
14
|
spec.homepage = "https://github.com/rapid7/rex-bin_tools"
|
|
15
15
|
|
|
16
|
-
|
|
17
|
-
|
|
18
16
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
19
17
|
spec.bindir = "bin"
|
|
20
18
|
spec.executables = ["msfbinscan", "msfelfscan", "msfmachscan", "msfpescan"]
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rex-bin_tools
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Maloney
|
|
@@ -88,7 +88,7 @@ cert_chain:
|
|
|
88
88
|
G+Hmcg1v810agasPdoydE0RTVZgEOOMoQ07qu7JFXVWZ9ZQpHT7qJATWL/b2csFG
|
|
89
89
|
8mVuTXnyJOKRJA==
|
|
90
90
|
-----END CERTIFICATE-----
|
|
91
|
-
date: 2017-
|
|
91
|
+
date: 2017-06-16 00:00:00.000000000 Z
|
|
92
92
|
dependencies:
|
|
93
93
|
- !ruby/object:Gem::Dependency
|
|
94
94
|
name: bundler
|
|
@@ -222,12 +222,10 @@ files:
|
|
|
222
222
|
- LICENSE
|
|
223
223
|
- README.md
|
|
224
224
|
- Rakefile
|
|
225
|
-
- bin/console
|
|
226
225
|
- bin/msfbinscan
|
|
227
226
|
- bin/msfelfscan
|
|
228
227
|
- bin/msfmachscan
|
|
229
228
|
- bin/msfpescan
|
|
230
|
-
- bin/setup
|
|
231
229
|
- data/identify.txt
|
|
232
230
|
- lib/rex/assembly/nasm.rb
|
|
233
231
|
- lib/rex/bin_tools.rb
|
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/bin_tools"
|
|
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
|