How to prevent BOT Attacks in Form | Community
Skip to main content
Level 3
June 11, 2017
Solved

How to prevent BOT Attacks in Form

  • June 11, 2017
  • 4 replies
  • 6277 views

Hi Team,

I have a requirement to add captcha in my form to prevent bot attacks.

My Initial thought is to include Google Recaptcha but later I came to know like google API will not work in China.Since our majority of the client business is from china.I could not leverage google captcha.

Is there any alternative options available.Please let me know your thoughts.

Thanks,

Sambasivaraja.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by diptinarang

Hi Sambasivaraja

We are also working on defining a solution for Bot attacks on forms, here is what we are doing:

1. Honeypot technique: http://jennamolby.com/how-to-prevent-form-spam-by-using-the-honeypot-technique/

2. CSRF: The CSRF Protection Framework  (but this doesn't work for anonymous users and hence it is of no use to us)

There are other ways to implement captcha too but Google's Recaptcha is the best bet.

Recommendations for java captcha libraries - Stack Overflow

Another good read: Captchas vs. Spambots: Why the Slider Captcha Wins - UX Movement

Thanks

Dipti

4 replies

MC_Stuff
Level 10
June 11, 2017

Hi Sambasivaraja,

You might need to host server near to china instead of china and use mod proxy to redirect to google Or use different service provided.

firewall - Recaptcha - Availability in China - Stack Overflow

Thanks,

diptinarang
diptinarangAccepted solution
Level 3
June 12, 2017

Hi Sambasivaraja

We are also working on defining a solution for Bot attacks on forms, here is what we are doing:

1. Honeypot technique: http://jennamolby.com/how-to-prevent-form-spam-by-using-the-honeypot-technique/

2. CSRF: The CSRF Protection Framework  (but this doesn't work for anonymous users and hence it is of no use to us)

There are other ways to implement captcha too but Google's Recaptcha is the best bet.

Recommendations for java captcha libraries - Stack Overflow

Another good read: Captchas vs. Spambots: Why the Slider Captcha Wins - UX Movement

Thanks

Dipti

Level 3
June 12, 2017

Thanks Dipti .It really helps

Level 3
June 12, 2017

Thanks for your response.