1

How do you ensure that whoever is submitting a form is doing it and its not some DOS attack?

I was hoping there was an easy way to generate some kind of image or squiggle that the user has to enter prior to submitting a web form

Technology Stack MVC with C#

Jonathan
  • 2,318
  • 7
  • 25
  • 44
  • 1
    These are called CAPTCHAs; http://stackoverflow.com/questions/450835/how-do-you-stop-scripters-from-slamming-your-website-hundreds-of-times-a-second – Alex K. May 13 '11 at 14:52

3 Answers3

3

http://en.wikipedia.org/wiki/Capcha

Try using Capcha possibly?

xdevient
  • 56
  • 3
2

I'm assuming you mean that you want to check that it's not a bot (rather than DOS which is something else). For that, take a look at reCAPTCHA.

JasCav
  • 34,458
  • 20
  • 113
  • 170
1

here is a short tutorial on generating a capcha. a search on google reveals many more.

Muad'Dib
  • 28,542
  • 5
  • 55
  • 68