Sha256: d8f5d5ea40dddbf0f3d441cd115f8ee857d49b2f31d6718c6cfd9470c17b3809
Contents?: true
Size: 482 Bytes
Versions: 12
Compression:
Stored size: 482 Bytes
Contents
module Rex module Post module Meterpreter module Extensions module Stdapi module Railgun class DLLWrapper attr_reader :_client, :_dll def initialize(dll, client) @_dll = dll @_client = client end # For backwards compatability. People check if functions are added this way # XXX: Depricate this def functions # warn 'Depricated.' _dll.functions end def method_missing(sym, *args) _dll.call_function(sym, args, _client) end end end; end; end; end; end; end
Version data entries
12 entries across 12 versions & 1 rubygems