stuff and or things

git-svn-id: file:///home/svn/incoming/trunk@2545 4d416f70-5f16-0410-b530-b9f4589650da
unstable
Matt Miller 2005-06-02 20:35:19 +00:00
parent 1de2dac652
commit 3d68b31643
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ class DemoClient
self.sock = TCPSocket.new(host, port)
self.client = Rex::Post::Meterpreter::Client.new(sock)
self.client.core.use('Module' => 'Stdapi')
self.client.core.use('Stdapi')
end
attr_reader :client

View File

@ -15,7 +15,7 @@ sock = TCPSocket.new('127.0.0.1', 12345)
client = Rex::Post::Meterpreter::Client.new(sock)
client.core.use(
'Module' => 'Stdapi')
'Stdapi')
puts "Client interface:"
client.dump_extension_tree.each { |x|