美文网首页
thinkphp 6 IP 黑名单功能

thinkphp 6 IP 黑名单功能

作者: 懒得代码 | 来源:发表于2020-12-09 14:47 被阅读0次

    最近用tp6 开发的网站,一直被cc攻击,装了cnzz 看了一下,基本都是北京的几个IP。

    由于是用的虚拟主机,只能在代码端加上IP黑名单的功能了。

    第一步:
    创建一个中间件CheckIp.php
    文件位置app\middleware\CheckIp.php

    具体代码:

    <?php
    namespace app\middleware;
    
    class CheckIp
    {
        // 状态 关闭:false,开启:true
        private $status = true;
        // ip库
        private $StoreIp = ['127.0.0.2','127.0.0.1'];
    
        /**
         * 处理请求
         *
         * @param \think\Request $request
         * @param \Closure       $next
         * @return Response
         */
        public function handle($request, \Closure $next)
        {
            // 禁止访问
            if($this->status==true){
                if(in_array($request->ip(),$this->StoreIp)){
                    exit('禁止访问');
                }
            }
            return $next($request);
        }
    }
    

    第二步:
    注入中间件:app/middleware.php
    代码:

    <?php
    return [
         // 加载中间件
        app\middleware\CheckIp::class
    ];
    

    这个是简单的加入黑名单的功能,如果ip比较多的情况下,最好是能把ip的信息写入数据库或者配置文件,这样方便管理。

    相关文章

      网友评论

          本文标题:thinkphp 6 IP 黑名单功能

          本文链接:https://www.haomeiwen.com/subject/ieehgktx.html