Add curl file-write

This commit is contained in:
LinuxSploit 2021-04-11 06:10:42 -04:00 committed by GitHub
parent c790928248
commit 41d9312c53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,6 +17,13 @@ functions:
code: |
LFILE=/tmp/file_to_read
curl file://$LFILE
file-write:
- description: The file path must be absolute.
code: |
LFILE=file_to_write
TF=$(mktemp)
echo DATA >$TF
curl "file://$TF" -o "$LFILE"
suid:
- description: Fetch a remote file via HTTP GET request.
code: |