CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/msf/core/exploit_event.rb
Views: 1904
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