metasploit-framework/lib/rex/post/meterpreter/extensions/stdapi/stdapi.rb

42 lines
686 B
Ruby
Raw Normal View History

#!/usr/bin/ruby
require 'Rex/Post/Meterpreter/Extension'
require 'Rex/Post/Meterpreter/Extensions/Stdapi/Process'
require 'Rex/Post/Meterpreter/Extensions/Stdapi/Registry'
module Rex
module Post
module Meterpreter
module Extensions
module Stdapi
###
#
# Stdapi
# ------
#
# Standard ruby interface to remote entities
#
###
class Stdapi < Extension
def initialize(client)
super(client, 'stdapi')
end
def brand(klass)
klass = klass.dup
klass.client = self.client
return klass
end
def process
brand(Rex::Post::Meterpreter::Extensions::Stdapi::Process)
end
def registry
brand(Rex::Post::Meterpreter::Extensions::Stdapi::Registry)
end
end
end; end; end; end; end