• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

JCaptcha - How to avoid profanity/profane/obscene words

 
Greenhorn
Posts: 15
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
We have implemented JCaptcha in our website. But we came to know that it randomly generates some obscene words.
Is there any way we can block the profane content?

Any help will be highly appreciated.

Thanks,
Subha
 
Author
Posts: 12617
IntelliJ IDE Ruby
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
http://forge.octo.com/jcaptcha/confluence/display/general/Change+the+Captcha+generation+configuration

Personally I wouldn't worry about it.
 
Subha Murthy
Greenhorn
Posts: 15
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks for the response David.

We have a pressing business need that we need to avoid this. I looked at the link that you posted.
Its about Changing the Captcha generation configuration. How can I be guaranteed that this new method doesn't give me any profane words?

Thanks,
Subha
 
David Newton
Author
Posts: 12617
IntelliJ IDE Ruby
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
...

By implementing a word generator that doesn't ever return "obscene" words, although quite frankly if you're using both random chars and numbers it seems *extremely* unlikely you'd ever get an "obscene" word.
 
Subha Murthy
Greenhorn
Posts: 15
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks David. Unfortunately we had an instance that we did get a call reporting profanity.
 
David Newton
Author
Posts: 12617
IntelliJ IDE Ruby
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Then you'll just have to post-process the text creation and make sure there's nothing "obscene", although people can find something obscene in just about anything, so good luck.
 
Subha Murthy
Greenhorn
Posts: 15
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks David for your timely input.

-Subha
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic