From b6fe52069437e6fbd0f215e400fb296209df2794 Mon Sep 17 00:00:00 2001 From: sandeep Date: Sun, 25 Jul 2021 19:40:39 +0530 Subject: [PATCH] misc updates --- v2/cmd/nuclei/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v2/cmd/nuclei/main.go b/v2/cmd/nuclei/main.go index a8167dd4..13ff8697 100644 --- a/v2/cmd/nuclei/main.go +++ b/v2/cmd/nuclei/main.go @@ -42,8 +42,8 @@ func readConfig() { based on templates offering massive extensibility and ease of use.`) set.SetGroup("input", "Input Options") - set.StringVarP(&options.Target, "target", "u", "", "URL/Host to scan with nuclei").Group("input") - set.StringVarP(&options.Targets, "list", "l", "", "List of URLs/Hosts to run templates on").Group("input") + set.StringVarP(&options.Target, "target", "u", "", "URL/Host to scan with nuclei templates").Group("input") + set.StringVarP(&options.Targets, "list", "l", "", "List of URLs/Hosts to scan with nuclei templates").Group("input") set.SetGroup("templates", "Templates Options") set.StringSliceVarP(&options.Templates, "templates", "t", []string{}, "Templates to run, supports single and multiple templates using directory.").Group("templates")