Write to the stdin of the target. Only works on Linux and macOS.
(self, data: str)
| 1348 | return dbgcore.BNDebuggerGetStopReasonString(self.stop_reason) |
| 1349 | |
| 1350 | def write_stdin(self, data: str) -> None: |
| 1351 | """ |
| 1352 | Write to the stdin of the target. Only works on Linux and macOS. |
| 1353 | |
| 1354 | """ |
| 1355 | dbgcore.BNDebuggerWriteStdin(self.handle, data, len(data)) |
| 1356 | |
| 1357 | def execute_backend_command(self, command: str) -> str: |
| 1358 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected