From 7da862726207fff338a930abc8a7971efd7975ff Mon Sep 17 00:00:00 2001 From: Andrea Cardaci Date: Sun, 17 Jan 2021 23:38:07 +0100 Subject: [PATCH] Remove adiff since is ar that actually reads here --- _gtfobins/adiff.md | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 _gtfobins/adiff.md diff --git a/_gtfobins/adiff.md b/_gtfobins/adiff.md deleted file mode 100644 index e018484..0000000 --- a/_gtfobins/adiff.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -functions: - file-read: - - description: Read files from archives when utils like "tar" are missing. - code: | - OUTFILE=$(mktemp -u) - LFILE=file_to_read - ar r "${OUTFILE}" "${LFILE}" - adiff "${OUTFILE}" /dev/null - ls -la Unpack* ----