minor update

pull/114/head
phk918 2019-10-24 20:51:59 +02:00 committed by GitHub
parent b68a2d51e7
commit c8792783ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -3235,6 +3235,11 @@ client> tar czvfp - /path/to/dir | nc 10.240.30.3 5000
###### Launch remote shell
```bash
# 1)
server> nc -l 5000 -e /bin/bash
client> nc 10.240.30.3 5000
# 2)
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