From 33d93b2bcdeffa78a4e2a7bce35a0e1314878822 Mon Sep 17 00:00:00 2001 From: iilegacyyii <68760809+iilegacyyii@users.noreply.github.com> Date: Mon, 5 Apr 2021 12:58:35 +0100 Subject: [PATCH] Document the --parents option of GNU cp --- _gtfobins/cp.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_gtfobins/cp.md b/_gtfobins/cp.md index cc22864..f5b9644 100644 --- a/_gtfobins/cp.md +++ b/_gtfobins/cp.md @@ -12,7 +12,7 @@ functions: - code: | LFILE=file_to_write echo "DATA" | ./cp /dev/stdin "$LFILE" - - description: This can be used to copy and then read or write files from a restricted file systems or with elevated privileges. + - description: This can be used to copy and then read or write files from a restricted file systems or with elevated privileges. (The GNU version of `cp` has the `--parents` option that can be used to also create the directory hierarchy specified in the source path, to the destination folder.) code: | LFILE=file_to_write TF=$(mktemp) @@ -22,7 +22,7 @@ functions: - code: | LFILE=file_to_write echo "DATA" | sudo cp /dev/stdin "$LFILE" - - description: This can be used to copy and then read or write files from a restricted file systems or with elevated privileges. + - description: This can be used to copy and then read or write files from a restricted file systems or with elevated privileges. (The GNU version of `cp` has the `--parents` option that can be used to also create the directory hierarchy specified in the source path, to the destination folder.) code: | LFILE=file_to_write TF=$(mktemp)