TGTGInsighttelegram intelligenceLIVE / telegram public index
Post content
Post content
Continuation: if strings.ToUpper(answer) == "Y" { whoisCmd := exec.Command("whois", IP) whoisOutput, err := whoisCmd.Output() if err != nil { log.Fatal("Error running whois command:", err) } fmt.Println(string(whoisOutput)) } else { fmt.Println("[+] Goodbye!") os.Exit(0) } } Source: Internet :)