![]() |
CodeIgniter version 3.0 is secure ? - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Development (https://forum.codeigniter.com/forumdisplay.php?fid=6) +--- Forum: CodeIgniter 3.x (https://forum.codeigniter.com/forumdisplay.php?fid=17) +--- Thread: CodeIgniter version 3.0 is secure ? (/showthread.php?tid=86525) |
CodeIgniter version 3.0 is secure ? - sam654 - 01-30-2023 I am reviewing the code of an application created with CodeIgniter version 3.0 (I think it's version 3.0 because I found the line "@version 1.0, 2015-10-10" in the code). In the code, I noticed that the input validation uses the xss_clean and valid_email rules. Are these two rules secure in this old version of CodeIgniter or do they need reinforcement? RE: CodeIgniter version 3.0 is secure ? - kenjis - 03-11-2023 CodeIgniter 3.0 is not secure. See http://codeigniter.com/userguide3/changelog.html?highlight=security RE: CodeIgniter version 3.0 is secure ? - InsiteFX - 03-12-2023 You can get the CodeIgniter version using. PHP Code: echo CI_VERSION; |