How do you make sure that user cannot change websql database data via debugger of firefox or chrome? Currently I can run queries to insert, update and delete data.
How does this impact the security of the app?
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.
generate checksum for each row. wanna more security? generate checksum on the server, and validate on the server too. but it will be slow to do this. or you could generate checksum on the clientside, save it on the server, and validate later.