mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-18 04:25:31 +00:00
* readme update * version + banner update * misc option update * go fmt'ed code * misc update
23 lines
505 B
Go
23 lines
505 B
Go
package runner
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/projectdiscovery/gologger"
|
|
"github.com/projectdiscovery/nuclei/v2/pkg/catalog/config"
|
|
)
|
|
|
|
var banner = fmt.Sprintf(`
|
|
__ _
|
|
____ __ _______/ /__ (_)
|
|
/ __ \/ / / / ___/ / _ \/ /
|
|
/ / / / /_/ / /__/ / __/ /
|
|
/_/ /_/\__,_/\___/_/\___/_/ v%s
|
|
`, config.Version)
|
|
|
|
// showBanner is used to show the banner to the user
|
|
func showBanner() {
|
|
gologger.Print().Msgf("%s\n", banner)
|
|
gologger.Print().Msgf("\t\tprojectdiscovery.io\n\n")
|
|
}
|