From f9043b2f14f7e60dd24804e019e329757061c9cf Mon Sep 17 00:00:00 2001 From: Emanuel Duss Date: Thu, 12 Nov 2020 14:21:00 +0100 Subject: [PATCH] New command: troff --- _gtfobins/troff.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 _gtfobins/troff.md diff --git a/_gtfobins/troff.md b/_gtfobins/troff.md new file mode 100644 index 0000000..82f59c3 --- /dev/null +++ b/_gtfobins/troff.md @@ -0,0 +1,17 @@ +--- +description: | + The read file content is corrupted by error prints. +functions: + file-read: + - code: | + LFILE=file_to_read + troff "$LFILE" + suid: + - code: | + LFILE=file_to_read + ./troff "$LFILE" + sudo: + - code: | + LFILE=file_to_read + sudo troff "$LFILE" +---