How is the GUI search field, associated with a Datatable, secure from hacking?
How is the GUI search field, associated with a Datatable, secure from hacking?
jtcowboy
Posts: 1Questions: 1Answers: 0
The Datatable has a search field. This search field, obviously, allows user input. Does the code in the Datatable check for "sql injection" type text? How is the Datatable search field made secure through the code to prevent hackers from utilizing this field?
Thank you for any help on this.
Answers
DataTables, without any other configuration operates in client-side processing mode. So the search is performed on the client-side with zero chance of an SQL injection attack.
Are you using server-side processing perhaps? If so, what script are you using to do it?
Thanks,
Allan