(self)
| 8 | self.tags = ['default', 'safe', 'rpc'] |
| 9 | |
| 10 | def configure(self): |
| 11 | self.match_service_name(['^msrpc', '^rpcbind', '^erpc', '^ncacn_http$']) |
| 12 | self.match_port('tcp', [135, 139, 443, 445, 593]) |
| 13 | |
| 14 | async def run(self, service): |
| 15 | if service.protocol == 'tcp': |
nothing calls this directly
no test coverage detected