Module: ExploitDataService
- Included in:
- Metasploit::Framework::DataService
- Defined in:
- lib/metasploit/framework/data_service/stubs/exploit_data_service.rb
Instance Method Summary collapse
- #report_exploit_attempt(host, opts) ⇒ Object
- #report_exploit_failure(opts) ⇒ Object
- #report_exploit_success(opts) ⇒ Object
Instance Method Details
#report_exploit_attempt(host, opts) ⇒ Object
3 4 5 |
# File 'lib/metasploit/framework/data_service/stubs/exploit_data_service.rb', line 3 def report_exploit_attempt(host, opts) raise 'ExploitDataService#report_exploit_attempt is not implemented' end |
#report_exploit_failure(opts) ⇒ Object
7 8 9 |
# File 'lib/metasploit/framework/data_service/stubs/exploit_data_service.rb', line 7 def report_exploit_failure(opts) raise 'ExploitDataService#report_exploit_failure is not implemented' end |
#report_exploit_success(opts) ⇒ Object
11 12 13 |
# File 'lib/metasploit/framework/data_service/stubs/exploit_data_service.rb', line 11 def report_exploit_success(opts) raise 'ExploitDataService#report_exploit_success is not implemented' end |