(self)
| 188 | self.warning(f"Interactsh failure: {e}") |
| 189 | |
| 190 | async def finish(self): |
| 191 | if self.interactsh_instance: |
| 192 | await self.helpers.sleep(5) |
| 193 | try: |
| 194 | for r in await self.interactsh_instance.poll(): |
| 195 | await self.interactsh_callback(r) |
| 196 | except InteractshError as e: |
| 197 | self.debug(f"Error in interact.sh: {e}") |
| 198 | |
| 199 | async def filter_event(self, event): |
| 200 | # Unless configured specifically to do so, avoid running against confirmed WAFs |
nothing calls this directly
no test coverage detected