1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-09-16 17:01:38 +02:00
GTFOBins.github.io/_gtfobins/xz.md

16 lines
271 B
Markdown
Raw Permalink Normal View History

2020-05-24 07:12:02 +02:00
---
functions:
file-read:
- code: |
LFILE=file_to_read
xz -c "$LFILE" | xz -d
suid:
- code: |
LFILE=file_to_read
./xz -c "$LFILE" | xz -d
sudo:
- code: |
LFILE=file_to_read
sudo xz -c "$LFILE" | xz -d
---