(self, filter_func=lambda *a, **kw: True)
| 19 | path = "auxiliary/wifi" |
| 20 | |
| 21 | def run(self, filter_func=lambda *a, **kw: True): |
| 22 | self._filter_func = filter_func |
| 23 | ScanMixin.scan(self, self.config.option('INTERFACE').value, self.config.option('TIMEOUT').value) |
| 24 | delattr(self, "_filter_func") |
| 25 | |
| 26 | |
| 27 | class FindSsids(SniffModule): |