testing meterp socket shit

git-svn-id: file:///home/svn/incoming/trunk@2438 4d416f70-5f16-0410-b530-b9f4589650da
This commit is contained in:
Matt Miller 2005-04-21 06:32:24 +00:00
parent aeb885372d
commit e474f270ff
1 changed files with 31 additions and 0 deletions

31
dev/meterpreter/demo_socket.rb Executable file
View File

@ -0,0 +1,31 @@
#!/usr/bin/ruby -I. -I../../lib
require 'DemoClient'
require 'Rex/Socket/Parameters'
host = ARGV[0] || '127.0.0.1'
port = ARGV[1] || '12345'
client = DemoClient.new(host, port).client
# Create a parameter representation class based on the perl-style hash
# elements
params = Rex::Socket::Parameters.new(
'PeerHost' => '128.242.160.3',
'PeerPort' => 80,
'Proto' => 'tcp')
# Create the socket for this connection
socket = client.net.socket.create(params)
# Send GET / HTTP/1.0
socket.write("GET / HTTP/1.0\r\n\r\n")
puts "HTTP Response:\n\n"
# Read part of the response
while ((data = socket.read) != nil)
puts "#{data}"
end
while (1)
select nil, nil, nil, 5
end