diff --git a/v2/cmd/functional-test/testcases.txt b/v2/cmd/functional-test/testcases.txt index 18bfd326..3c84aa4c 100644 --- a/v2/cmd/functional-test/testcases.txt +++ b/v2/cmd/functional-test/testcases.txt @@ -7,7 +7,7 @@ {{binary}} -tags 'cve','exposure' -tags 'token','logs' {{binary}} -tags cve -severity high {{binary}} -tags cve,exposure -severity high,critical -{{binary}} -tags cve,exposure -severity "high,critical,medium" +{{binary}} -tags cve,exposure -severity high,critical,medium {{binary}} -tags cve -author geeknik {{binary}} -tags cve -author geeknik,pdteam {{binary}} -tags cve -author geeknik -severity high @@ -19,12 +19,12 @@ {{binary}} -tags 'cve','exposure' -tags 'token','logs' {{binary}} -tags cve -severity high {{binary}} -tags cve,exposure -severity high,critical -{{binary}} -tags cve,exposure -severity "high,critical,medium" +{{binary}} -tags cve,exposure -severity high,critical,medium {{binary}} -tags cve -author geeknik {{binary}} -tags cve -author geeknik,pdteam {{binary}} -tags cve -author geeknik -severity high {{binary}} -tags cve,exposure -author geeknik,pdteam -severity high,critical -{{binary}} -tags "cve,exposure" -author "geeknik,pdteam" -severity "high,critical" +{{binary}} -tags "cve,exposure" -author "geeknik,pdteam" -severity high,critical {{binary}} -tags cve -etags ssrf {{binary}} -tags cve,exposure -etags ssrf,config {{binary}} -tags cve,exposure -etags ssrf,config -severity high diff --git a/v2/pkg/catalog/config/config.go b/v2/pkg/catalog/config/config.go index 1ebfaaf5..429c6d85 100644 --- a/v2/pkg/catalog/config/config.go +++ b/v2/pkg/catalog/config/config.go @@ -28,7 +28,7 @@ type Config struct { const nucleiConfigFilename = ".templates-config.json" // Version is the current version of nuclei -const Version = `2.5.1-dev` +const Version = `2.5.1` func getConfigDetails() (string, error) { homeDir, err := os.UserHomeDir()