# Stabilizing shell

#### Stabilize your shell: <a href="#heading-stabilize-your-shell" id="heading-stabilize-your-shell"></a>

1. Import pty module and spawn bash shell

   ```
   python3 -c 'import pty;pty.spawn("/bin/bash")'
   ```
2. Press `CTRL + Z` to background process and get back to your host machine
3. Use stty command to set terminal line settings and foreground back the target terminal

   ```
   stty raw -echo; fg
   ```
4. Set the terminal emulator to xterm:

   ```
   export TERM=xterm
   ```
5. Press Enter


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://darshan-2.gitbook.io/penetration-testing-checklist/reverse-shells/stabilizing-shell.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
