package gofakeit import ( "strings" ) // HackerPhrase will return a random hacker sentence func HackerPhrase() string { return hackerPhrase(GlobalFaker) } // HackerPhrase will return a random hacker sentence func (f *Faker) HackerPhrase() string { return hackerPhrase(f) } func hackerPhrase(f *Faker) string { genStr, _ := generate(f, getRandValue(f, []string{"hacker", "phrase"})) words := strings.Split(genStr, " ") words[0] = strings.ToUpper(words[0][0:1]) + words[0][1:] return strings.Join(words, " ") } // HackerAbbreviation will return a random hacker abbreviation func HackerAbbreviation() string { return hackerAbbreviation(GlobalFaker) } // HackerAbbreviation will return a random hacker abbreviation func (f *Faker) HackerAbbreviation() string { return hackerAbbreviation(f) } func hackerAbbreviation(f *Faker) string { return getRandValue(f, []string{"hacker", "abbreviation"}) } // HackerAdjective will return a random hacker adjective func HackerAdjective() string { return hackerAdjective(GlobalFaker) } // HackerAdjective will return a random hacker adjective func (f *Faker) HackerAdjective() string { return hackerAdjective(f) } func hackerAdjective(f *Faker) string { return getRandValue(f, []string{"hacker", "adjective"}) } // HackerNoun will return a random hacker noun func HackerNoun() string { return hackerNoun(GlobalFaker) } // HackerNoun will return a random hacker noun func (f *Faker) HackerNoun() string { return hackerNoun(f) } func hackerNoun(f *Faker) string { return getRandValue(f, []string{"hacker", "noun"}) } // HackerVerb will return a random hacker verb func HackerVerb() string { return hackerVerb(GlobalFaker) } // HackerVerb will return a random hacker verb func (f *Faker) HackerVerb() string { return hackerVerb(f) } func hackerVerb(f *Faker) string { return getRandValue(f, []string{"hacker", "verb"}) } // HackeringVerb will return a random hacker ingverb func HackeringVerb() string { return hackeringVerb(GlobalFaker) } // HackeringVerb will return a random hacker ingverb func (f *Faker) HackeringVerb() string { return hackeringVerb(f) } func hackeringVerb(f *Faker) string { return getRandValue(f, []string{"hacker", "ingverb"}) } func addHackerLookup() { AddFuncLookup("hackerphrase", Info{ Display: "Hacker Phrase", Category: "hacker", Description: "Informal jargon and slang used in the hacking and cybersecurity community", Example: "If we calculate the program, we can get to the AI pixel through the redundant XSS matrix!", Output: "string", Aliases: []string{ "hacker jargon", "cyber phrase", "security slang", "tech quip", "infosec phrase", }, Keywords: []string{ "phrase", "jargon", "slang", "informal", "community", "calculate", "program", "ai", "pixel", "redundant", "xss", "matrix", }, Generate: func(f *Faker, m *MapParams, info *Info) (any, error) { return hackerPhrase(f), nil }, }) AddFuncLookup("hackerabbreviation", Info{ Display: "Hacker Abbreviation", Category: "hacker", Description: "Abbreviations and acronyms commonly used in the hacking and cybersecurity community", Example: "ADP", Output: "string", Aliases: []string{ "infosec acronym", "tech abbreviation", "security acronym", "cyber acronym", "hacker shorthand", }, Keywords: []string{ "abbreviation", "acronym", "short", "code", "initialism", "common", "used", "security", "community", "terminology", }, Generate: func(f *Faker, m *MapParams, info *Info) (any, error) { return hackerAbbreviation(f), nil }, }) AddFuncLookup("hackeradjective", Info{ Display: "Hacker Adjective", Category: "hacker", Description: "Adjectives describing terms often associated with hackers and cybersecurity experts", Example: "wireless", Output: "string", Aliases: []string{ "hacker descriptor", "cyber adjective", "infosec modifier", "security adjective", "tech describing word", }, Keywords: []string{ "adjective", "descriptive", "term", "modifier", "attribute", "wireless", "connected", "digital", "virtual", "networked", }, Generate: func(f *Faker, m *MapParams, info *Info) (any, error) { return hackerAdjective(f), nil }, }) AddFuncLookup("hackernoun", Info{ Display: "Hacker Noun", Category: "hacker", Description: "Noun representing an element, tool, or concept within the realm of hacking and cybersecurity", Example: "driver", Output: "string", Aliases: []string{ "hacking tool", "cyber noun", "security concept", "tech object", "infosec element", }, Keywords: []string{ "noun", "element", "tool", "concept", "object", "driver", "exploit", "payload", "virus", "device", }, Generate: func(f *Faker, m *MapParams, info *Info) (any, error) { return hackerNoun(f), nil }, }) AddFuncLookup("hackerverb", Info{ Display: "Hacker Verb", Category: "hacker", Description: "Verbs associated with actions and activities in the field of hacking and cybersecurity", Example: "synthesize", Output: "string", Aliases: []string{ "hacking verb", "cyber action", "infosec verb", "tech activity", "security verb", }, Keywords: []string{ "verb", "action", "activity", "task", "operation", "synthesize", "exploit", "inject", "bypass", "scan", }, Generate: func(f *Faker, m *MapParams, info *Info) (any, error) { return hackerVerb(f), nil }, }) AddFuncLookup("hackeringverb", Info{ Display: "Hackering Verb", Category: "hacker", Description: "Verb describing actions and activities related to hacking, often involving computer systems and security", Example: "connecting", Output: "string", Aliases: []string{ "hacking action", "present participle", "cyber verb", "infosec activity", "progressive verb", }, Keywords: []string{ "verb", "ing", "connecting", "probing", "listening", "systems", "process", "computer", "security", "operation", }, Generate: func(f *Faker, m *MapParams, info *Info) (any, error) { return hackeringVerb(f), nil }, }) }