php 코드 암호화 클래스
- /*
- * @auther:wangyaofeng
- * @time:2014.11.6
- * @action: php 프로젝트를 암호화합니다. 프로젝트에 프레임워크 디렉토리나 암호화할 필요가 없는 디렉토리가 있으면 미리 옮겨주세요
- * */
- class Encryption{
- private $ c='';//저장 비밀번호 텍스트
- private $s='',$q1,$q2,$q3,$q4,$q5,$q6;//생성된 암호화된 파일 내용 저장
- / /값을 설정하지 않으면 isset은 해당 값이 존재하지 않는다고 표시합니다.
- private $file='';//파일을 읽을 경로
- private $source='',$target=' ';
- //생성자, 전역 변수 초기화 호출
- public function __construct(){
- //전역 변수 초기화
- $this->initialVar(); /echo "hello n";
- }
- /*
- *@input $property_name,$value
- *@output
- * 변수 값을 설정하는 매직 메소드; 필요에 따라. if 판단이 직접 제거되면 존재하지 않는 속성을 포함하여 모든 속성의 값을 설정할 수 있음을 의미합니다.
- */
- public function __set($property_name,$value){
- / /정의된 변수;
- if(isset($this->$property_name)){
- $this->$property_name = $value;
- }else{
- //예외 처리 선언되지 않은 변수 할당은 필요에 따라 처리될 수 있습니다.
- throw new Exception("속성이 존재하지 않습니다");
- }
- }
- //변수 값을 가져오는 마법의 메서드
- public function __get($property_name){
- if (isset($this->$property_name)){
- return $this->$property_name;
- }else{
- //새 예외 발생("속성이 존재하지 않습니다") ;
- return NULL; }
- }
- //무작위 정렬 가져오기
- 비공개 함수 RandAbc($length=""){//무작위 정렬 가져오기
- $str="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ";
- return str_shuffle($str);
- }
- //일반 텍스트 콘텐츠 암호화
- private function ciphertext($filename){
- //$filename='index.php' ;
- $T_k1=$this->RandAbc();
- $T_k2=$this->RandAbc()
- $vstr=file_get_contents($filename); ( $vstr);
- $c=strtr($v1,$T_k1,$T_k2)
- $this->c=$T_k1.$T_k2.$c; 🎜 > }
- //변수 초기화
- private functioninitialVar(){
- $this->q1="O00O0O";//base64_decode
- $this->q2="O0O000"; / /$c (strtr 대체 후 원본 텍스트의 암호문, 대상 문자 대체 문자 base64_encode('원본 텍스트 콘텐츠')로 구성됨)
- $this->q3="O0OO00";//strtr
- $this- >q4="OO0O00";//substr
- $this->q5="OO0000";//52
- $this->q6="O00OO0";//urldecode 구문 분석됨 string (n1zb/ma5vt0i28-pxuqy*6lrkdg9_ehcswo4 f37j)
-
- }
- //암호화된 템플릿 생성(복잡한 버전)
- private function model(){
- //$c = $ this ->c
- //$this->initialVar();
- $this->s='q6.'=urldecode(" n1zb /ma5vt0i28-pxuqy*6lrkdg9_ehcswo4+f37j");$'.
- $this->q1.'=$'.$this->q6.'{3}.$'.$this-> q6 .'{6}.$'.$this->q6.'{33}.$'.$this->q6.'{30};$'.$this->q3.'=$ ' .$this->q6.'{33}.$'.$this->q6.'{10}.$'
- .$this->q6.'{24}.$'. this->q6.'{10}.$'.$this->q6.'{24};$'.$this->q4.'=$'.$this->q3.' 0}.$'.$this->q6.'{18}.$'.$this->q6.'{3}.$'.$this->q3.'{0}
- .$'.$this->q3.'작은贝.$'.$this->q6.'{24};$'.$this->q5.'=$'.$this-> ; q6.'{7}.$'.$this->q6.'{13};$'.$this->q1.'.=$'.$this->q6.'{22} . $'.$this->q6.'{36}
- .$'.$this->q6.'{29}.$'.$this->q6.'{26}.$ ' .$this->q6.'{30}.$'.$this->q6.'{32}.$'.$this->q6.'{35}.$'.$this- > ;q6.'{26}.$'.$this->q6.'{30};
- eval($'.$this->q1.'("'.base64_encode('$'. $ this->q2.'="'.$this->c.'"
- eval('?>'.$'.$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 build($target){
- //$this->encodes("./index.php ");
- //$this->model();
- $fpp1 = fopen($target,'w');
- fwrite($fpp1,$this->s) 또는 사망 ('글쓰기 실패!');
- fclose($fpp1);
- return $this;
- }
- //암호화 처리 일관성
- public function encode($file,$target){
- / /$file = "index.php";
- //연속연산은 실제로 처리 후 자신에게 돌아가는 함수를 사용하는 것입니다.
- $this->ciphertext($file)->model()-> ;build( $target);
- echo 'encode------'.$target.'-----ok
'
- }
- //암호화
- public function decode($file,$target=''){
- //복호화할 파일 읽기
- $fpp1 = file_get_contents($file)
- $this->decodeMode($fpp1 )-> ;build($target);
- echo 'decode------'.$target.'------ok
'; 템플릿 복호화, 복호화된 텍스트 가져오기
- private function decodeMode($fpp1){
- //eval을 플래그로 사용하여 배열로 가로채기 첫 번째 절반은 암호 텍스트에서 대체된 함수 이름이고 두 번째는 half는 암호문입니다
- $m =explore('eval',$fpp1);
- //시스템 함수의 대체 부분을 실행하고 시스템 변수를 가져옵니다
- $varStr = substr($m[0 ],strpos($m[0 ],'$'));
- //실행 후 대체된 시스템 함수 이름을 사용할 수 있습니다.
- eval($varStr)
- //있는지 판단합니다. ciphertext
- 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
- }
- //대상 디렉터리를 반복적으로 읽고 생성합니다. 구조
- 비공개 함수 targetDir($target){
- if(!empty($target) ) {
- if(!file_exists($target)){
- mkdir($target,0777,true) ;
- }else{
- chmod($target,0777);
- }
-
- }
- }
-
- //지정된 PHP 파일을 복호화하는 재귀 복호화 폴더
- 공용 함수 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-> $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 = 새 암호화();
- $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")
코드 복사
|