(self)
| 13 | description: str = "Base web scanner module" |
| 14 | |
| 15 | def __init__(self): |
| 16 | self.logger = get_logger(f"webscanner.{self.name}") |
| 17 | |
| 18 | @abstractmethod |
| 19 | async def run(self, target: Target) -> ScanResult: |
nothing calls this directly
no test coverage detected