吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1837|回复: 12
收起左侧

[求助] PHP为任意页面设置访问密码 求大神出个教程

[复制链接]
MVP丨强哥 发表于 2020-9-12 09:37
1.png
按照使用说明做了,代码保存为MkEncrypt.php上传到了网站根目录,并在首页IDA Console, Courier New, serif">index.php文件代码顶部,添加require_once('MkEncrypt.php');,没有任何效果,请大神出一个详细的教程,万分感谢!


完整代码如下:
[Asm] 纯文本查看 复制代码
<?php
 
/********************************************
 * 使用方法:
 * 
 * 1、将本段代码保存为 MkEncrypt.php
 * 
 * 2、在要加密的页面前面引入这个 php 文件   
 *  require_once('MkEncrypt.php');
 * 
 * 3、设置页面访问密码 
 *  MkEncrypt('页面密码');
 * 
********************************************/
 
// 密码 Cookie 加密盐
if(!defined('MK_ENCRYPT_SALT'))
    define('MK_ENCRYPT_SALT', 'Kgs$JC!V');
 
/**
 * 设置访问密码
 * 
 * [url=home.php?mod=space&uid=952169]@Param[/url] $password  访问密码
 * @param $pageid    页面唯一 ID 值,用于区分同一网站的不同加密页面
 */
