From b687c11f6b5f69c408c4a894c8b59eb7e5bd4df6 Mon Sep 17 00:00:00 2001 From: sandeep <8293321+ehsandeep@users.noreply.github.com> Date: Wed, 3 Apr 2024 18:51:34 +0530 Subject: [PATCH] misc option update --- cmd/nuclei/main.go | 2 +- pkg/catalog/config/constants.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/nuclei/main.go b/cmd/nuclei/main.go index dac48c17..3caec21c 100644 --- a/cmd/nuclei/main.go +++ b/cmd/nuclei/main.go @@ -315,7 +315,7 @@ on extensive configurability, massive extensibility and ease of use.`) flagSet.StringVarP(&options.FuzzingType, "fuzzing-type", "ft", "", "overrides fuzzing type set in template (replace, prefix, postfix, infix)"), flagSet.StringVarP(&options.FuzzingMode, "fuzzing-mode", "fm", "", "overrides fuzzing mode set in template (multiple, single)"), flagSet.BoolVar(&fuzzFlag, "fuzz", false, "enable loading fuzzing templates (Deprecated: use -dast instead)"), - flagSet.BoolVar(&options.DAST, "dast", false, "only run DAST templates"), + flagSet.BoolVar(&options.DAST, "dast", false, "enable / run dast (fuzz) nuclei templates"), ) flagSet.CreateGroup("uncover", "Uncover", diff --git a/pkg/catalog/config/constants.go b/pkg/catalog/config/constants.go index cd06fb00..9c1bacdc 100644 --- a/pkg/catalog/config/constants.go +++ b/pkg/catalog/config/constants.go @@ -31,7 +31,7 @@ const ( CLIConfigFileName = "config.yaml" ReportingConfigFilename = "reporting-config.yaml" // Version is the current version of nuclei - Version = `v3.2.3-dev` + Version = `v3.2.3` // Directory Names of custom templates CustomS3TemplatesDirName = "s3" CustomGitHubTemplatesDirName = "github"