DEV Community

Discussion on: Let's Build a CAPTCHA Generator with Node.js

Collapse
 
alexmenor profile image
Alex Menor

If the client stores somewhere in memory the text to verify against, wouldn't be possible for a bot to get it somehow?

Collapse
 
healeycodes profile image
Andrew Healey

This API is designed to be used by another backend service and inserted into a template. That backend service should then store the validation string against the user’s session object.

Let me know if that doesn’t make sense!

Collapse
 
alexmenor profile image
Alex Menor

It does now. Thanks!