90 lines
1.2 KiB
Go
90 lines
1.2 KiB
Go
package goaway
|
|
|
|
// DefaultProfanities is a list of profanities that are checked after the DefaultFalsePositives are removed
|
|
//
|
|
// Note that some words that would normally be in this list may be in DefaultFalseNegatives
|
|
var DefaultProfanities = []string{
|
|
"anal",
|
|
"anus",
|
|
"arse",
|
|
"ass",
|
|
"ballsack",
|
|
"balls",
|
|
"bastard",
|
|
"bitch",
|
|
"btch",
|
|
"biatch",
|
|
"blowjob",
|
|
"bollock",
|
|
"bollok",
|
|
"boner",
|
|
"boob",
|
|
"bugger",
|
|
"butt",
|
|
"choad",
|
|
"clitoris",
|
|
"cock",
|
|
"coon",
|
|
"crap",
|
|
"cum",
|
|
"cunt",
|
|
"dick",
|
|
"dildo",
|
|
"douchebag",
|
|
"dyke",
|
|
"fag",
|
|
"feck",
|
|
"fellate",
|
|
"fellatio",
|
|
"felching",
|
|
"fuck",
|
|
"fudgepacker",
|
|
"flange",
|
|
"gtfo",
|
|
"hoe", // while that's also a tool, I doubt somebody would be checking for profanities if that tool was relevant
|
|
"horny",
|
|
"incest",
|
|
"jerk",
|
|
"jizz",
|
|
"labia",
|
|
"masturbat",
|
|
"muff",
|
|
"naked",
|
|
"nazi",
|
|
"nigga",
|
|
"niggu",
|
|
"nipple",
|
|
"nips",
|
|
"nude",
|
|
"pedophile",
|
|
"penis",
|
|
"piss",
|
|
"poop",
|
|
"porn",
|
|
"prick",
|
|
"prostitut",
|
|
"pube",
|
|
"pussie",
|
|
"pussy",
|
|
"queer",
|
|
"rape",
|
|
"rapist",
|
|
"retard",
|
|
"rimjob",
|
|
"scrotum",
|
|
"sex",
|
|
"shit",
|
|
"slut",
|
|
"spunk",
|
|
"stfu",
|
|
"suckmy",
|
|
"tits",
|
|
"tittie",
|
|
"titty",
|
|
"turd",
|
|
"twat",
|
|
"vagina",
|
|
"wank",
|
|
"whore",
|
|
}
|