-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathword-and-phrase-filter.yml
701 lines (689 loc) · 12.9 KB
/
word-and-phrase-filter.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
# --------------------------------------------------------------------------------------
# Intelligent Word & Phrase Filter:
# Hyper intelligently detects swears configured blocked words or phrases (and words/phrases similar to those on the list) from being said in chat, commands, signs, anvils, and books (additional check contexts can be disabled).
# Bypass permission: "chatsentry.wordandphrasefilter.bypass"
# If "process-commands" is true in config.yml, this module will filter through all commands (apart from ignored commands on the list below) (of players without bypass permission or op)
# If "process-signs" is true in config.yml, this module will filter through text written on signs (of players without bypass permission or op)
# If "process-anvils" is true in config.yml, this module will filter through items renamed in anvils (of players without bypass permission or op)
# If "process-books" is true in config.yml, this module will filter through writing in books (of players without bypass permission or op)
# To block variants and attempts to bypass the filter, the module will check for similar words & phrases that are on the above list in players messages and commands.
# The value below is how similar other words/phrases must be to a word/phrase on the blacklist to be considered an attempt to exploit / bypass the filter.
# 1.0 = exactly as one of the phrases on the list (excluding character case)
# 0.0 = not exact (this eliminates the purpose of the similarity checker)
block-similarity-threshold: 0.85
# When enabled, the filter will, based off the below charset process lookalike numbers and symbols as letters to detect players substituting letters with numbers numbers to bypass the filter. Ex. @ = A, # = H, 1 = I, 3 = E, etc.
substitution-intelligence: true
# Below is the substitutions the plugin will process. Please note that adding excessive amounts of substitutions will raise false positive rates. For the best results, it's recommended to try and keep this list pretty short and around or under ~12 substitutions.
substitution-intelligence-charset:
- "1 (->) I"
- "2 (->) R"
- "3 (->) E"
- "4 (->) A"
- "@ (->) A"
- "< (->) C"
- "# (->) H"
- "$ (->) S"
- "+ (->) T"
- "( (->) C"
- "{ (->) C"
- "| (->) L"
# When enabled, the filter will scan for existing commands from other plugins and allow them to go through, even if they are falsely detected due to being similar to a blocked word
# Keeping this enabled is highly recommended, as it can prevent a lot of false positives depending on how many commands your server has.
# Note that this option will only work if "process-commands" is true in config.yml
ignore-detected-registered-commands: true
# Below is the blacklist of words & phrases that will be blocked from being said in chat & commands.
# Character case in the below list does not matter. Case variants are automatically checked by the plugin on all entries.
# Set to "blocked-words-and-phrases: []" to have an empty list.
# For preconfigured (English) lists of swears, slurs, etc. see here:
# https://wiki.chatsentry.xyz/misc-info/preset-word-lists
# Block list guide: HIGHLY RECOMMENDED TO READ TO PREVENT FALSE DETECTION ISSUES, OR USE THE PRESET LISTS !
# https://wiki.chatsentry.xyz/word-and-phrase-filter-block-list-guide
blocked-words-and-phrases:
- "exactcontains::anus"
- "arrse"
- "ass fucker"
- "assfukka"
- "asshole"
- "asswhole"
- "exactcontains::cbt"
- "ballbag"
- "ballsack"
- "bellend"
- "bestial"
- "bestiality"
- "biatch"
- "blowjob"
- "boiolas"
- "bollock"
- "boner"
- "boob"
- "naked"
- "breasts"
- "buceta"
- "bunny fucker"
- "buttmunch"
- "buttplug"
- "cocksucker"
- "cock and ball torture"
- "carpet muncher"
- "genital"
- "exactcontains::chink"
- "clit"
- "clitoris"
- "cockhead"
- "cockmunch"
- "exactcontains::cum"
- "exactcontains::cummer"
- "exactcontains::cumming"
- "exactcontains::cums"
- "exactcontains::cumshot"
- "cunilingus"
- "cunt"
- "cuntlicker"
- "cunts"
- "cyberfuck"
- "dick"
- "damn"
- "dickhead"
- "dildo"
- "dildos"
- "exactcontains::dink"
- "exactcontains::dinks"
- "dirsa"
- "dlck"
- "dogfucker"
- "doggin"
- "dogging"
- "donkeyribber"
- "doosh"
- "duche"
- "ejaculate"
- "ejaculated"
- "ejaculates"
- "ejaculating"
- "ejaculatings"
- "ejaculation"
- "ejakulate"
- "exactcontains::anal"
- "exactcontains::arse"
- "exactcontains::ass"
- "bitch"
- "beotch"
- "cock"
- "cocks"
- "exactcontains::cok"
- "exactcontains::coon"
- "cum"
- "cums"
- "dyke"
- "fag"
- "fags"
- "exactcontains::fook"
- "exactcontains::hoar"
- "exactcontains::kum"
- "exactcontains::kums"
- "exactcontains::pawn"
- "pricks"
- "sex"
- "exactcontains::tit"
- "exactcontains::tits"
- "exactcontains::twat"
- "faggitt"
- "overdose"
- "suicide"
- "faggot"
- "fagots"
- "felching"
- "fellate"
- "fellatio"
- "fingerfuck"
- "fingerfucks"
- "fistfuck"
- "fuck"
- "fuuuckkk"
- "exactcontains::fvckk"
- "fucking"
- "fudgepacker"
- "fukker"
- "fukwhit"
- "fukwit"
- "gangbang"
- "gaysex"
- "goddamn"
- "hoare"
- "horniest"
- "horny"
- "jack off"
- "jerk off"
- "exactcontains::jizz"
- "exactcontains::kawk"
- "knobead"
- "knobed"
- "knobend"
- "benis"
- "knobhead"
- "knobjocky"
- "knobjokey"
- "exactcontains::kock"
- "kondum"
- "kondums"
- "kummer"
- "kumming"
- "kunilingus"
- "labia"
- "masturbation"
- "masturbate"
- "intercourse"
- "exactcontains::mofo"
- "mothafuck"
- "mothafucka"
- "motherfuck"
- "motherfucker"
- "motherfuckin"
- "motherfucking"
- "motherfuckings"
- "motherfuckka"
- "motherfucks"
- "muthafecker"
- "mutherfucker"
- "nazi"
- "nigga"
- "niggah"
- "niggas"
- "nigger"
- "niggie"
- "nignog"
- "niglet"
- "your mom"
- "your mother"
- "exactcontains::spick"
- "exactcontains::kike"
- "exactcontains::paki"
- "exactcontains::ricey"
- "yankee"
- "currymuncher"
- "golliwog"
- "exactcontains::wog"
- "gringo"
- "goyim"
- "gypsy"
- "russki"
- "beaner"
- "beaners"
- "beanerz"
- "nobjocky"
- "twink"
- "nutsack"
- "orgasm"
- "penisfucker"
- "phonesex"
- "pigfucker"
- "piss"
- "pissed"
- "pissflaps"
- "pissing"
- "pornography"
- "porno"
- "exactcontains::pube"
- "pussies"
- "pussy"
- "pussys"
- "rectum"
- "retard"
- "rimjaw"
- "rimming"
- "sadist"
- "schlong"
- "scrotum"
- "semen"
- "shagger"
- "shaggin"
- "shagging"
- "shemale"
- "shitdick"
- "shite"
- "shitfuck"
- "shithead"
- "shit"
- "shitter"
- "skank"
- "slut"
- "smut"
- "exactcontains::xxx"
- "exactcontains::x x x"
- "son of a bitch"
- "exactcontains::spac"
- "spunk"
- "testicle"
- "exactcontains::titfuck"
- "exactcontains::tittiefucker"
- "exactcontains::titties"
- "exactcontains::tittyfuck"
- "exactcontains::your tit"
- "titwank"
- "twathead"
- "vagina"
- "viagra"
- "wank"
- "whore"
- "hitler"
- "adolf hitler"
- "suck my"
- "sugma"
- "ligma"
- "my wife"
- "penis"
- "aroused"
- "assault"
- "assaulted"
- "nsfw"
- "turd"
- "upthebutt"
- "uptheass"
- "cocaine"
- "butt"
- "meth"
- "weed"
- "pcp"
- "druggie"
- "drugs"
- "penetrate"
- "wap"
- "wtf"
- "erection"
- "erect"
- "exactcontains::kys"
- "exactcontains::k y s"
- "pu$$i"
- "trannie"
- "prolapse"
- "analprolapse"
- "nibba"
- "nunnery"
- "narger"
- "poosy"
- "exactcontains::reverse cracker"
- "rape"
- "unconsentual"
- "holocaust"
- "jew"
- "genocide"
- "homocide"
- "exactcontains::a homo"
- "exactcontains::homos"
- "exactcontains::h o m o"
- "sexual"
- "exactcontains::ur gay"
- "exactcontains::you are gay"
- "exactcontains::your gay"
- "exactcontains::is gay"
- "isis"
- "isis bomber"
- "alluh ackbar"
- "idiot"
- "exactcontains::rarted"
- "exactcontains::possy"
- "fatass"
- "exactcontains::chingding"
- "coke"
- "exactcontains::school shooter"
- "exactcontains::school shooting"
- "porn"
- "porny"
- "redneck"
- "slit throat"
- "exactcontains::scat"
- "kinks"
- "kink"
- "kinky"
- "exactcontains::turned on"
- "brassiere"
- "bigblackballs"
- "bbc"
- "fucc"
- "bwc"
- "bigwhitecock"
- "exactcontains::harder daddy"
- "panties"
- "your hole is deep"
- "exactcontains::bra"
- "exactcontains::b r a"
- "exactcontains::"
- "abortion"
- "pregnant"
- "preggers"
- "prostutute"
- "protitution"
- "fektard"
- "tard"
- "bigblacknigballs"
- "vibrator"
- "sex toy"
- "dunass"
- "dumass"
- "shawty"
- "tiananmen square"
- "massacre"
- "sack"
- "testies"
- "tessticale"
- "micropeen"
- "exactcontains::peen"
- "peepee"
- "giv head"
- "urin"
- "blow me daddy"
- "ligmadickbitch"
- "climax"
- "feces"
- "micropenis"
- "zoophile"
- "yobbo"
- "yeasty"
- "yeast infection"
- "x-rated"
- "woody"
- "womb"
- "wigger"
- "whoring"
- "whorehouse"
- "whorehopper"
- "whoreface"
- "wetback"
- "whitey"
- "wh0re"
- "wh0reface"
- "wench"
- "weewee"
- "weenie"
- "wanker"
- "wazoo"
- "vulva"
- "vulgar"
- "voyeur"
- "vaggie"
- "vag"
- "vixen"
- "uterus"
- "unwed"
- "undies"
- "tush"
- "tubgirl"
- "tramp"
- "toots"
- "thrust"
- "teabagging"
- "t1t"
- "tampon"
- "stroke"
- "sumofabiatch"
- "stoned"
- "sperm"
- "spik"
- "steamy"
- "slutdumper"
- "slutkiss"
- "smegnma"
- "sleazy"
- "sleaze"
- "slave"
- "sissy"
- "s-h-i-t"
- "s-h-1-t"
- "sh1t"
- "seduce"
- "scum"
- "seamen"
- "seaman"
- "scrud"
- "scrot"
- "screwed"
- "screw"
- "schizo"
- "s.h.i.t"
- "f.u.c.k."
- "rump"
- "rumpramer"
- "r-tard"
- "rtard"
- "rimjob"
- "reetard"
- "ritard"
- "rectal"
- "rectus"
- "recti"
- "raper"
- "rapist"
- "raping"
- "exactcontains::tight little"
- "quim"
- "queero"
- "pussypounder"
- "punkass"
- "pube"
- "pot"
- "pottie"
- "potty"
- "pron"
- "pornhub"
- "xxxvideos"
- "poontag"
- "piss-off"
- "pimp"
- "bimbo"
- "bimbobitch"
- "poon"
- "phallic"
- "phalli"
- "penile"
- "exactcontains::pedo"
- "pedophile"
- "pedophilia"
- "pedophiliac"
- "panty"
- "paddy"
- "ovums"
- "ovum"
- "orgy"
- "ovary"
- "orgies"
- "orgasmic"
- "orally"
- "oral"
- "nimrod"
- "ninny"
- "nooky"
- "nympho"
- "nazism"
- "mutherfucking"
- "muthrfucking"
- "muthafucker"
- "moddafucka"
- "muffdiver"
- "m-fucking"
- "mofo"
- "luve"
- "kike"
- "jimz"
- "jizz"
- "hymen"
- "hussy"
- "humping"
- "humped"
- "hump"
- "hooter"
- "hooters"
- "hoor"
- "exactcontains::herp"
- "hell"
- "gtfo"
- "get the fuck out"
- "p.u.s.s.y."
- "hard on"
- "heroin"
- "h0m0"
- "douchebag"
- "douchebags"
- "douchey"
- "exactcontains::drink my"
- "dong"
- "doggy-style"
- "doggie-style"
- "cockblock"
- "clitorus"
- "clits"
- "coochie"
- "breast"
- "boobs"
- "boobies"
- "toot"
- "boozer"
- "booty"
- "bootie"
- "bootee"
- "bitched"
- "beer"
- "exactcontains::bang"
- "azz"
- "asswipes"
- "c-o-c-k"
- "bastard"
- "slob on my knob"
- "minge"
- "clunge"
- "bitchcockniggerwhore"
- "queef"
- "cummies"
- "sucky wucky"
- "pecker"
- "terrorist attack"
- "terrorist"
- "terrorism"
- "felon"
- "cuntfucker"
- "fucka"
- "fuckface"
- "facefuck"
- "911"
- "9/11"
- "exactcontains::bush did 9/11"
- "abbo"
- "exactcontains::phuck"
- "exactcontains::p h u c k"
- "exactcontains::fak u"
- "exactcontains::fak"
- "exact:fuk"
- "exactcontains::fuk dis"
- "nigwhore"
- "hoe"
- "exact::niga"
- "exactcontains::is aids"
- "exactcontains::has aids"
- "exactcontains::stds"
- "exactcontains::std"
- "a tomar por culo"
- "a tomar por saco"
- "anda a cagar"
- "apestar"
- "bastardo"
- "cabron"
- "cabrón"
- "cagar"
- "calientapollas"
- "cara de culo"
- "carajo"
- "chingar"
- "chocho"
- "chúpame la pija"
- "chúpame la polla"
- "chúpamedias"
- "chúpamela"
- "exactcontains::cipote"
- "come mierda y muere"
- "de puta madre"
- "follar"
- "exactcontains::un putero"
- "gilipollas"
- "gonorrea"
- "guarra"
- "hijo de perra"
- "hijo de puta"
- "hijueputa"
- "joder"
- "jódete"
- "lame botas"
- "malparido"
- "marica"
- "maricon"
- "maricón"
- "mariconazo"
- "métetelo por el culo"
- "mierda"
- "no me jodas"
- "no me jodás"
- "no seas gilipollas"
- "pajero"
- "pelotudo"
- "polla"
- "exactcontains::puta"
- "exactcontains::qué cabrón"
- "exactcontains::que te den"
- "exactcontains::que te jodan"
- "exactcontains::qué te jodan"
- "exactcontains::vete al infierno"
- "exactcontains::vete al demonio"
# Below is the whitelist of words & phrases that will under all circumstances be ignored by the filter.
# Since similar words/phrases to the blacklisted words/phrases are detected, the below list functions to fix the plugin not allowing valid but close matching words/phrases on entries you have no modifiers on.
# Similarity checking is not active on these entries & character case does not matter.
# Set to "whitelisted-words-and-phrases: []" to have an empty list.
whitelisted-words-and-phrases:
- "bad"
- "ban"
- "darn"
- "you're"
- "u r"
- "your"
- "addicted"
- "is"
- "piggy"
- "ziggy"
- "literally"
- "word"
- "weeds"
- "you are"
- "nani"
- "am"
- "huh"
- "cool"
- "test"
- "love"
- "trans"
- "transgender"
- "that ball"
- "sus"
- "a hoe"
- "my hoe"
- "wood pecker"
- "homie"
- "home"
- "homeboy"
- "homegirl"
- "permission"
- "s perm"
- "been"
- "bean"
- "por"
- "madre"
- "padre"
- "padres"
- "madres"
# IMPORTANT: The below list will only work if "process-commands" is true in config.yml
# The below list is which commands (including all arguments) the module under all circumstances will not process.
# Make sure to only include base commands; don't add any command arguments. (spaces)
# Set to "whitelisted-commands: []" to have an empty list.
whitelisted-commands:
- "/report"
- "/feedback"
- "/lp"
- "/luckperms"
- "//set"