Files
metasploit-gs/lib/msf/ui/console/framework_event_manager.rb
T

57 lines
1.1 KiB
Ruby
Raw Normal View History

2005-07-16 08:12:58 +00:00
module Msf
module Ui
module Console
###
#
# Handles events of various types that are sent from the framework.
#
###
module FrameworkEventManager
2005-10-30 22:20:29 +00:00
include Msf::SessionEvent
2005-07-16 08:12:58 +00:00
#
# Subscribes to the framework as a subscriber of various events.
#
def register_event_handlers
framework.events.add_session_subscriber(self)
end
#
# Unsubscribes from the framework.
#
def deregister_event_handlers
framework.events.remove_session_subscriber(self)
end
#
# Called when a session is registered with the framework.
#
def on_session_open(session)
2005-07-17 00:52:47 +00:00
output.print_status("#{session.desc} session #{session.name} opened (#{session.tunnel_to_s})")
2005-10-02 03:21:26 +00:00
if (Msf::Logging.session_logging_enabled? == true)
Msf::Logging.start_session_log(session)
end
2005-07-16 08:12:58 +00:00
end
#
# Called when a session is closed and removed from the framework.
#
def on_session_close(session)
if (session.interacting == true)
output.print_line
end
2005-10-02 03:21:26 +00:00
# If logging had been enabled for this session, stop it now.
Msf::Logging::stop_session_log(session)
2005-07-17 00:52:47 +00:00
output.print_status("#{session.desc} session #{session.name} closed.")
2005-07-16 08:12:58 +00:00
end
end
end
end
2008-10-19 21:03:39 +00:00
end