how to protect my code of Cakephp 3.0 against sql injection. Cook book just give me the idea that we should use column name or user data directly but dont know how to do it??
Cakephp 3.0 Sql Injection Protection
1.7k Views Asked by Amit Dangwal At
2
There are 2 best solutions below
0

CakePHP already comes with SQL injection prevention if you are using the default ORM provided by them:
CakePHP comes with built-in tools for input validation, CSRF protection, Form tampering protection, SQL injection prevention, and XSS prevention, helping you keep your application safe & secure..
Source: CakePHP.org
Not entirely true @doonot: You can expose yourself, if you're using some of the more "advanced" parts of the ORM:
Source: CakePHP Cookbook section on "SQL Injection Prevention"