2020-04-03 22:15:39 +00:00
|
|
|
package runner
|
|
|
|
|
|
|
|
import "github.com/projectdiscovery/gologger"
|
|
|
|
|
|
|
|
const banner = `
|
|
|
|
__ _
|
|
|
|
____ __ _______/ /__ (_)
|
|
|
|
/ __ \/ / / / ___/ / _ \/ /
|
|
|
|
/ / / / /_/ / /__/ / __/ /
|
2020-06-30 20:14:04 +00:00
|
|
|
/_/ /_/\__,_/\___/_/\___/_/ v2
|
2020-04-03 22:15:39 +00:00
|
|
|
`
|
|
|
|
|
|
|
|
// Version is the current version of nuclei
|
2020-07-14 07:19:48 +00:00
|
|
|
const Version = `2.0.4`
|
2020-04-03 22:15:39 +00:00
|
|
|
|
|
|
|
// showBanner is used to show the banner to the user
|
|
|
|
func showBanner() {
|
|
|
|
gologger.Printf("%s\n", banner)
|
|
|
|
gologger.Printf("\t\tprojectdiscovery.io\n\n")
|
|
|
|
|
|
|
|
gologger.Labelf("Use with caution. You are responsible for your actions\n")
|
|
|
|
gologger.Labelf("Developers assume no liability and are not responsible for any misuse or damage.\n")
|
|
|
|
}
|