OwlCyberSecurity - MANAGER
Edit File: logout.php
<?php include "store-procedure.php"; if(!empty(SECURITY_CHECK_INPUT(filter_input(INPUT_GET,'status',FILTER_SANITIZE_STRING))) AND SECURITY_CHECK_INPUT(filter_input(INPUT_GET,'status',FILTER_SANITIZE_STRING)) != NULL) { $status = SECURITY_CHECK_INPUT(filter_input(INPUT_GET,'status',FILTER_SANITIZE_STRING)); if ($status == 'profileusernamepasswordchanged' OR $status == 'profilepasswordchanged' OR $status == 'profileusernamechanged') { header("Location: relogin.php"); // Redirecting To Relogin exit(); } else { // Silence Is Golden } } if (SIGNOUT()) { header("Location: login.php"); // Redirecting To Login }