version update

dev
sandeep 2021-03-06 20:47:49 +05:30
parent 8d1178f8e8
commit 91295266e3
2 changed files with 3 additions and 3 deletions

View File

@ -85,7 +85,7 @@ based on templates offering massive extensibility and ease of use.`)
set.IntVarP(&options.StatsInterval, "stats-interval", "si", 5, "Number of seconds between each stats line") set.IntVarP(&options.StatsInterval, "stats-interval", "si", 5, "Number of seconds between each stats line")
set.BoolVar(&options.SystemResolvers, "system-resolvers", false, "Use system dns resolving as error fallback") set.BoolVar(&options.SystemResolvers, "system-resolvers", false, "Use system dns resolving as error fallback")
set.IntVar(&options.PageTimeout, "page-timeout", 20, "Seconds to wait for each page in headless") set.IntVar(&options.PageTimeout, "page-timeout", 20, "Seconds to wait for each page in headless")
set.BoolVar(&options.NewTemplates, "new-templates", false, "Only run newly added templates") set.BoolVarP(&options.NewTemplates, "new-templates", "nt", false, "Only run newly added templates")
_ = set.Parse() _ = set.Parse()
if cfgFile != "" { if cfgFile != "" {

View File

@ -7,11 +7,11 @@ const banner = `
____ __ _______/ /__ (_) ____ __ _______/ /__ (_)
/ __ \/ / / / ___/ / _ \/ / / __ \/ / / / ___/ / _ \/ /
/ / / / /_/ / /__/ / __/ / / / / / /_/ / /__/ / __/ /
/_/ /_/\__,_/\___/_/\___/_/ v2.2.1-dev /_/ /_/\__,_/\___/_/\___/_/ v2.3.0
` `
// Version is the current version of nuclei // Version is the current version of nuclei
const Version = `2.2.1-dev` const Version = `2.3.0`
// showBanner is used to show the banner to the user // showBanner is used to show the banner to the user
func showBanner() { func showBanner() {