Without proper server-side validation a captcha is worthless. You can easily bypass this captcha by opening the developer tools in any browser. Paste the following code for the validate() method in the console tab and hit "Enter". Now, every input is considered valid, even no input is valid, and the success callback is fired.
jCaptcha.prototype.validate = function() {
this.callbackReceived = this.callbackReceived || (typeof this.options.callback == 'function');
this.callbackReceived && this.options.callback('success', this.$el, 1);
(this.options.clearOnSubmit === true) && (this.$el.value = '');
}
Without proper server-side validation a captcha is worthless. You can easily bypass this captcha by opening the developer tools in any browser. Paste the following code for the validate() method in the console tab and hit "Enter". Now, every input is considered valid, even no input is valid, and the success callback is fired.