function MkEncrypt($password, $pageid = 'default') {
    $pageid     = md5($pageid);
    $md5pw      = md5(md5($password).MK_ENCRYPT_SALT);
    $postpwd    = isset($_POST['pagepwd']) ? addslashes(trim($_POST['pagepwd'])) : '';
    $cookiepwd  = isset($_COOKIE['mk_encrypt_'.$pageid]) ? addslashes(trim($_COOKIE['mk_encrypt_'.$pageid])) : '';
    
    if($cookiepwd == $md5pw) return;    // Cookie密码验证正确
    
    if($postpwd == $password) {         // 提交的密码正确
        setcookie('mk_encrypt_' . $pageid, $md5pw, time() + 3600000, '/');
        return;
    }
?>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 
    <meta charset="UTF-8"> 
    <meta http-equiv="X-UA-Compatible" content="IE=edge"> 
    <meta name="renderer" content="webkit"> 
    <meta name="author" content="mengkun">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
    <title>该页面已被加密</title>
    <style type="text/css">
    *{font-family:"Microsoft Yahei",微软雅黑,"Helvetica Neue",Helvetica,"Hiragino Sans GB","WenQuanYi Micro Hei",sans-serif;box-sizing:border-box;margin:0px;padding:0px;font-size:14px;-webkit-transition:.2s;-moz-transition:.2s;-ms-transition:.2s;-o-transition:.2s;transition:.2s}
    html,body{width:100%;height:100%}
    body{background-color:#F4F6F9;color:#768093}
    input,button{font-size:1em;border-radius:3px;-webkit-appearance:none}
    input{width:100%;padding:5px;box-sizing:border-box;border:1px solid #e5e9ef;background-color:#f4f5f7;resize:vertical}
    input:focus{background-color:#fff;outline:none}
    button{border:0;background:#6abd09;color:#fff;cursor:pointer;opacity:1;user-select:none}
    button:hover,button:focus{opacity:.9}
    button:active{opacity:1}
    .main{width:100%;max-width:500px;height:300px;padding:30px;background-color:#fff;border-radius:2px;box-shadow:0 10px 60px 0 rgba(29,29,31,0.09);transition:all .12s ease-out;position:absolute;left:0;top:0;bottom:0;right:0;margin:auto;text-align:center}
    .alert{width:80px}
    .mk-side-form{margin-bottom:28px}
    .mk-side-form input{float:left;padding:2px 10px;width:77%;height:37px;border:1px solid #ebebeb;border-right-color:transparent;border-radius:2px 0 0 2px;line-height:37px}
    .mk-side-form button{position:relative;overflow:visible;width:23%;height:37px;border-radius:0 2px 2px 0;text-transform:uppercase}
    .pw-tip{font-weight:normal;font-size:26px;text-align:center;margin:25px auto}
    #pw-error {color: red;margin-top: 15px;margin-bottom: -20px;}
    .return-home{text-decoration:none;color:#b1b1b1;font-size:16px}
    .return-home:hover{color:#1E9FFF;letter-spacing:5px}
    </style>
</head>
<body>
    <div class="main">
        <svg class="alert" viewBox="0 0 1084 1024" xmlns="http://www.w3.org/2000/svg" width="80" height="80">
            <defs><style/></defs>
            <path d="M1060.744 895.036L590.547 80.656a55.959 55.959 0 0 0-96.919 0L22.588 896.662a55.959 55.959 0 0 0 48.43 83.907h942.14a55.959 55.959 0 0 0 47.525-85.534zm-470.619-85.172a48.008 48.008 0 1 1-96.015 0v-1.567a48.008 48.008 0 1 1 96.015 0v1.567zm0-175.345a48.008 48.008 0 1 1-96.015 0V379.362a48.008 48.008 0 1 1 96.015 0v255.157z" fill="#FF9800"/>
        </svg>
        
        <form action="" method="post" class="mk-side-form">
            <h2 class="pw-tip">该页面已被加密</h2>
            <input type="password" name="pagepwd" placeholder="请输入访问密码查看" required><button type="submit">提交</button>
            <?php if($postpwd): ?>
            <p id="pw-error">Oops!密码不对哦~</p>
            <script>setTimeout(function() {document.getElementById("pw-error").style.display = "none"}, 2000);</script>
            <?php endif; ?>
        </form>
        <a href="/" class="return-home" title="点击回到网站首页">- 返回首页 - </a>
    </div>
</body>
</html>
<?php
    exit();
}

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

sxlixiaoyang 发表于 2020-9-12 09:58
引入到每个需要加密访问的PHP文件中
Ps出来的小赵 发表于 2020-9-12 09:58
我用的这个{:301_1005:}
[Asm] 纯文本查看 复制代码
<?php
$makey = "123";/*设置密码*/
session_start();
if(@$_POST['password'] == $makey){
$_SESSION['login'] = md5($makey);
}
if($_SERVER['QUERY_STRING'] == "logout"){
$_SESSION['login'] = "";
header("location: " . $_SERVER['PHP_SELF']);
exit();
}
$html_login = <<<EOF
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style>
    body{
        background: #ddd;
    }
div{text-align:center; margin:0 auto;}
#loginform{width:400px;height:150px;background-color:#ddd;box-shadow: 2px 2px 10px 1px #999; border-radius: 15px;}
</style>
</head>
<body>
<div id="loginform">
<div style="text-align:center; margin:260px auto 0px;line-height: 150px;">
<form action="" method="post">密码&nbsp&nbsp&nbsp<input type="password" name="password" style=" width:120px; margin-top: 35px;margin-right: 35px; ">
<input type="submit" value="登录" style="margin-left: 5px;">
</form>
</div>
</div>
</body>
</html>
EOF;
if(@$_SESSION['login'] != md5($makey)){
exit($html_login);
}
?> 
<?php
     include ("123.html")
     ?>

免费评分

参与人数 1热心值 +1 收起 理由
MVP丨强哥 + 1 &amp;lt;font style=&amp;quot;vertical-align: inherit;&amp;quot;&amp;gt;&amp;lt;font style=

查看全部评分

魔神守护 发表于 2020-9-12 10:04
你要在需要输入密码的页面这样写
[PHP] 纯文本查看 复制代码
require_once('MkEncrypt.php');
MkEncrypt('12345');//括号里面的是你自己设置的密码

免费评分

参与人数 1吾爱币 +1 热心值 +1 收起 理由
萧瑟的暧昧 + 1 + 1 我很赞同!

查看全部评分

 楼主| MVP丨强哥 发表于 2020-9-12 10:23

你这代码比较好,输入密码正确就自动进入网页了。
 楼主| MVP丨强哥 发表于 2020-9-12 10:25

1.png

密码正确后,顶部会出现乱码怎么回事呢?
 楼主| MVP丨强哥 发表于 2020-9-12 10:30

已经解决了,我把底部
<?php
     include ("123.html")
     ?>
这串代码删除就正常了  
kof21411 发表于 2020-9-12 10:32
直接在nginx或apache服务器那里做个验证不是更简单点
Ps出来的小赵 发表于 2020-9-12 10:46
MVP丨强哥 发表于 2020-9-12 10:30
已经解决了,我把底部

这串代码删除就正常了

这串是密码正确之后要调用要显示的网页的……………………
 楼主| MVP丨强哥 发表于 2020-9-12 10:55
Ps出来的小赵 发表于 2020-9-12 10:46
这串是密码正确之后要调用要显示的网页的……………………

您的这串代码可以调用  html 页面?
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-26 11:57

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表