Sha256: 2d3f903af6d1710fdb5e13dd24bd9d18d3376e458108e6ae594ebc4bafeccb08

Contents?: true

Size: 1.34 KB

Versions: 14

Compression:

Stored size: 1.34 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.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

14 entries across 14 versions & 1 rubygems

Version Path
rex-exploitation-0.1.13 rex-exploitation.gemspec
rex-exploitation-0.1.12 rex-exploitation.gemspec
rex-exploitation-0.1.11 rex-exploitation.gemspec
rex-exploitation-0.1.10 rex-exploitation.gemspec
rex-exploitation-0.1.9 rex-exploitation.gemspec
rex-exploitation-0.1.8 rex-exploitation.gemspec
rex-exploitation-0.1.7 rex-exploitation.gemspec
rex-exploitation-0.1.6 rex-exploitation.gemspec
rex-exploitation-0.1.5 rex-exploitation.gemspec
rex-exploitation-0.1.4 rex-exploitation.gemspec
rex-exploitation-0.1.3 rex-exploitation.gemspec
rex-exploitation-0.1.2 rex-exploitation.gemspec
rex-exploitation-0.1.1 rex-exploitation.gemspec
rex-exploitation-0.1.0 rex-exploitation.gemspec