express rpc sample

git-svn-id: file:///home/svn/framework3/trunk@10026 4d416f70-5f16-0410-b530-b9f4589650da
unstable
Jonathan Cran 2010-08-17 18:04:37 +00:00
parent 2aad6188d7
commit 06d4a66026
1 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,37 @@
#!/usr/bin/env ruby
require '/opt/metasploit-3.4.1/apps/pro/engine/lib/pro/client'
pro = Pro::Client.new() ## this will connect to the rpc service running on localhost:50505
pro.call('db.add_workspace', "hackmiami") ## create a workspace
pro.call('db.set_workspace', "hackmiami") ## set that workspace
conf = {
'workspace' => "hackmiami",
'username' => "rpc",
"ips" => ['10.0.0.0/24'],
'DS_BLACKLIST_HOSTS' => "10.0.0.1 10.0.0.2",
'DS_PORTSCAN_SPEED' => "3",
'DS_PORTS_EXTRA' => "",
'DS_PORTS_BLACKLIST' => "",
'DS_PORTS_CUSTOM' => "",
'DS_PORTSCAN_TIMEOUT' => "5",
'DS_UDP_PROBES' => "true",
'DS_IDENTIFY_SERVICES' => "true",
'DS_SMBUser' => "",
'DS_SMBPass' => "",
'DS_SMBDomain' => "",
'DS_DRY_RUN' => "false",
'DS_SINGLE_SCAN' => "false",
'DS_FAST_DETECT' => "false"
}
puts "starting discover task"
ret = pro.start_discover(conf)
task_id = ret['task_id']
puts "started discover task " + task_id
pro.task_wait(ret['task_id'])
puts "done!"