Sha256: fcd029088cb3490c8370d8019b8713e8668fdf916c568bb968dbbfc557b0f94f

Contents?: true

Size: 1.31 KB

Versions: 2

Compression:

Stored size: 1.31 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "rex-nop"
  spec.version       = Rex::Nop::VERSION
  spec.authors       = ['Metasploit Hackers']
  spec.email         = ['msfdev@metasploit.com']

  spec.summary       = %q{Ruby Exploitation(REX) library for NOP generation. }
  spec.description   = %q{This library contains the opty2 library for dynamic generation of x86 multi-byte NOPs.
                          This is useful in writing exploits and encoders. It allows you to dynamic generate variable
                          length instruction sets that are equivalent to a No Operation(NOP) without using
                          the actual 0x90 bytecode. The original code was written by Optyx and spoonm. }
  spec.homepage      = "https://github.com/rapid7/rex-nop"


  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  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 "rake"
  spec.add_development_dependency "rspec"

  spec.add_runtime_dependency "rex-arch"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rex-nop-0.1.3 rex-nop.gemspec
rex-nop-0.1.2 rex-nop.gemspec