1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-09-19 02:11:39 +02:00

Fix and document genisoimage

The SUID function has been removed as it appears to drop privileges (at least on
Debian).
This commit is contained in:
Andrea Cardaci 2020-03-15 13:18:35 +01:00
parent d2bbf8b8c9
commit 3361f8a51d

View File

@ -1,15 +1,12 @@
---
description: The output is placed inside the ISO9660 file system binary format thus it may not be suitable for binary content.
functions:
file-read:
- code: |
LFILE=file_to_read
genisoimage -q -o - "$LFILE"
suid:
- code: |
LFILE=file_to_read
./genisoimage -q -o - "$LFILE"
sudo:
- code: |
LFILE=file_to_read
genisoimage -q -o - "$LFILE"
sudo genisoimage -q -o - "$LFILE"
---