2005-07-09 21:18:49 +00:00
|
|
|
require 'msf/core'
|
2005-05-21 17:57:00 +00:00
|
|
|
|
|
|
|
module Msf
|
|
|
|
|
2005-07-14 06:34:58 +00:00
|
|
|
###
|
|
|
|
#
|
2005-11-02 16:49:45 +00:00
|
|
|
# This event subscriber class exposes methods that are called when internal
|
|
|
|
# framework events occur, such as the loading and creation of a module.
|
2005-07-14 06:34:58 +00:00
|
|
|
#
|
|
|
|
###
|
|
|
|
module GeneralEventSubscriber
|
|
|
|
#
|
|
|
|
# Called when a module is loaded
|
|
|
|
#
|
|
|
|
attr_accessor :on_module_load_proc
|
|
|
|
#
|
|
|
|
# Called when a new module instance is created
|
|
|
|
#
|
|
|
|
attr_accessor :on_module_created_proc
|
|
|
|
end
|
|
|
|
|
2005-05-21 17:57:00 +00:00
|
|
|
###
|
|
|
|
#
|
|
|
|
# This class manages subscriber registration and is the entry point
|
|
|
|
# for dispatching various events that occur for modules, such as
|
2006-01-24 03:59:44 +00:00
|
|
|
# exploit results and auxiliary module data. The framework
|
2005-05-21 17:57:00 +00:00
|
|
|
# and external modules can register themselves as subscribers to
|
|
|
|
# various events such that they can perform custom actions when
|
|
|
|
# a specific event or events occur.
|
|
|
|
#
|
|
|
|
###
|
|
|
|
class EventDispatcher
|
|
|
|
|
2006-03-21 04:37:48 +00:00
|
|
|
include Framework::Offspring
|
|
|
|
|
|
|
|
def initialize(framework)
|
|
|
|
self.framework = framework
|
2005-07-14 06:34:58 +00:00
|
|
|
self.general_event_subscribers = []
|
2005-05-21 17:57:00 +00:00
|
|
|
self.exploit_event_subscribers = []
|
|
|
|
self.session_event_subscribers = []
|
2006-03-21 05:29:26 +00:00
|
|
|
self.db_event_subscribers = []
|
2005-06-04 08:17:53 +00:00
|
|
|
self.subscribers_rwlock = Rex::ReadWriteLock.new
|
2005-05-21 17:57:00 +00:00
|
|
|
end
|
|
|
|
|
2005-10-19 03:20:20 +00:00
|
|
|
##
|
2005-05-21 17:57:00 +00:00
|
|
|
#
|
|
|
|
# Subscriber registration
|
|
|
|
#
|
2005-10-19 03:20:20 +00:00
|
|
|
##
|
|
|
|
|
|
|
|
#
|
|
|
|
# This method adds a general subscriber. General subscribers receive
|
|
|
|
# notifications when all events occur.
|
|
|
|
#
|
2005-07-14 06:34:58 +00:00
|
|
|
def add_general_subscriber(subscriber)
|
|
|
|
add_event_subscriber(general_event_subscribers, subscriber)
|
|
|
|
end
|
|
|
|
|
2005-10-19 03:20:20 +00:00
|
|
|
#
|
|
|
|
# Removes a general subscriber.
|
|
|
|
#
|
2005-07-14 06:34:58 +00:00
|
|
|
def remove_general_subscriber(subscriber)
|
|
|
|
remove_event_subscriber(general_event_subscribers, subscriber)
|
|
|
|
end
|
2005-05-21 17:57:00 +00:00
|
|
|
|
2006-03-21 04:37:48 +00:00
|
|
|
#
|
|
|
|
# This method adds a db event subscriber. db event subscribers
|
|
|
|
# receive notifications when events occur that pertain to db changes.
|
|
|
|
# The subscriber provided must implement the dbEvents module methods in
|
|
|
|
# some form.
|
|
|
|
#
|
|
|
|
def add_db_subscriber(subscriber)
|
|
|
|
add_event_subscriber(db_event_subscribers, subscriber)
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Removes a db event subscriber.
|
|
|
|
#
|
|
|
|
def remove_db_subscriber(subscriber)
|
|
|
|
remove_event_subscriber(db_event_subscribers, subscriber)
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2005-10-19 03:20:20 +00:00
|
|
|
#
|
|
|
|
# This method adds an exploit event subscriber. Exploit event subscribers
|
|
|
|
# receive notifications when events occur that pertain to exploits, such as
|
|
|
|
# the success or failure of an exploitation attempt. The subscriber
|
|
|
|
# provided must implement the ExploitEvents module methods in some form.
|
|
|
|
#
|
2005-05-21 17:57:00 +00:00
|
|
|
def add_exploit_subscriber(subscriber)
|
|
|
|
add_event_subscriber(exploit_event_subscribers, subscriber)
|
|
|
|
end
|
|
|
|
|
2005-10-19 03:20:20 +00:00
|
|
|
#
|
|
|
|
# Removes an exploit event subscriber.
|
|
|
|
#
|
2005-05-21 17:57:00 +00:00
|
|
|
def remove_exploit_subscriber(subscriber)
|
|
|
|
remove_event_subscriber(exploit_event_subscribers, subscriber)
|
|
|
|
end
|
|
|
|
|
2005-10-19 03:20:20 +00:00
|
|
|
#
|
|
|
|
# This method adds a session event subscriber. Session event subscribers
|
|
|
|
# receive notifications when sessions are opened and closed. The
|
|
|
|
# subscriber provided must implement the SessionEvents module methods in
|
|
|
|
# some form.
|
|
|
|
#
|
2005-05-21 17:57:00 +00:00
|
|
|
def add_session_subscriber(subscriber)
|
|
|
|
add_event_subscriber(session_event_subscribers, subscriber)
|
|
|
|
end
|
|
|
|
|
2005-10-19 03:20:20 +00:00
|
|
|
#
|
|
|
|
# Removes a session event subscriber.
|
|
|
|
#
|
2005-05-21 17:57:00 +00:00
|
|
|
def remove_session_subscriber(subscriber)
|
|
|
|
remove_event_subscriber(session_event_subscribers, subscriber)
|
|
|
|
end
|
|
|
|
|
2005-07-14 06:34:58 +00:00
|
|
|
##
|
|
|
|
#
|
|
|
|
# General events
|
|
|
|
#
|
|
|
|
##
|
|
|
|
|
2005-10-19 03:20:20 +00:00
|
|
|
#
|
|
|
|
# Called when a module is loaded into the framework. This, in turn,
|
|
|
|
# notifies all registered general event subscribers.
|
|
|
|
#
|
2005-07-14 06:34:58 +00:00
|
|
|
def on_module_load(name, mod)
|
|
|
|
subscribers_rwlock.synchronize_read {
|
|
|
|
general_event_subscribers.each { |subscriber|
|
|
|
|
next if (!subscriber.on_module_load_proc)
|
|
|
|
|
|
|
|
subscriber.on_module_load_proc.call(name, mod)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2005-10-19 03:20:20 +00:00
|
|
|
#
|
|
|
|
# Called when a module is unloaded from the framework. This, in turn,
|
|
|
|
# notifies all registered general event subscribers.
|
|
|
|
#
|
2005-07-14 06:34:58 +00:00
|
|
|
def on_module_created(instance)
|
|
|
|
subscribers_rwlock.synchronize_read {
|
|
|
|
general_event_subscribers.each { |subscriber|
|
|
|
|
next if (!subscriber.on_module_created_proc)
|
|
|
|
|
|
|
|
subscriber.on_module_created_proc.call(instance)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
2006-03-21 04:37:48 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Capture incoming events and pass them off to the subscribers
|
|
|
|
#
|
|
|
|
def method_missing(name, *args)
|
|
|
|
|
|
|
|
# Prevent this from hooking events prior to it actually loading
|
|
|
|
return false if not subscribers_rwlock
|
|
|
|
|
|
|
|
subscribers_rwlock.synchronize_read do
|
2006-03-21 05:29:26 +00:00
|
|
|
case name.to_s
|
2006-03-21 04:37:48 +00:00
|
|
|
|
|
|
|
# Exploit events
|
|
|
|
when /^on_exploit/
|
|
|
|
exploit_event_subscribers.each do |subscriber|
|
|
|
|
next if not subscriber.respond_to?(name)
|
|
|
|
subscriber.send(name, *args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Session events
|
|
|
|
when /^on_session/
|
|
|
|
session_event_subscribers.each do |subscriber|
|
|
|
|
next if not subscriber.respond_to?(name)
|
|
|
|
subscriber.send(name, *args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# db events
|
|
|
|
when /^on_db/
|
|
|
|
# Only process these events if the db is active
|
|
|
|
if (framework.db.active)
|
|
|
|
db_event_subscribers.each do |subscriber|
|
|
|
|
next if not subscriber.respond_to?(name)
|
|
|
|
subscriber.send(name, *args)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
# Everything else
|
|
|
|
else
|
2006-03-21 05:29:26 +00:00
|
|
|
elog("Event dispatcher received an unhandled event: #{name.to_s}")
|
|
|
|
return false
|
2006-03-21 04:37:48 +00:00
|
|
|
end
|
2006-03-21 05:29:26 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
return true
|
2005-05-21 17:57:00 +00:00
|
|
|
end
|
2006-03-21 04:37:48 +00:00
|
|
|
|
|
|
|
|
2005-05-21 17:57:00 +00:00
|
|
|
protected
|
|
|
|
|
2005-10-19 03:20:20 +00:00
|
|
|
#
|
|
|
|
# Adds an event subscriber to the supplied subscriber array.
|
|
|
|
#
|
|
|
|
def add_event_subscriber(array, subscriber) # :nodoc:
|
2005-05-21 17:57:00 +00:00
|
|
|
subscribers_rwlock.synchronize_write {
|
|
|
|
array << subscriber
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2005-10-19 03:20:20 +00:00
|
|
|
#
|
|
|
|
# Removes an event subscriber from the supplied subscriber array.
|
|
|
|
#
|
|
|
|
def remove_event_subscriber(array, subscriber) # :nodoc:
|
2005-05-21 17:57:00 +00:00
|
|
|
subscribers_rwlock.synchronize_write {
|
|
|
|
array.delete(subscriber)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2005-11-15 15:11:43 +00:00
|
|
|
attr_accessor :general_event_subscribers # :nodoc:
|
|
|
|
attr_accessor :exploit_event_subscribers # :nodoc:
|
|
|
|
attr_accessor :session_event_subscribers # :nodoc:
|
2006-03-21 05:29:26 +00:00
|
|
|
attr_accessor :db_event_subscribers # :nodoc:
|
2005-11-15 15:11:43 +00:00
|
|
|
attr_accessor :subscribers_rwlock # :nodoc:
|
2005-05-21 17:57:00 +00:00
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|