1### 2# 3# This module exposes an interface that is used when wanting to receive 4# notifications about events pertaining to exploitation. 5# 6### 7module Msf::ExploitEvent 8 9 # 10 # This method is called when an exploit succeeds. 11 # 12 def on_exploit_success(exploit, session) 13 end 14 15end 16 17