2007-02-10 18:07:08 +00:00
|
|
|
module Msf
|
|
|
|
module Ui
|
|
|
|
module Web
|
|
|
|
|
|
|
|
###
|
|
|
|
#
|
|
|
|
# This class implements a console instance for use by the web interface
|
|
|
|
#
|
|
|
|
###
|
|
|
|
|
|
|
|
class WebConsole
|
|
|
|
attr_accessor :pipe
|
|
|
|
attr_accessor :console
|
|
|
|
attr_accessor :console_id
|
|
|
|
attr_accessor :last_access
|
|
|
|
attr_accessor :framework
|
|
|
|
attr_accessor :thread
|
|
|
|
|
2007-03-11 19:14:10 +00:00
|
|
|
# Wrapper class in case we need to extend the pipe
|
2007-02-10 18:07:08 +00:00
|
|
|
class WebConsolePipe < Rex::IO::BidirectionalPipe
|
2007-04-04 05:35:29 +00:00
|
|
|
def prompting?
|
|
|
|
false
|
|
|
|
end
|
2007-02-10 18:07:08 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Provides some overrides for web-based consoles
|
|
|
|
#
|
|
|
|
module WebConsoleShell
|
|
|
|
|
|
|
|
def supports_color?
|
|
|
|
false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def initialize(framework, console_id)
|
|
|
|
# Configure the framework
|
|
|
|
self.framework = framework
|
|
|
|
|
|
|
|
# Configure the ID
|
|
|
|
self.console_id = console_id
|
|
|
|
|
|
|
|
# Create a new pipe
|
|
|
|
self.pipe = WebConsolePipe.new
|
|
|
|
|
|
|
|
# Create a read subscriber
|
|
|
|
self.pipe.create_subscriber('msfweb')
|
|
|
|
|
|
|
|
# Initialize the console with our pipe
|
|
|
|
self.console = Msf::Ui::Console::Driver.new(
|
|
|
|
'msf',
|
|
|
|
'>',
|
|
|
|
{
|
|
|
|
'Framework' => self.framework,
|
|
|
|
'LocalInput' => self.pipe,
|
|
|
|
'LocalOutput' => self.pipe,
|
|
|
|
'AllowCommandPassthru' => false,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
self.console.extend(WebConsoleShell)
|
2007-09-22 20:20:10 +00:00
|
|
|
self.console.block_command('irb')
|
|
|
|
|
2007-02-10 18:07:08 +00:00
|
|
|
self.thread = Thread.new { self.console.run }
|
|
|
|
|
|
|
|
update_access()
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_access
|
|
|
|
self.last_access = Time.now
|
|
|
|
end
|
|
|
|
|
|
|
|
def read
|
|
|
|
update_access
|
|
|
|
self.pipe.read_subscriber('msfweb')
|
|
|
|
end
|
|
|
|
|
|
|
|
def write(buf)
|
|
|
|
update_access
|
|
|
|
self.pipe.write_input(buf)
|
|
|
|
end
|
|
|
|
|
|
|
|
def execute(cmd)
|
|
|
|
self.console.run_single(cmd)
|
|
|
|
end
|
|
|
|
|
|
|
|
def prompt
|
|
|
|
self.pipe.prompt
|
|
|
|
end
|
|
|
|
|
|
|
|
def tab_complete(cmd)
|
|
|
|
self.console.tab_complete(cmd)
|
|
|
|
end
|
|
|
|
|
|
|
|
def shutdown
|
|
|
|
self.pipe.close
|
|
|
|
self.thread.kill
|
|
|
|
end
|
2007-02-18 04:25:46 +00:00
|
|
|
|
|
|
|
def busy
|
|
|
|
self.console.busy
|
|
|
|
end
|
2007-02-18 22:35:07 +00:00
|
|
|
|
|
|
|
def session_detach
|
|
|
|
if(self.console.active_session)
|
|
|
|
self.console.active_session.detach()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def session_kill
|
|
|
|
if(self.console.active_session)
|
|
|
|
self.console.active_session.kill()
|
|
|
|
end
|
|
|
|
end
|
2007-03-11 19:14:10 +00:00
|
|
|
|
|
|
|
def active_module
|
|
|
|
self.console.active_module
|
|
|
|
end
|
|
|
|
|
|
|
|
def active_module=(val)
|
|
|
|
self.console.active_module = val
|
|
|
|
end
|
2007-02-18 22:35:07 +00:00
|
|
|
|
2007-02-10 18:07:08 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
2008-10-19 21:03:39 +00:00
|
|
|
end
|