(self)
| 8 | self.tags = ['default', 'safe', 'http'] |
| 9 | |
| 10 | def configure(self): |
| 11 | self.add_option('api-token', help='An API Token from wpvulndb.com to help search for more vulnerabilities.') |
| 12 | self.match_service_name('^http') |
| 13 | self.match_service_name('^nacn_http$', negative_match=True) |
| 14 | |
| 15 | def manual(self, service, plugin_was_run): |
| 16 | api_token = '' |
nothing calls this directly
no test coverage detected