(self)
| 178 | self.debug(f"WEB_PARAMETER URL {event.data['url']} failed connectivity test, aborting") |
| 179 | |
| 180 | async def cleanup(self): |
| 181 | if self.interactsh_instance: |
| 182 | try: |
| 183 | await self.interactsh_instance.deregister() |
| 184 | self.debug( |
| 185 | f"successfully deregistered interactsh session with correlation_id {self.interactsh_instance.correlation_id}" |
| 186 | ) |
| 187 | except InteractshError as e: |
| 188 | self.warning(f"Interactsh failure: {e}") |
| 189 | |
| 190 | async def finish(self): |
| 191 | if self.interactsh_instance: |
nothing calls this directly
no test coverage detected