vote up 17 vote down star
14

Many of us need to deal with user input, search queries, and situations where the input text can potentially contain profanity or undesirable language. Oftentimes this needs to be filtered out.

Where can one find a good list of swear words in various languages and dialects?

Are there APIs available to sources that contain good lists? Or maybe an API that simply says "yes this is clean" or "no this is dirty" with some parameters?

What are some good methods for catching folks trying to trick the system, like a$$, azz, or a55?

Bonus points if you offer solutions for PHP. :)

Edit: Response to answers that say simply avoid the programmatic issue:

I think there is a place for this kind of filter when, for instance, a user can use public image search to find pictures that get added to a sensitive community pool. If they can search for "penis", then they will likely get many pictures of, yep. If we don't want pictures of that, then preventing the word as a search term is a good gatekeeper, though admittedly not a foolproof method. Getting the list of words in the first place is the real question.

So I'm really referring to a way to figure out of a single token is dirty or not and then simply disallow it. I'd not bother preventing a sentiment like the totally hilarious "long necked giraffe" reference. Nothing you can do there. :)

flag

50% accept rate
I see Jonathan Holland is going for the Taxonomist badge. :) – Bill the Lizard Nov 7 '08 at 21:07
It's a shame that all the top answers are existential and defeatist diversions from the programming challenge. With "cyborg" computational services like Mechanical Turk gaining steam, and almost all software becoming social, it is more important than ever to have a heuristic to red-flag content and bring it to the attention of a moderator! – jhs Sep 29 at 11:02
Mandingo........ – eyelidlessness Oct 17 at 9:05

15 Answers

vote up 42 vote down check

Obscenity Filters: Bad Idea, or Incredibly Intercoursing Bad Idea?

Also, one can't forget The Untold History of Toontown's SpeedChat, where even using a "safe-word whitelist" resulted in a 14 year old quickly circumventing it with: "I want to stick my long-necked Giraffe up your fluffy white bunny."

Bottom line: Ultimately, for any system that you implement, there is absolutely no substitute for human review (whether peer or otherwise). Feel free to implement a rudimentary tool to get rid of the drive-by's, but for the determined troll, you absolutely must have a non-algorithm-based approach.

A system that removes anonymity and introduces accountability (something that Stack Overflow does well) is helpful also, particularly in order to help combat John Gabriel's G.I.F.T.

You also asked where you can get profanity lists to get you started -- one open-source project to check out is Dansguardian -- check out the source code for their default profanity lists. There is also an additional third party Phrase List that you can download for the proxy that may be a helpful gleaning point for you.

Edit in response the question edit: Thanks for the clarification on what you're trying to do. In that case, if you're just trying to do a simple word filter, there are two ways you can do it. One is to create a single long regexp with all of the banned phrases that you want to censor, and merely do a regex find/replace with it. A regex like:

$filterRegex = "(boogers|snot|poop|shucks|argh)"

and run it on your input string using preg_match() to wholesale test for a hit,

or preg_replace() to blank them out.

You can also load those functions up with arrays rather than a single long regex, and for long word lists, it may be more manageable. See the preg_replace() for some good examples as to how arrays can be used flexibly.

For additional PHP programming examples, see this page for a somewhat advanced generic class for word filtering that *'s out the center letters from censored words, and this previous Stack Overflow question that also has a PHP example (the main valuable part in there is the SQL-based filtered word approach -- the leet-speak compensator can be dispensed with if you find it unnecessary).

You also added: "Getting the list of words in the first place is the real question." -- in addition to some of the previous Dansgaurdian links, you may find this handy .zip of 458 words to be helpful.

link|flag
Lol, I was about to point to there! ;-) – PhiLho Nov 7 '08 at 20:21
3  
+1 just for using 'fluffy bunny'! – Mitch Wheat Nov 8 '08 at 1:36
@JPLemme: Yes it should -- I should have added [sic] afterwards, since that's how Atwood spelled it. :) – HanClinto Nov 11 '08 at 18:37
"Club Penguin" adds hundreds of entries to their profanity filter *every day*: raphkoster.com/2008/05/… – Frank Farmer Jun 20 at 0:02
vote up 1 vote down

I have had a lot of success using WebPurify (www.webpurify.com) Trying to write your own profanity filter can drive you crazy, these guys seem to have it figured out.

link|flag
vote up 0 vote down

I agree with HanClinto's post higher up in this discussion. I generally use regular expressions to string-match input text. And this is a vain effort, as, like you originally mentioned you have to explicitly account for every trick form of writing popular on the net in your "blocked" list.

On a side note, while others are debating the ethics of censorship, I must agree that some form is necessary on the web. Some people simply enjoy posting vulgarity because it can be instantly offensive to a large body of people, and requires absolutely no thought on the author's part.

Thank you for the ideas.

HanClinto rules!

link|flag
vote up 2 vote down

