added evilginx pro link to the init screen

This commit is contained in:
Kuba Gretzky
2025-10-06 12:23:37 +02:00
parent b5d0e42cde
commit 30f2016574
+12 -3
View File
@@ -35,11 +35,19 @@ func joinPath(base_path string, rel_path string) string {
return ret
}
func showAd() {
func showEvilginxProAd() {
lred := color.New(color.FgHiRed)
lyellow := color.New(color.FgHiYellow)
white := color.New(color.FgHiWhite)
message := fmt.Sprintf("%s: %s %s", lred.Sprint("Evilginx Mastery Course"), lyellow.Sprint("https://academy.breakdev.org/evilginx-mastery"), white.Sprint("(learn how to create phishlets)"))
message := fmt.Sprintf("%s %s: %s %s", lred.Sprint("Evilginx Pro"), white.Sprint("is finally out"), lyellow.Sprint("https://evilginx.com"), white.Sprint("(advanced phishing framework for red teams)"))
log.Info("%s", message)
}
func showEvilginxMasteryAd() {
lyellow := color.New(color.FgHiYellow)
white := color.New(color.FgHiWhite)
hcyan := color.New(color.FgHiCyan)
message := fmt.Sprintf("%s: %s %s", hcyan.Sprint("Evilginx Mastery Course"), lyellow.Sprint("https://academy.breakdev.org/evilginx-mastery"), white.Sprint("(learn how to create phishlets)"))
log.Info("%s", message)
}
@@ -55,7 +63,8 @@ func main() {
exe_dir := filepath.Dir(exe_path)
core.Banner()
showAd()
showEvilginxProAd()
showEvilginxMasteryAd()
_log.SetOutput(log.NullLogger().Writer())
certmagic.Default.Logger = zap.NewNop()