> For the complete documentation index, see [llms.txt](https://pentest.mxhx.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://pentest.mxhx.org/06-linux-privesc/bash-prison.md).

# bash prison

## which shell?

```
cat /etc/passwd  
myuser:x:............/bin/rbash  ..yuck
bobbie:x:............/bin/bash   ..might want to pivot to this
```

## escape rbash

* restricted bash shell
* Here are some easy movements you can try:

```
> bash
> /bin/bash

> dash
> /bin/dash
```
