16 lines
281 B
Ruby
16 lines
281 B
Ruby
###
|
|
#
|
|
# This module exposes an interface that is used when wanting to receive
|
|
# notifications about events pertaining to exploitation.
|
|
#
|
|
###
|
|
module Msf::ExploitEvent
|
|
|
|
#
|
|
# This method is called when an exploit succeeds.
|
|
#
|
|
def on_exploit_success(exploit, session)
|
|
end
|
|
|
|
end
|