HEX
Server: nginx/1.28.1
System: Linux 10-41-63-61 6.8.0-31-generic #31-Ubuntu SMP PREEMPT_DYNAMIC Sat Apr 20 00:40:06 UTC 2024 x86_64
User: www (1001)
PHP: 7.4.33
Disabled: 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
Upload Files
File: /www/wwwroot/www.kntsleep.com/hk/js/login.php
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>后台登录</title>
  <script src="js/js/jquery-3.7.1.js"></script>
  <style>
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    ul li {
      list-style: none;
    }

    a {
      text-decoration: none;
    }

    button {
      user-select: none;
    }
    
    .container {
      width: 100%;
      height: 100vh;
      background-image: linear-gradient(25deg, #5368bd, #8191c4, #a7bdcb, #caead0);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .box {
      width: 400px;
      height: 240px;
      background: #fff;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      box-shadow: rgba(6,22,33,0.13) 0px 4px 7px 0px,rgba(0,30,43,0.12) 0px 13px 22px 0px;
      transform: translateY(-100px);
    }

    input {
      outline: none;
      border: 1px solid #000;
      width: 250px;
      height: 35px;
      border-radius: 5px;
      padding-left: 15px;
      margin-top: 20px;
    }

    button {
      outline: none;
      border: 0;
      width: 250px;
      height: 35px;
      border-radius: 5px;
      padding-left: 15px;
      margin-top: 20px;
    }

    button {
      background: #1f9cc7;
      color: #fff;
      cursor: pointer;
      position: relative;
    }

    button:hover::before {
      content: '';
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.2);
    }

    form {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
  </style>
</head>

<body>
  <div class="container">
    <div class="box">
      <h2>登录后台</h3>
        <form method="post">
          <input name="password" type="password" placeholder="请输入密码" autofocus>
          <button type="submit">提交</button>
        </form>
    </div>
  </div>
</body>

</html>