From 914c850cec893cfb78e71b509bf636954d7febd7 Mon Sep 17 00:00:00 2001 From: Andrea Cardaci Date: Sat, 23 Dec 2023 12:43:57 +0100 Subject: [PATCH] Fix broken YAML in varnishncsa --- _gtfobins/varnishncsa.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/_gtfobins/varnishncsa.md b/_gtfobins/varnishncsa.md index e18f122..1f803dd 100644 --- a/_gtfobins/varnishncsa.md +++ b/_gtfobins/varnishncsa.md @@ -7,11 +7,11 @@ description: | ``` functions: sudo: - code: | - LFILE=file_to_write - sudo varnishncsa -g request -q 'ReqURL ~ "/xxx"' -F '%{yyy}i' -w "$LFILE" + - code: | + LFILE=file_to_write + sudo varnishncsa -g request -q 'ReqURL ~ "/xxx"' -F '%{yyy}i' -w "$LFILE" suid: - code: | - LFILE=file_to_write - ./varnishncsa -g request -q 'ReqURL ~ "/xxx"' -F '%{yyy}i' -w "$LFILE" + - code: | + LFILE=file_to_write + ./varnishncsa -g request -q 'ReqURL ~ "/xxx"' -F '%{yyy}i' -w "$LFILE" ---