Sha256: 4b438f80f9ef33ea1eeaf61044520c5688a8600b75db93342ac7552ddb247d44

Contents?: true

Size: 539 Bytes

Versions: 1

Compression:

Stored size: 539 Bytes

Contents

ronin_exploit do
  cache do
    self.name = 'test'
    self.version = '0.2'

    author :name => 'Anonymous', :email => 'anonymous@example.com'

    targeting do |target|
      target.arch :i686
      target.os :name => 'Linux', :version => '2.6.23'
      target.product :name => 'ExampleWare', :version => '1.5'
    end

    targeting do |target|
      target.arch :i386
      target.os :name => 'Windows', :version => '7.1'
      target.product :name => 'ExampleWare', :version => '1.5'
    end
  end

  def build
    'result'
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ronin-exploits-0.2.1 spec/objects/exploits/test.rb