mirror of
https://github.com/rapid7/metasploit-framework
synced 2024-11-12 11:52:01 +01:00
16 lines
308 B
Ruby
16 lines
308 B
Ruby
|
#!/usr/bin/ruby -I. -I../../lib
|
||
|
|
||
|
require 'DemoClient'
|
||
|
|
||
|
host = ARGV[1] || '127.0.0.1'
|
||
|
port = ARGV[2] || '12345'
|
||
|
dir = ARGV[3] || "%WINDIR%\inf"
|
||
|
client = DemoClient.new(host, port).client
|
||
|
|
||
|
begin
|
||
|
Dir.mkdir('/tmp/mirror_demo')
|
||
|
rescue
|
||
|
end
|
||
|
|
||
|
client.fs.dir.download('/tmp/mirror_demo', '%WINDIR%\inf', true)
|