First of all I should remind you that I have read this post and few other posts about my question but most of all are almost old and they are for about 3 years ago.
Now I'm using CodeIgniter 3 and I want to know what's the best sanitize filter for my data which I'm retrieving them from users before insert into database.
This is for my website to register and and I don't know what kind of user is registering and I can't trust them. And it is possible that it will be dangerous I want to sanitize all input before inserting it into database I don't know input
class enough for sanitizing it ?
Please tell me the codeigniter sanitizing functions !
I have read security classs in codeigniter document, but I want to be sure.
According to the Docs, the input
class, does the following:
So, this solves the issue of SQL injection and XSS. For most usages, this is enough.
To enable XSS
protection, use:
$val = $this->input->post('some_data', TRUE); // last param enables XSS protection.
Also, you may want to look into CSRF
protection. But that's a bit tricky to enable if you're doing ajax calls.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With