Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rapid7
GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/msf/core/exploit_event.rb
21532 views
1
###
2
#
3
# This module exposes an interface that is used when wanting to receive
4
# notifications about events pertaining to exploitation.
5
#
6
###
7
module Msf::ExploitEvent
8
9
#
10
# This method is called when an exploit succeeds.
11
#
12
def on_exploit_success(exploit, session)
13
end
14
15
end
16
17