(self)
| 4 | class WinRMDetection(ServiceScan): |
| 5 | |
| 6 | def __init__(self): |
| 7 | super().__init__() |
| 8 | self.name = 'WinRM Detection' |
| 9 | self.tags = ['default', 'safe', 'winrm'] |
| 10 | |
| 11 | def configure(self): |
| 12 | self.match_service_name('^wsman') |
nothing calls this directly
no outgoing calls
no test coverage detected