Is jQuery Validation plugin secure from attack? Do I still need to do server side validation? If it’s not secure, what kind of attack will it be?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You always need to do server-side validation.
Think of client-side validation as pretty, helpful, fast validation for the users’ benefit.
Server-side validation is the critical one to have for your database’s benefit!
Users may not have JavaScript enabled, in which case the validation can’t happen or they could bypass your client-side validation using FireBug etc if they were being malicious about it.
I refer you to little Bobby Tables.