防篡改php文件校验程序

 

<?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,输出校验结果

  

转载于:https://www.cnblogs.com/jenqz/p/4999999.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值