rex-bin_tools 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ba21e1843c6ed0809551f63812526af54c664984
4
- data.tar.gz: 3f54a87ab79580725ac3f184c91659abf6790cbb
3
+ metadata.gz: '09603f0d6d8660e8cc3b32a8c0146f17e776d735'
4
+ data.tar.gz: 49c1e8b061cd4a404aa0486c260477d58a8bb56e
5
5
  SHA512:
6
- metadata.gz: 7e4776eec6b3c34c89b7ec6693cc9acf9ee629e01be3dfb8a5c7c45218820ff047077619f6107da97a3f110067d91c5b1f5a1ba0c28a153b7dc4adef8cae7371
7
- data.tar.gz: afa936ff2dcf37d672c96fa9df84323b541408a89533c970858420aa13f33d0eccda3493915b4799ead75d6582ece4e2ba95b81a4fe1fa6948f0b8fa319a3820
6
+ metadata.gz: f3ec4191363a4d995bd16e163d85b786f9c17e62a74b3b91a397d804fc1e48f3b723247d6336444011f1d9108e1ce1c7436a9abe9a1c5f965370b5f2b5ff02ca
7
+ data.tar.gz: 324c8bbb064f1243a9553d32c428fa12b117fb29995c0012064b3fec0910104e1afc4864d2fda1b15dc5bfa33c967658748a009385e2134a6cbc0a0835142f05
Binary file
data.tar.gz.sig CHANGED
Binary file
@@ -1,5 +1,5 @@
1
1
  module Rex
2
2
  module BinTools
3
- VERSION = "0.1.3"
3
+ VERSION = "0.1.4"
4
4
  end
5
5
  end
@@ -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.3
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-05-11 00:00:00.000000000 Z
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
@@ -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
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here