Uname:
Linux yisu-647059427c03a 3.10.0-862.14.4.el7.x86_64 #1 SMP Wed Sep 26 15:12:11 UTC 2018 x86_64
Software:
nginx/1.22.1
PHP version:
7.3.31 [ PHP INFO ] PHP os:
Linux
Server Ip:
103.146.158.90
Your Ip:
216.73.216.141
User:
www (1000) | Group:
www (1000)
Safe Mode:
OFF
Disable Function:
passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
<?php
/**
* Z-Blog with PHP.
*
* @author Z-BlogPHP Team
*/
require 'function/c_system_base.php';
$zbp->Load();
if ($zbp->CheckRights('admin')) {
Redirect302('cmd.php?act=admin');
}
?><!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="ie=edge,chrome=1" />
<meta name="robots" content="none" />
<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0"/>
<meta name="generator" content="<?php echo $option['ZC_BLOG_PRODUCT_FULL']; ?>" />
<meta name="renderer" content="webkit" />
<link rel="stylesheet" href="css/admin.css?<?php echo $blogversion; ?>" type="text/css" media="screen" />
<script src="script/jquery-2.2.4.min.js?<?php echo $blogversion; ?>"></script>
<script src="script/zblogphp.js?<?php echo $blogversion; ?>"></script>
<script src="script/md5.js?<?php echo $blogversion; ?>"></script>
<script src="script/c_admin_js_add.php?hash=<?php echo $zbp->html_js_hash; ?>&<?php echo $blogversion; ?>"></script>
<title><?php echo $blogname . '-' . $lang['msg']['login']; ?></title>
<?php
foreach ($GLOBALS['hooks']['Filter_Plugin_Login_Header'] as $fpname => &$fpsignal) {
$fpname();
}
?>
</head>
<body class="login">
<div class="bg">
<div id="wrapper">
<div class="logo"><img src="image/admin/none.gif" title="<?php echo htmlspecialchars($blogname); ?>" alt="<?php echo htmlspecialchars($blogname); ?>"/></div>
<div class="login">
<form method="post" action="#">
<dl>
<dt></dt>
<dd class="username"><label for="edtUserName"><?php echo $lang['msg']['username']; ?></label><input type="text" id="edtUserName" name="edtUserName" size="20" value="<?php echo GetVars('username', 'COOKIE'); ?>" tabindex="1" /></dd>
<dd class="password"><label for="edtPassWord"><?php echo $lang['msg']['password']; ?></label><input type="password" id="edtPassWord" name="edtPassWord" size="20" tabindex="2" /></dd>
</dl>
<dl>
<dt></dt>
<dd class="checkbox"><input type="checkbox" name="chkRemember" id="chkRemember" tabindex="98" /><label for="chkRemember"><?php echo $lang['msg']['stay_signed_in']; ?></label></dd>
<dd class="submit"><input id="btnPost" name="btnPost" type="submit" value="<?php echo $lang['msg']['login']; ?>" class="button" tabindex="99"/></dd>
</dl>
<input type="hidden" name="username" id="username" value="" />
<input type="hidden" name="password" id="password" value="" />
<input type="hidden" name="savedate" id="savedate" value="1" />
</form>
</div>
</div>
</div>
<script>
$("#btnPost").click(function(){
var strUserName=$("#edtUserName").val();
var strPassWord=$("#edtPassWord").val();
var strSaveDate=$("#savedate").val()
if (strUserName=== "" || strPassWord === ""){
alert("<?php echo $lang['error']['66']; ?>");
return false;
}
//$("#edtUserName").remove();
//$("#edtPassWord").remove();
//$("#chkRemember").remove();
$("form").attr("action","cmd.php?act=verify");
$("#username").val(strUserName);
$("#password").val(MD5(strPassWord));
$("#savedate").val(strSaveDate);
})
$("#chkRemember").click(function(){
$("#savedate").attr("value", $("#chkRemember").prop("checked") == true ? 30 : 1);
})
</script>
</body>
</html>
<?php
RunTime();