Module: Msf::WebServices::VulnAttemptServlet
- Defined in:
- lib/msf/core/web_services/servlet/vuln_attempt_servlet.rb
Class Method Summary collapse
Class Method Details
.api_path ⇒ Object
3 4 5 |
# File 'lib/msf/core/web_services/servlet/vuln_attempt_servlet.rb', line 3 def self.api_path '/api/v1/vuln-attempts' end |
.api_path_with_id ⇒ Object
7 8 9 |
# File 'lib/msf/core/web_services/servlet/vuln_attempt_servlet.rb', line 7 def self.api_path_with_id "#{self.api_path}/?:id?" end |
.registered(app) ⇒ Object
11 12 13 14 15 |
# File 'lib/msf/core/web_services/servlet/vuln_attempt_servlet.rb', line 11 def self.registered(app) app.get self.api_path, &get_vuln_attempt app.get self.api_path_with_id, &get_vuln_attempt app.post self.api_path, &report_vuln_attempt end |