1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-09-07 20:50:38 +02:00
This commit is contained in:
CraftyDH 2020-05-24 15:12:02 +10:00 committed by Andrea Cardaci
parent ece99d2969
commit d3a218db04

15
_gtfobins/xz.md Normal file
View File

@ -0,0 +1,15 @@
---
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
---