From 49808f04d4b5848e53fa10c773711a3420d11f63 Mon Sep 17 00:00:00 2001 From: hvprvtr Date: Thu, 18 Jan 2024 09:14:44 +0300 Subject: [PATCH] Fix for line 323: [: missing `]' --- PEzor.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PEzor.sh b/PEzor.sh index e1cbd47..c58d718 100755 --- a/PEzor.sh +++ b/PEzor.sh @@ -320,7 +320,7 @@ if [ $RX = true ] && [ $SGN = true ]; then exit 1 fi -if [ $SELF = true ] && [ $OUTPUT_FORMAT == "dll" -o $OUTPUT_FORMAT == "service-dll" -o $OUTPUT_FORMAT == "reflective-dll"]; then +if [ $SELF = true ] && [ $OUTPUT_FORMAT == "dll" -o $OUTPUT_FORMAT == "service-dll" -o $OUTPUT_FORMAT == "reflective-dll" ]; then echo '[x] Error: cannot self-execute the payload when targeting DLLs' exit 1 fi