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