首頁  >  文章  >  後端開發  >  php代碼的加密解密

php代碼的加密解密

WBOY
WBOY原創
2016-07-25 08:44:14961瀏覽
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();
  16. //echo "hello n";
  17. }
  18. /*
  19. *@input $property_name,$value
  20. *@output
  21. * 魔法方法,設定變數值;可依需求處理。若直接移除if判斷表示可用設定任何屬性的值,包含不存在的屬性;
  22. */
  23. public function __set($property_name,$value){
  24. //定義過的變數;
  25. if(isset($this->$property_name)){
  26. $this->$property_name = $value;
  27. }else{
  28. //異常處理,處理未宣告的變數賦值;可依需求進行處理。
  29. throw new Exception("property does not exist");
  30. }
  31. }
  32. //魔法方法取出變數的值;
  33. public function __get($property_name){
  34. if🎜> if (isset($this->$property_name)){
  35. return $this->$property_name;
  36. }else{
  37. //throw new Exception("property does not exist");
  38. return元;
  39. }
  40. }
  41. //取隨機排序
  42. private function RandAbc($length=""){//隨機排序取回
  43. $str="ABCDE > return str_shuffle($str);
  44. }
  45. //對明文內容加密處理
  46. private function ciphertext($filename){
  47. //$filename='index.php';
  48. $T_k1=$this->RandAbc();
  49. $T_k2=$this->RandAbc();
  50. $vstr=file_get_contents($filename);
  51. $v1=base64_encode($vstr);
  52. $c=strtr($v1,$T_k1,$T_k2);
  53. $this->c=$T_k1.$T_k2.$c;
  54. return $this;
  55. }
  56. //初始化變數
  57. private function initialVar(){
  58. $this->q1="O00O0O";//base64_decode
  59. $this->q2="O0O000";//$c(原文經過strtr置換後的密文,由目標字元取代字元base64_encode('原文內容')構成)
  60. $this->q3="O0OO00";//strtr
  61. $this->q4="OO0O00";/ /substr
  62. $this->q5="OO0000";//52
  63. $this->q6="O00OO0";//urldecode解析過的字串(n1zb/ma5vt0i28-pxuqy*6workdg9_ehcs
  64. }
  65. //產生加密後的模板(複雜版本);
  66. private function model(){
  67. //$c = $this->c;
  68. //$ this->initialVar();
  69. $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}.$'
  70. .$this->q6.'{24}.$'.$this->q6.'{10}.$'.$this->q6.'{24}; $'.$this->q4.'=$'.$this->q3.'{0}.$'.$this->q6.'{18}.$'.$this->q6.'{ 3}.$'.$this->q3.'{0}
  71. .$'.$this->q3.'小貝.$'.$this->q6.'{24};$'. $this->q5.'=$'.$this->q6.'{7}.$'.$this->q6.'{13};$'.$this->q1.'.=$' .$this->q6.'{22}.$'.$this->q6.'{36}
  72. .$'.$this->q6.'{29}.$'.$this-> q6.'{26}.$'.$this->q6.'{30}.$'.$this->q6.'{32}.$'.$this->q6.'{35}.$ '.$this->q6.'{26}.$'.$this->q6.'{30};
  73. eval($'.$this->q1.'("'.base64_encode('$ '.$this->q2.'="'.$this->c.'";
  74. eval('?>'.$'.$this->q1.'($'.$this-> q3.'($'.$this->q4.'($'.$this->q2.',$'.$this->q5.'*2),$'.$this->q4.' ($'.$this->q2.',$'.$this->q5.',$'.$this->q5.'),
  75. $'.$this->q4.'($ '.$this->q2.',0,$'.$this->q5.'))));').'"));?>';
  76. return $this;
  77. }
  78. //建立加密檔案
  79. private function build($target){
  80. //$this->encodes("./index.php");
  81. //$this->model( );
  82. $fpp1 = fopen($target,'w');
  83. fwrite($fpp1,$this->s) or die('寫入是失敗!');
  84. fclose($fpp1);
  85. return $this;
  86. }
  87. //加密處理連貫操作
  88. public function encode($file,$target){
  89. / /$file = "index.php";
  90. //連貫操作其實就是利用函數處理完後返回自身
  91. $this->ciphertext($file)->model()->build($target) ;
  92. echo 'encode------'.$target.'-----ok
    ';
  93. }
  94. //解密
  95. public function decode($file ,$target=''){
  96. //讀取要解密的檔案
  97. $fpp1 = file_get_contents($file);
  98. $this->decodeMode($fpp1)->build($target) ;
  99. echo 'decode------'.$target.'-----ok
    ';
  100. }
  101. //解密模板,得到解密後的文字
  102. private function decodeMode($fpp1){
  103. //以eval為標誌截取為數組,前半部為密文中的替換掉的函數名,後半部為密文
  104. $m = explode('eval ',$fpp1);
  105. //對系統函數的替換部分進行執行,得到系統變數
  106. $varStr = substr($m[0],strpos($m[0],'$')) ;
  107. //執行後,後續就可以使用替換後的系統函式名稱
  108. eval($varStr);
  109. //判斷是否有密文
  110. if(!isset($m[1 ])){
  111. return $this;
  112. }
  113. //對密文截取{$this->q4} substr
  114. $star = strripos($m[1], '(');
  115. $end = strpos($m[1],')');
  116. $str = ${$this->q4}($m[1],$star,$end );
  117. //對密文解密{$this->q1} base64_decode
  118. $str = ${$this->q1}($str);
  119. //截取出解密後的核心密文
  120. $evallen = strpos($str,'eval');
  121. $str = substr($str,0,$evallen);
  122. //執行核心密文使系統變數被賦予值$ O0O000
  123. eval($str);
  124. //並不能將如下段封裝,因為${$this->qn} 並不能在全文中起作用
  125. $this->s = ${$ this->q1}(
  126. ${$this->q3}(
  127. ${$this->q4}(
  128. ${$this->q2},${$this->q5} *2
  129. ),
  130. ${$this->q4}(
  131. ${$this->q2},${$this->q5},${$this->q5}
  132. ),
  133. ${$this->q4}(
  134. ${$this->q2},0,${$this->q5}
  135. )
  136. )
  137. );
  138. return $this;
  139. }
  140. //遞歸讀取並建立目標目錄結構
  141. private function targetDir($target){
  142. if(!empty($target) ) {
  143. if(!file_exists($target)){
  144. mkdir($target,0777,true);
  145. }else{
  146. chmod($target,0777);
  147. }
  148. }
  149. }
  150. //遞歸解密對指定資料夾下的php檔案解密
  151. public function decodeDir($source,$target=""){
  152. if(is_dir($ source)){
  153. $this->targetDir($target);
  154. $dir = opendir($source);
  155. while(false!=$file=readdir($dir))
  156. {
  157. //列出所有檔案並去掉'.'和'..' 此處使用的實例為thinkphp框架,所以預設排除裡Thinkphp目錄,使用者可以依照自己的需求設定
  158. if($file! ='.' && $file!='..' && $file !='ThinkPHP')
  159. {
  160. $path = $target.DIRECTORY_SEPARATOR.$file;
  161. $sourcePath = $source.DIRECTORY_SEPARATOR.$file;
  162. $sourcePath = $source.DIRECTORY_SEPARATOR .$file;
  163. $this->decodeDir($sourcePath,$path);
  164. }
  165. }
  166. }else if(is_file($source)){
  167. $extension =substr($source,strrpos($source,'.') 1);
  168. if(strtolower($extension)=='php'){
  169. $this->decode($source,$target) ;
  170. }else{
  171. //不是php的檔案不處理
  172. copy($source, $target);
  173. }
  174. //return; } }
  175. //遞歸加密對指定資料夾下的php檔案加密
  176. public function encodeDir($source,$target){
  177. if(is_dir($source)){
  178. $this->targetDir ($target);
  179. $dir = opendir($source);
  180. while(false!=$file=readdir($dir))
  181. {
  182. //列出所有檔案並去掉' .'和'..'
  183. if($file!='.' && $file!='..' && $file !='ThinkPHP')
  184. {
  185. $path = $target. DIRECTORY_SEPARATOR.$file;
  186. $sourcePath = $source.DIRECTORY_SEPARATOR.$file;
  187. $this->encodeDir($sourcePath,$path);
  188. }
  189. }
  190. else if(is_file($source)){
  191. $extension=substr($source,strrpos($source,'.') 1);
  192. if(strtolower($extension)=='php'){
  193. $this->encode($source,$target);
  194. }else{
  195. copy($source, $target);
  196. }
  197. }
  198. }
  199. }
  200. $ob = new Encryption();
  201. $ob->source = "/var/www/bookReservation";
  202. $ob->target = "/var/www/jiami/bookReservation";
  203. //解密指定檔案
  204. //$ob->decode('D:\php\WWW\workspace\weixin2\Application\Home\Controller\IndexController.class.php');
  205. //$ob->decode('jiami.php');
  206. //$ob->decode('dam6.php');
  207. //對一個指定的檔案目錄進行加密
  208. $ ob->encodeDir($ob->source,$ob->target);
  209. //對一個指定的檔案目錄進行解密
  210. $ob->decodeDir($ob->target,"/var/ www/jiami/bookReservationD");
複製程式碼


加密解密, php


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn