+--------------------------------------------------------------------------------+ | MyBB 1.6.4 - New Install Security Issue | | (c) 2011 MyBB Group. | | | | This patch file fixes security issues with 1.6.4. | | | | Please follow the instructions documented to manually patch your board. | +--------------------------------------------------------------------------------+ =============== 1. index.php =============== Find: -- //Checks to make sure the user can login; they haven't had too many tries at logging in. //Function call is not fatal if(login_attempt_check(false) !== false) { eval("\$loginform = \"".$templates->get("index_loginform")."\";".@$col[23]); } -- Replace with: -- //Checks to make sure the user can login; they haven't had too many tries at logging in. //Function call is not fatal if(login_attempt_check(false) !== false) { eval("\$loginform = \"".$templates->get("index_loginform")."\";"); } -- ALL DONE