1
mirror of https://github.com/rapid7/metasploit-framework synced 2024-09-18 14:00:12 +02:00
metasploit-framework/dev/meterpreter/demo_site.rb

14 lines
295 B
Ruby
Raw Normal View History

#!/usr/bin/ruby -I. -I../../lib
require 'DemoClient'
HTML_FILE = "demo1.html"
host = ARGV[1] || '127.0.0.1'
port = ARGV[2] || '12345'
client = DemoClient.new(host, port).client
client.fs.file.upload('%TEMP%', HTML_FILE)
client.sys.process.execute('cmd /C "explorer %TEMP%\demo1.html"')