From 696b9aa173406d7d455dc46b9804d70f0cda7077 Mon Sep 17 00:00:00 2001 From: Andrea Cardaci Date: Tue, 17 Mar 2020 14:37:38 +0100 Subject: [PATCH] Add hd.md --- _gtfobins/hd.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 _gtfobins/hd.md diff --git a/_gtfobins/hd.md b/_gtfobins/hd.md new file mode 100644 index 0000000..96ed69b --- /dev/null +++ b/_gtfobins/hd.md @@ -0,0 +1,16 @@ +--- +description: The output is actually an hex dump. +functions: + file-read: + - code: | + LFILE=file_to_read + hd "$LFILE" + suid: + - code: | + LFILE=file_to_read + ./hd "$LFILE" + sudo: + - code: | + LFILE=file_to_read + sudo hd "$LFILE" +---