Files
metasploit-gs/lib/msf/core/exploit_event.rb
T
2020-12-07 10:31:45 +00:00

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