ignore login request for testing
authorAlan <alan@roojs.com>
Thu, 2 Mar 2023 03:43:35 +0000 (11:43 +0800)
committerAlan <alan@roojs.com>
Thu, 2 Mar 2023 03:43:35 +0000 (11:43 +0800)
Pman/Login.php

index 6ca67e5..1378c87 100644 (file)
@@ -81,7 +81,9 @@ class Pman_Login extends Pman
         if (!empty($_REQUEST['loginPublic'])) {
             $this->switchPublicUser($_REQUEST['loginPublic']);
         }
-        
+        if (!empty($_SERVER['HTTP_USER_AGENT']) && preg_match('/^check_http.', $_SERVER['HTTP_USER_AGENT'])) {
+                       die("server is alive");
+               }
         $this->jerr("INVALID REQUEST");
         exit;
     }