This document provides instructions on how to modify the zero-site-protector.php file in order to enable SQL injection protection. By default, this feature is enabled to help prevent SQL injection attacks in GET methods. To disable this feature, you can change the value of the SQLINJECTION_PROTECTIONS constant to SQLINJECTION_PROTECTION_DISABLED.

// It is better to keep this enabled in order to at least help prevent SQL Injection in GET method
define("SQLINJECTION_PROTECTIONS", SQLINJECTION_PROTECTION_ENABLED);

Please note that while enabling this feature can help prevent SQL injection attacks, it is still important to properly sanitize any user input and use prepared statements to further secure your website.