PHP 코드 암호화 및 복호화

WBOY
풀어 주다: 2016-07-25 08:44:14
원래의
957명이 탐색했습니다.
php 코드 암호화 클래스
  1. /*
  2. * @auther:wangyaofeng
  3. * @time:2014.11.6
  4. * @action: php 프로젝트를 암호화합니다. 프로젝트에 프레임워크 디렉토리나 암호화할 필요가 없는 디렉토리가 있으면 미리 옮겨주세요
  5. * */
  6. class Encryption{
  7. private $ c='';//저장 비밀번호 텍스트
  8. private $s='',$q1,$q2,$q3,$q4,$q5,$q6;//생성된 암호화된 파일 내용 저장
  9. / /값을 설정하지 않으면 isset은 해당 값이 존재하지 않는다고 표시합니다.
  10. private $file='';//파일을 읽을 경로
  11. private $source='',$target=' ';
  12. //생성자, 전역 변수 초기화 호출
  13. public function __construct(){
  14. //전역 변수 초기화
  15. $this->initialVar(); /echo "hello n";
  16. }
  17. /*
  18. *@input $property_name,$value
  19. *@output
  20. * 변수 값을 설정하는 매직 메소드; 필요에 따라. if 판단이 직접 제거되면 존재하지 않는 속성을 포함하여 모든 속성의 값을 설정할 수 있음을 의미합니다.
  21. */
  22. public function __set($property_name,$value){
  23. / /정의된 변수;
  24. if(isset($this->$property_name)){
  25. $this->$property_name = $value;
  26. }else{
  27. //예외 처리 선언되지 않은 변수 할당은 필요에 따라 처리될 수 있습니다.
  28. throw new Exception("속성이 존재하지 않습니다");
  29. }
  30. }
  31. //변수 값을 가져오는 마법의 메서드
  32. public function __get($property_name){
  33. if (isset($this->$property_name)){
  34. return $this->$property_name;
  35. }else{
  36. //새 예외 발생("속성이 존재하지 않습니다") ;
  37. return NULL; }
  38. }
  39. //무작위 정렬 가져오기
  40. 비공개 함수 RandAbc($length=""){//무작위 정렬 가져오기
  41. $str="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ";
  42. return str_shuffle($str);
  43. }
  44. //일반 텍스트 콘텐츠 암호화
  45. private function ciphertext($filename){
  46. //$filename='index.php' ;
  47. $T_k1=$this->RandAbc();
  48. $T_k2=$this->RandAbc()
  49. $vstr=file_get_contents($filename); ( $vstr);
  50. $c=strtr($v1,$T_k1,$T_k2)
  51. $this->c=$T_k1.$T_k2.$c; 🎜 > }
  52. //변수 초기화
  53. private functioninitialVar(){
  54. $this->q1="O00O0O";//base64_decode
  55. $this->q2="O0O000"; / /$c (strtr 대체 후 원본 텍스트의 암호문, 대상 문자 대체 문자 base64_encode('원본 텍스트 콘텐츠')로 구성됨)
  56. $this->q3="O0OO00";//strtr
  57. $this- >q4="OO0O00";//substr
  58. $this->q5="OO0000";//52
  59. $this->q6="O00OO0";//urldecode 구문 분석됨 string (n1zb/ma5vt0i28-pxuqy*6lrkdg9_ehcswo4 f37j)
  60. }
  61. //암호화된 템플릿 생성(복잡한 버전)
  62. private function model(){
  63. //$c = $ this ->c
  64. //$this->initialVar();
  65. $this->s='q6.'=urldecode(" n1zb /ma5vt0i28-pxuqy*6lrkdg9_ehcswo4+f37j");$'.
  66. $this->q1.'=$'.$this->q6.'{3}.$'.$this-> q6 .'{6}.$'.$this->q6.'{33}.$'.$this->q6.'{30};$'.$this->q3.'=$ ' .$this->q6.'{33}.$'.$this->q6.'{10}.$'
  67. .$this->q6.'{24}.$'. this->q6.'{10}.$'.$this->q6.'{24};$'.$this->q4.'=$'.$this->q3.' 0}.$'.$this->q6.'{18}.$'.$this->q6.'{3}.$'.$this->q3.'{0}
  68. .$'.$this->q3.'작은贝.$'.$this->q6.'{24};$'.$this->q5.'=$'.$this-> ; q6.'{7}.$'.$this->q6.'{13};$'.$this->q1.'.=$'.$this->q6.'{22} . $'.$this->q6.'{36}
  69. .$'.$this->q6.'{29}.$'.$this->q6.'{26}.$ ' .$this->q6.'{30}.$'.$this->q6.'{32}.$'.$this->q6.'{35}.$'.$this- > ;q6.'{26}.$'.$this->q6.'{30};
  70. eval($'.$this->q1.'("'.base64_encode('$'. $ this->q2.'="'.$this->c.'"
  71. eval('?>'.$'.$this->q1.'($'.$this - >q3.'($'.$this->q4.'($'.$this->q2.',$'.$this->q5.'*2),$'.$ this ->q4.'($'.$this->q2.',$'.$this->q5.',$'.$this->q5.'),
  72. $' . $this->q4.'($'.$this->q2.',0,$'.$this->q5.'))));').'"));?> ';
  73. return $this;
  74. }
  75. //암호화된 파일 생성
  76. private function build($target){
  77. //$this->encodes("./index.php ");
  78. //$this->model();
  79. $fpp1 = fopen($target,'w');
  80. fwrite($fpp1,$this->s) 또는 사망 ('글쓰기 실패!');
  81. fclose($fpp1);
  82. return $this;
  83. }
  84. //암호화 처리 일관성
  85. public function encode($file,$target){
  86. / /$file = "index.php";
  87. //연속연산은 실제로 처리 후 자신에게 돌아가는 함수를 사용하는 것입니다.
  88. $this->ciphertext($file)->model()-> ;build( $target);
  89. echo 'encode------'.$target.'-----ok
    '
  90. }
  91. //암호화
  92. public function decode($file,$target=''){
  93. //복호화할 파일 읽기
  94. $fpp1 = file_get_contents($file)
  95. $this->decodeMode($fpp1 )-> ;build($target);
  96. echo 'decode------'.$target.'------ok
    '; 템플릿 복호화, 복호화된 텍스트 가져오기
  97. private function decodeMode($fpp1){
  98. //eval을 플래그로 사용하여 배열로 가로채기 첫 번째 절반은 암호 텍스트에서 대체된 함수 이름이고 두 번째는 half는 암호문입니다
  99. $m =explore('eval',$fpp1);
  100. //시스템 함수의 대체 부분을 실행하고 시스템 변수를 가져옵니다
  101. $varStr = substr($m[0 ],strpos($m[0 ],'$'));
  102. //실행 후 대체된 시스템 함수 이름을 사용할 수 있습니다.
  103. eval($varStr)
  104. //있는지 판단합니다. ciphertext
  105. if( !isset($m[1])){
  106. return $this
  107. }
  108. //암호문 가로채기 {$this->q4} substr
  109. $star = strripos($m[1],'(');
  110. $end = strpos($m[1],')')
  111. $str = ${$this->q4 }($m [1],$star,$end)
  112. //암호문 {$this->q1} base64_decode
  113. $str = ${$this->q1}($str );
  114. //복호화된 핵심 암호문 가로채기
  115. $evallen = strpos($str,'eval')
  116. $str = substr($str,0,$evallen); 핵심 암호문을 실행하면 시스템 변수에 $O0O000 값이 할당됩니다.
  117. eval($str)
  118. //${$this->qn}이 작동하지 않기 때문에 다음 단락을 캡슐화할 수 없습니다. 전체 텍스트
  119. $this->s = ${$this->q1}(
  120. ${$this->q3}(
  121. ${$this->q4}(
  122. $ {$this->q2},${$this->q5}*2
  123. ),
  124. ${$this->q4}(
  125. ${$this-> q2} ,${$this->q5},${$this->q5}
  126. ),
  127. ${$this->q4}(
  128. ${$this-> q2} ,0,${$this->q5}
  129. )
  130. )
  131. )
  132. return $this
  133. }
  134. //대상 디렉터리를 반복적으로 읽고 생성합니다. 구조
  135. 비공개 함수 targetDir($target){
  136. if(!empty($target) ) {
  137. if(!file_exists($target)){
  138. mkdir($target,0777,true) ;
  139. }else{
  140. chmod($target,0777);
  141. }
  142. }
  143. }
  144. //지정된 PHP 파일을 복호화하는 재귀 복호화 폴더
  145. 공용 함수 decodeDir($source,$target=""){
  146. if(is_dir($source)){
  147. $this->targetDir($target)
  148. $dir = opendir ($source);
  149. while(false!=$file=readdir($dir))
  150. {
  151. //모든 파일을 나열하고 '.' 및 '..'을 제거합니다. thinkphp 프레임워크이므로 Thinkphp 디렉토리는 기본적으로 제외됩니다.
  152. if($file!='.' && $file!='..' && $file !='ThinkPHP ')
  153. {
  154. $path = $target.DIRECTORY_SEPARATOR.$file
  155. $sourcePath = $source.DIRECTORY_SEPARATOR.$file
  156. $this->decodeDir($sourcePath,$path) ;
  157. }
  158. }
  159. }else if(is_file($source)){
  160. $extension=substr($source,strrpos($source,'.') 1); 🎜> if( strtolower($extension)=='php'){
  161. $this->decode($source,$target)
  162. }else{
  163. //php가 아닌 파일은 처리되지 않음
  164. copy ($source, $target)
  165. }
  166. //return
  167. }
  168. }
  169. //재귀적 암호화는 지정된 폴더의 PHP 파일을 암호화합니다.
  170. public function encodeDir($source,$target){
  171. if(is_dir($source)){
  172. $this-> $target);
  173. $dir = opendir($source);
  174. while(false!=$file=readdir($dir))
  175. {
  176. //모든 파일을 나열하고 '.'을 제거합니다. 그리고 '..'
  177. if($file!='.' && $file!='..' && $file !='ThinkPHP')
  178. {
  179. $path = $target .DIRECTORY_SEPARATOR. $file;
  180. $sourcePath = $source.DIRECTORY_SEPARATOR.$file
  181. $this->encodeDir($sourcePath,$path)
  182. }
  183. }
  184. }else if(is_file($source)){
  185. $extension=substr($source,strrpos($source,'.') 1)
  186. if(strtolower($extension)=='php' ){
  187. $this->encode($source,$target)
  188. }else{
  189. copy($source, $target)
  190. }
  191. }
  192. }
  193. }
  194. $ob = 새 암호화();
  195. $ob->source = "/var/www/bookReservation"
  196. $ob->target = "/var/www/jiami /bookReservation" ;
  197. //지정된 파일의 암호를 해독합니다
  198. //$ob->decode('D:\php\WWW\workspace\weixin2\Application\Home\Controller\IndexController.class.php')
  199. //$ob->decode('jiami.php');
  200. //$ob->decode('dam6.php')
  201. //지정된 파일을 암호화합니다. 디렉토리
  202. $ob->encodeDir($ob->source,$ob->target)
  203. //지정된 파일 디렉토리를 해독합니다
  204. $ob-> decodeDir($ob-> ;target,"/var/www/jiami/bookReservationD")
코드 복사


암호화 및 복호화, PHP


관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