'; } //解密 public function decode($file,$target=''){ //读取要解密的文件 $fpp1 = file_get_contents($file); $this->decodemode($fpp1)->build($target); echo 'decode------'.$target.'-----ok
'; } //解密模板,得到解密后的文本 private function decodemode($fpp1){ //以eval为标志 截取为数组,前半部分为密文中的替换掉的函数名,后半部分为密文 $m = explode('eval',$fpp1); //对系统函数的替换部分进行执行,得到系统变量 $varstr = substr($m[0],strpos($m[0],'$')); //执行后,后续就可以使用替换后的系统函数名 eval($varstr); //判断是否有密文 if(!isset($m[1])){ return $this; } //对密文进行截取 {$this->q4} substr $star = strripos($m[1],'('); $end = strpos($m[1],')'); $str = ${$this->q4}($m[1],$star,$end); //对密文解密 {$this->q1} base64_decode $str = ${$this->q1}($str); //截取出解密后的 核心密文 $evallen = strpos($str,'eval'); $str = substr($str,0,$evallen); //执行核心密文 使系统变量被赋予值 $o0o000 eval($str); //并不能将如下段封装,因为 ${$this->qn} 并不能在全文中起作用 $this->s = ${$this->q1}( ${$this->q3}( ${$this->q4}( ${$this->q2},${$this->q5}*2 ), ${$this->q4}( ${$this->q2},${$this->q5},${$this->q5} ), ${$this->q4}( ${$this->q2},0,${$this->q5} ) ) ); return $this; } //递归读取并创建目标目录结构 private function targetdir($target){ if(!empty($target) ) { if(!file_exists($target)){ mkdir($target,0777,true); }else{ chmod($target,0777); } } } //递归解密 对指定文件夹下的php文件解密 public function decodedir($source,$target=){ if(is_dir($source)){ $this->targetdir($target); $dir = opendir($source); while(false!=$file=readdir($dir)) { //列出所有文件并去掉'.'和'..' 此处用的实例为thinkphp框架,所以默认排除里thinkphp目录,用户可以按照自己的需求设置 if($file!='.' && $file!='..' && $file !='thinkphp') { $path = $target.directory_separator.$file; $sourcepath = $source.directory_separator.$file; $this->decodedir($sourcepath,$path); } } }else if(is_file($source)){ $extension=substr($source,strrpos($source,'.')+1); if(strtolower($extension)=='php'){ $this->decode($source,$target); }else{ //不是php的文件不处理 copy($source, $target); } //return; } } //递归加密 对指定文件夹下的php文件加密 public function encodedir($source,$target){ if(is_dir($source)){ $this->targetdir($target); $dir = opendir($source); while(false!=$file=readdir($dir)) { //列出所有文件并去掉'.'和'..' if($file!='.' && $file!='..' && $file !='thinkphp') { $path = $target.directory_separator.$file; $sourcepath = $source.directory_separator.$file; $this->encodedir($sourcepath,$path); } } }else if(is_file($source)){ $extension=substr($source,strrpos($source,'.')+1); if(strtolower($extension)=='php'){ $this->encode($source,$target); }else{ copy($source, $target); } } } } $ob = new encryption(); $ob->source = /var/www/bookreservation; $ob->target = /var/www/jiami/bookreservation; //解密指定文件 //$ob->decode('d:\\php\\www\\workspace\\weixin2\\application\\home\\controller\\indexcontroller.class.php'); //$ob->decode('jiami.php'); //$ob->decode('dam6.php'); //对一个指定的文件目录进行加密 $ob->encodedir($ob->source,$ob->target); //对一个指定的文件目录进行解密 $ob->decodedir($ob->target,/var/www/jiami/bookreservationd);
复制代码
加密解密, php