Skip to content

Commit 30f2016

Browse files
committed
added evilginx pro link to the init screen
1 parent b5d0e42 commit 30f2016

1 file changed

Lines changed: 12 additions & 3 deletions

File tree

main.go

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,19 @@ func joinPath(base_path string, rel_path string) string {
3535
return ret
3636
}
3737

38-
func showAd() {
38+
func showEvilginxProAd() {
3939
lred := color.New(color.FgHiRed)
4040
lyellow := color.New(color.FgHiYellow)
4141
white := color.New(color.FgHiWhite)
42-
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)"))
42+
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)"))
43+
log.Info("%s", message)
44+
}
45+
46+
func showEvilginxMasteryAd() {
47+
lyellow := color.New(color.FgHiYellow)
48+
white := color.New(color.FgHiWhite)
49+
hcyan := color.New(color.FgHiCyan)
50+
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)"))
4351
log.Info("%s", message)
4452
}
4553

@@ -55,7 +63,8 @@ func main() {
5563
exe_dir := filepath.Dir(exe_path)
5664

5765
core.Banner()
58-
showAd()
66+
showEvilginxProAd()
67+
showEvilginxMasteryAd()
5968

6069
_log.SetOutput(log.NullLogger().Writer())
6170
certmagic.Default.Logger = zap.NewNop()

0 commit comments

Comments
 (0)