This commit is contained in:
Kiran Ghimire
2021-03-02 22:11:14 +05:45
committed by GitHub
parent 320ed40277
commit 161512c6e2

15
_gtfobins/gzip.md Normal file
View File

@@ -0,0 +1,15 @@
---
functions:
file-read:
- code: |
LFILE=file_to_read
gzip -f $LFILE -t
suid:
- code: |
LFILE=file_to_read
./gzip -f $LFILE -t
sudo:
- code: |
LFILE=file_to_read
sudo gzip -f $LFILE -t
---