• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

防篡改php文件校验程序

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

 

<?php
/**
 * 校验线上源文件是否和本地的一致
 * User: Administrator
 * Date: 2015/11/26
 * Time: 9:30
 */
include_once 'functions.php';

class SrcVerifier
{
    var $md5_files = array();
    var $total = 0;

    public function scan($dir, $prefix_len, $excepts=array())
    {
        if ( $handle = opendir($dir) ) {
            while ( ($file = readdir($handle)) !== false ) {
                if ( $file != ".." && $file != "." && $file != ".svn" && $file!=".buildpath" && $file!=".htaccess" && $file!=".idea" && $file!=".project" && $file!=".settings") {
                    $real_location = $dir . "/" . $file;
                    $relative_location = substr($real_location, $prefix_len);
                    if ( is_dir($real_location) ) {
                        echo "[dir] - $relative_location [end]\n";
                        //$files[$file] = scandir($file_location);
                        if(!in_array($relative_location, $excepts)) {
                            $this->scan($real_location, $prefix_len, $excepts);
                        }
                    }else {
                        $this->md5_files[$relative_location] = md5_file($real_location);
                        echo "[file] - $relative_location , ".$this->md5_files[$relative_location]." \n";
                        $this->total++;
                    }
                }
            }
            closedir($handle);
        }
    }

    public function list_file($dir, $except_dirs = array())
    {
        $list = scandir($dir); // 得到该文件下的所有文件和文件夹
        foreach ($list as $file) {//遍历
            $file_location = $dir . "/" . $file;//生成路径
            if (is_dir($file_location) && $file != "." && $file != ".." && $file != ".svn") { //判断是不是文件夹
                echo "[dir] - $file_location \n";
                $this->list_file($file_location); //继续遍历
            } elseif (is_file($file_location)) {
                echo "[file] - $file_location \n";
                $this->total++;
            }

        }
    }

    public function total_files(){
        return $this->total;
    }
}

$root_path = 'd:/projects/php/test';
$start_time = microtime_float();

//step_1,扫描校验本地源文件,生成文件路径与其md5值之间的映射文件
$verifier = new SrcVerifier();
$verifier->scan($root_path, strlen($root_path), array('/data/files','/temp'));

file_put_contents('md5_files.php', '<?php return '.var_export($verifier->md5_files,true));//校验结果写入本地文件

//统计数据
$scan_local_time = microtime_float() - $start_time;
echo "scan files: ".$verifier->total_files()."\n";
echo "total cost: {$scan_local_time} secs.\n";


//step_2,遍历刚取下的源文件,并和本地的线上源文件进行md5校验,如果存在不一致的,则写入日志


//step_3,输出校验结果

  


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap