When retrieving data form database using server side process, do I need 'token' for security?
When retrieving data form database using server side process, do I need 'token' for security?
silver2018
Posts: 3Questions: 3Answers: 0
Hi,
Do I need CSRF token, when I use server side process to get records from database?
I know it is good to use 'token', when submitting a form.
But, retrieving records to display, I don't use any forms.
Thanks.
This discussion has been closed.
Answers
Does this security doc answer your questions?
Kevin
DataTables itself doesn't impose the requirement of sending a CSRF token, but your server-side might. The document Kevin linked to shows how you might add such a token if it is needed.
Allan