Add cp file-read

This commit is contained in:
Dhiraj Mishra 2020-03-21 22:12:58 +04:00 committed by GitHub
parent 662994aca8
commit b6f1947354
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,4 +13,9 @@ functions:
TF=$(mktemp)
echo "DATA" > $TF
sudo cp $TF $LFILE
file-read:
- description: It reads data from files, it may be used to do privileged reads or disclose files outside a restricted file system. The path must be absolute.
code: |
LFILE=file_to_read
cp "$LFILE" /dev/stdout
---