SpoofDPI/util/welcome.go

21 lines
648 B
Go
Raw Normal View History

2022-01-03 16:46:16 +00:00
package util
import (
"github.com/pterm/pterm"
"github.com/xvzc/SpoofDPI/config"
)
func PrintWelcome() {
cyan := pterm.NewLettersFromStringWithStyle("Spoof", pterm.NewStyle(pterm.FgCyan))
purple := pterm.NewLettersFromStringWithStyle("DPI", pterm.NewStyle(pterm.FgLightMagenta))
pterm.DefaultBigText.WithLetters(cyan, purple).Render()
pterm.DefaultBulletList.WithItems([]pterm.BulletListItem{
{Level: 0, Text: "SOURCE IP : " + config.GetConfig().SrcIp},
{Level: 0, Text: "SOURCE PORT : " + config.GetConfig().SrcPort},
{Level: 0, Text: "DNS : " + config.GetConfig().DNS},
}).Render()
}