From 3361f8a51dd3b918d9c2390bf06939b54d7a2689 Mon Sep 17 00:00:00 2001 From: Andrea Cardaci Date: Sun, 15 Mar 2020 13:18:35 +0100 Subject: [PATCH] Fix and document genisoimage The SUID function has been removed as it appears to drop privileges (at least on Debian). --- _gtfobins/genisoimage.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/_gtfobins/genisoimage.md b/_gtfobins/genisoimage.md index 3263138..6294dd5 100644 --- a/_gtfobins/genisoimage.md +++ b/_gtfobins/genisoimage.md @@ -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" ---