From c207d1f3b926cf2b02ace1665c8ed50122136cf2 Mon Sep 17 00:00:00 2001 From: Michalis Papadopoullos <2173624+xmpf@users.noreply.github.com> Date: Sat, 27 Nov 2021 17:46:54 +0200 Subject: [PATCH] Add pax Co-authored-by: ishtar Co-authored-by: Andrea Cardaci --- _gtfobins/pax.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 _gtfobins/pax.md diff --git a/_gtfobins/pax.md b/_gtfobins/pax.md new file mode 100644 index 0000000..f7cf702 --- /dev/null +++ b/_gtfobins/pax.md @@ -0,0 +1,8 @@ +--- +functions: + file-read: + - description: The output is a `tar` archive containing the read file as it is, hence this may not be suitable to read arbitrary binary files. + code: | + LFILE=file_to_read + pax -w "$LFILE" +---