Page 1 of 1

What protects opencart against sql injection? What defense methods are used against SQL injection?

Posted: Sun Aug 11, 2024 10:51 pm
by emir_
What are the methods, technologies, etc. that protect Opencart against SQL injection?

Re: What protects opencart against sql injection? What defense methods are used against SQL injection?

Posted: Mon Aug 12, 2024 7:04 am
by ADD Creative
All data passed into a query is done using the database drivers escape function ($this->db->escape()) or is cast to a simple type such as an int and enclosed in single quotes.