| 111 | error('{bright}[{bgreen}' + self.slug + '{crst}]{rst} ' + msg) |
| 112 | |
| 113 | class PortScan(Plugin): |
| 114 | |
| 115 | def __init__(self): |
| 116 | super().__init__() |
| 117 | self.type = None |
| 118 | self.specific_ports = False |
| 119 | |
| 120 | async def run(self, target): |
| 121 | raise NotImplementedError |
| 122 | |
| 123 | class ServiceScan(Plugin): |
| 124 |
nothing calls this directly
no outgoing calls
no test coverage detected