Audit the random number generation source (rand) GSC-G404
Security
Minor
1 occurrence in this check
Use of weak random number generator (math/rand instead of crypto/rand)
55
56func getRandomIndex(max int) int {
57	rand.Seed(time.Now().UnixNano())
58	return rand.Intn(max + 1)59}
60
61func getWord(context string) string {