(location: base.ScanLocation)
| 121 | |
| 122 | @staticmethod |
| 123 | def run_input_hooks(location: base.ScanLocation) -> Iterable[Detection]: |
| 124 | analyzers = plugins.load_entrypoint("aura.input_hooks") |
| 125 | |
| 126 | for input_hook in analyzers["entrypoints"].values(): |
| 127 | yield from input_hook(location=location) |
| 128 | |
| 129 | @staticmethod |
| 130 | def scan_directory(item: base.ScanLocation): |