Sha256: a2a6c898c3eb7efaa88cf9cefcd20533f6adaccfa592fdb4cecf6f6da0eb71b3

Contents?: true

Size: 1.39 KB

Versions: 11

Compression:

Stored size: 1.39 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rex/exploitation/version'

Gem::Specification.new do |spec|
  spec.name          = "rex-exploitation"
  spec.version       = Rex::Exploitation::VERSION
  spec.authors       = ["David Maloney"]
  spec.email         = ["DMaloney@rapid7.com"]

  spec.summary       = %q{Ruby Exploitation(Rex) library for various exploitation helpers}
  spec.description   = %q{This gem contains various helper mechanisms for creating exploits.
                          This includes SEH Overwrite helpers, egghunters, command stagers and more.}
  spec.homepage      = "https://github.com/rapid7/rex-exploitation"


  spec.files         = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.required_ruby_version = '>= 2.2.0'

  spec.add_development_dependency "bundler", "~> 1.13"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "rspec", "~> 3.0"

  spec.add_runtime_dependency 'rex-text'
  spec.add_runtime_dependency 'rex-arch'
  spec.add_runtime_dependency 'rex-encoder'
  spec.add_runtime_dependency 'metasm'
  # Needed for Javascript obfuscation
  spec.add_runtime_dependency 'jsobfu'
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
rex-exploitation-0.1.24 rex-exploitation.gemspec
rex-exploitation-0.1.23 rex-exploitation.gemspec
rex-exploitation-0.1.22 rex-exploitation.gemspec
rex-exploitation-0.1.21 rex-exploitation.gemspec
rex-exploitation-0.1.20 rex-exploitation.gemspec
rex-exploitation-0.1.19 rex-exploitation.gemspec
rex-exploitation-0.1.18 rex-exploitation.gemspec
rex-exploitation-0.1.17 rex-exploitation.gemspec
rex-exploitation-0.1.16 rex-exploitation.gemspec
rex-exploitation-0.1.15 rex-exploitation.gemspec
rex-exploitation-0.1.14 rex-exploitation.gemspec