Regarding your "trick the system" subquestion, you can handle that by normalizing both the "bad word" list and the user-entered text before doing your search. e.g., Use a series of regexes (or tr if PHP has it) to convert [z$5] to "s", [4@] to "a", etc., then compare the normalized "bad word" list against the normalized text. Note that the normalization could potentially lead to additional false positives, although I can't think of any actual cases at the moment.

The larger challenge is to come up with something that will let people quote "The pen is mightier than the sword" while blocking "p e n i s".

link|flag
vote up 2 vote down

During a job interview of mine, the company CTO who was interviewing me tried out a word/web game I wrote in Java. Out of a word list of the entire Oxford English dictionary, what was the first word that came up to be guessed?

Of course, the most foul word in the English language.

Somehow, I still got the job offer, but I then tracked down a profanity word list (not unlike this one) and wrote a quick script to generate a new dictionary without all of the bad words (without even having to look at the list).

For your particular case, I think comparing the search to real words sounds like the way to go with a word list like that. The alternative styles/punctuation require a bit more work, but I doubt users will use that often enough to be an issue.

link|flag
vote up 1 vote down

a profanity filtering system will never be perfect, even if the programmer is cocksure and keeps abreast of all nude developments

that said, any list of 'naughty words' is likely to perform as well as any other list, since the underlying problem is language understanding which is pretty much intractable with current technology

so, the only practical solution is twofold:

  1. be prepared to update your dictionary frequently
  2. hire a human editor to correct false positives (e.g. "clbuttic" instead of "classic") and false negatives (oops! missed one!)
link|flag
vote up 0 vote down

OT : I got lots of childish pleasure from searching for a bad word list a year or two ago. That is the only positive thing I gained from my profanity filtering experiences.

Please bear in mind when you read this post that I live about 20 miles from Scunthorpe.

link|flag
vote up 1 vote down

If you can do something like Digg/Stackoverflow where the users can downvote/mark obscene content... do so.

Then all you need to do is review the "naughty" users, and block them if they break the rules.

link|flag
vote up 2 vote down

The only way to prevent offensive user input is to prevent all user input.

If you insist on allowing user input and need moderation, then incorporate human moderators.

link|flag
vote up 0 vote down

Don't. It just leads to problems. One clbuttic personal experience I have with profanity filters is the time where I was kick/banned from an IRC channel for mentioning that I was "heading over the bridge to Hancock for a couple hours" or something to that effect.

link|flag
vote up 5 vote down

Have a look at CDYNE's Profanity Filter Web Service

Testing URL

link|flag
vote up 5 vote down

I don't know of any good libraries for this, but whatever you do, make sure that you err in the direction of letting stuff through. I've dealt with systems that wouldn't allow me to use "mpassell" as a username, because it contains "ass" as a substring. That's a great way to alienate users!

link|flag
1  
or forbidding "cockpit" in a flying spaceships game – Shinhan Nov 7 '08 at 21:28
vote up 0 vote down

Frankly, I'd let them get the "trick the system" words out and ban them instead, which is just me. But it also makes the programming simpler.

What I'd do is implement a regex filter like so: /[\s]dooby (doo?)[\s]/i or it the word is prefixed on others, /[\s]doob(er|ed|est)[\s]/. These would prevent filtering words like assuaged, which is perfectly valid, but would also require knowledge of the other variants and updating the actual filter if you learn a new one. Obviously these are all examples, but you'd have to decide how to do it yourself.

I'm not about to type out all the words I know, not when I don't actually want to know them.

link|flag
vote up 0 vote down

Hell if I know. :)

On a more serious note, I don't think you can do it reliably. A friend of mine is named Titsworth and he said profanity filters at his high school always displayed his name as T***worth.

I think there will always be too many edge cases to do it 100%.

link|flag
vote up 10 vote down

Don't.

Because:

  • Clbuttic
  • Profanity is not OMG EVIL
  • Profanity cannot be effectively defined
  • Most people quite probably don't appreciate being "protected" from profanity

Edit: While I agree with the commenter who said "censorship is wrong", that is not the nature of this answer.

link|flag
This is the only acceptable answer. – jonnii Nov 7 '08 at 20:23
1  
10 upvotes for this non-answer? As if anybody who wants to filter profanity must be a moralizing half wit? Good grief. This is a valid question and snarky drive-by responses shouldn't be rewarded. -1. – Kluge Nov 7 '08 at 21:45
what constitutes a 'swear' is debatable. Censorship in any form is bad. – Mitch Wheat Nov 8 '08 at 1:38
@Kludge: You're the only one who said "moralizing half wit", in fact I said nothing about the moral nature of implementing a profanity filter at all. Mitch brings up part of the reason I said "don't", and it's not a snarky drive-by. Sometimes "don't" is the correct answer to "how do I...?" [cont'd] – eyelidlessness Nov 8 '08 at 1:57
I happen to think this is one of those times. That you disagree is fine, but I don't think you should read too much into it. And if you want to ask why I think it shouldn't be done, I'd be happy to clarify the answer. – eyelidlessness Nov 8 '08 at 1:58
show 3 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.