ronin_exploit do parameter :path, :default => 'data', :description => 'Parameter to be shared with the exploit' cache do self.name = 'example' 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 end def buffer @buffer end def build @buffer = "GET /#{@path}/#{@encoded_payload}" end end