change nc remote shell command to work on wide distros

This commit is contained in:
Ram Damera 2019-10-24 21:48:44 +05:30
parent ee52622bb6
commit b68a2d51e7
No known key found for this signature in database
GPG Key ID: 9C0F6368F699F45A

View File

@ -3235,7 +3235,8 @@ client> tar czvfp - /path/to/dir | nc 10.240.30.3 5000
###### Launch remote shell
```bash
server> nc -l 5000 -e /bin/bash
server> rm -f /tmp/f; mkfifo /tmp/f
server> cat /tmp/f | /bin/bash -i 2>&1 | nc -l 127.0.0.1 5000 > /tmp/f
client> nc 10.240.30.3 5000
```