mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-25 22:40:10 +01:00
03c2183f51
Thanks to #94.
13 lines
391 B
Markdown
13 lines
391 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"
|
|
sudo:
|
|
- code: |
|
|
LFILE=file_to_read
|
|
sudo genisoimage -q -o - "$LFILE"
|
|
---
|