From fc59ef546f3fbe07f4bd0bd60750926137157ce2 Mon Sep 17 00:00:00 2001 From: Emilio Pinna Date: Wed, 30 Jan 2019 23:07:40 +0000 Subject: [PATCH] Add arp and mtr. Thanks to https://twitter.com/insecurity_ltd/status/1087727178295529473 --- _gtfobins/arp.md | 17 +++++++++++++++++ _gtfobins/mtr.md | 13 +++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 _gtfobins/arp.md create mode 100644 _gtfobins/mtr.md diff --git a/_gtfobins/arp.md b/_gtfobins/arp.md new file mode 100644 index 0000000..50ce0ca --- /dev/null +++ b/_gtfobins/arp.md @@ -0,0 +1,17 @@ +--- +description: | + The read file content is corrupted by error prints. +functions: + file-read: + - code: | + LFILE=file_to_read + arp -v -f "$LFILE" + suid: + - code: | + LFILE=file_to_read + ./arp -v -f "$LFILE" + sudo: + - code: | + LFILE=file_to_read + sudo arp -v -f "$LFILE" +--- diff --git a/_gtfobins/mtr.md b/_gtfobins/mtr.md new file mode 100644 index 0000000..ff4bccc --- /dev/null +++ b/_gtfobins/mtr.md @@ -0,0 +1,13 @@ +--- +description: | + The read file content is corrupted by error prints. +functions: + file-read: + - code: | + LFILE=file_to_read + mtr --raw -F "$LFILE" + sudo: + - code: | + LFILE=file_to_read + sudo mtr --raw -F "$LFILE" +---