PHP base64+gzinflate壓縮編碼和解碼代碼
更新時(shí)間:2008年10月03日 16:33:03 作者:
base64+gzinflate壓縮編碼(加密)過(guò)的文件通常是以 <? eval(gzinflate(base64_decode( 為頭的一個(gè)php文件。文中給出了編碼和解碼的代碼。
base64+gzinflate壓縮編碼(加密)過(guò)的文件通常是以 <? eval(gzinflate(base64_decode( 為頭的一個(gè)php文件。以下我們給出了相關(guān)的編碼解碼(加密解密)代碼。
壓縮編碼(加密)代碼:
<?php
function encode_file_contents($filename) {
$type=strtolower(substr(strrchr($filename,'.'),1));
if('php'==$type && is_file($filename) && is_writable($filename)){// 如果是PHP文件 并且可寫(xiě) 則進(jìn)行壓縮編碼
$contents = file_get_contents($filename);// 判斷文件是否已經(jīng)被編碼處理
$pos = strpos($contents,'/*Protected by 草名 http://www.crazyi.cn Cryptation*/');
if(false === $pos || $pos>100){ // 去除PHP文件注釋和空白,減少文件大小
$contents = php_strip_whitespace($filename);
// 去除PHP頭部和尾部標(biāo)識(shí)
$headerPos = strpos($contents,'<?php');
$footerPos = strrpos($contents,'?>');
$contents = substr($contents,$headerPos+5,$footerPos-$headerPos);
$encode = base64_encode(gzdeflate($contents));// 開(kāi)始編碼
$encode = '<?php'." /*Protected by 草名 http://www.crazyi.cn Cryptation*/\n eval(gzinflate(base64_decode(".$encode.")));\n /*Reverse engineering is illegal and strictly prohibited- (C)草名 Cryptation 2008*/ \n?>";
return file_put_contents($filename,$encode);
}
}
return false;
}
//調(diào)用函數(shù)
$filename='g:\我的文檔\桌面\test.php';
encode_file_contents($filename);
?>
<?php
function encode_file_contents($filename) {
$type=strtolower(substr(strrchr($filename,'.'),1));
if('php'==$type && is_file($filename) && is_writable($filename)){// 如果是PHP文件 并且可寫(xiě) 則進(jìn)行壓縮編碼
$contents = file_get_contents($filename);// 判斷文件是否已經(jīng)被編碼處理
$pos = strpos($contents,'/*Protected by 草名 http://www.crazyi.cn Cryptation*/');
if(false === $pos || $pos>100){ // 去除PHP文件注釋和空白,減少文件大小
$contents = php_strip_whitespace($filename);
// 去除PHP頭部和尾部標(biāo)識(shí)
$headerPos = strpos($contents,'<?php');
$footerPos = strrpos($contents,'?>');
$contents = substr($contents,$headerPos+5,$footerPos-$headerPos);
$encode = base64_encode(gzdeflate($contents));// 開(kāi)始編碼
$encode = '<?php'." /*Protected by 草名 http://www.crazyi.cn Cryptation*/\n eval(gzinflate(base64_decode(".$encode.")));\n /*Reverse engineering is illegal and strictly prohibited- (C)草名 Cryptation 2008*/ \n?>";
return file_put_contents($filename,$encode);
}
}
return false;
}
//調(diào)用函數(shù)
$filename='g:\我的文檔\桌面\test.php';
encode_file_contents($filename);
?>
壓縮解碼(解密)代碼:
<?php
$Code = '這里填寫(xiě)要解密的編碼'; // base64編碼
$File = 'test.php';//解碼后保存的文件
$Temp = base64_decode($Code);
$temp = gzinflate($Temp);
$FP = fopen($File,"w");
fwrite($FP,$temp);
fclose($FP);
echo "解密成功!";
?>
壓縮編碼(加密)代碼:
復(fù)制代碼 代碼如下:
<?php
function encode_file_contents($filename) {
$type=strtolower(substr(strrchr($filename,'.'),1));
if('php'==$type && is_file($filename) && is_writable($filename)){// 如果是PHP文件 并且可寫(xiě) 則進(jìn)行壓縮編碼
$contents = file_get_contents($filename);// 判斷文件是否已經(jīng)被編碼處理
$pos = strpos($contents,'/*Protected by 草名 http://www.crazyi.cn Cryptation*/');
if(false === $pos || $pos>100){ // 去除PHP文件注釋和空白,減少文件大小
$contents = php_strip_whitespace($filename);
// 去除PHP頭部和尾部標(biāo)識(shí)
$headerPos = strpos($contents,'<?php');
$footerPos = strrpos($contents,'?>');
$contents = substr($contents,$headerPos+5,$footerPos-$headerPos);
$encode = base64_encode(gzdeflate($contents));// 開(kāi)始編碼
$encode = '<?php'." /*Protected by 草名 http://www.crazyi.cn Cryptation*/\n eval(gzinflate(base64_decode(".$encode.")));\n /*Reverse engineering is illegal and strictly prohibited- (C)草名 Cryptation 2008*/ \n?>";
return file_put_contents($filename,$encode);
}
}
return false;
}
//調(diào)用函數(shù)
$filename='g:\我的文檔\桌面\test.php';
encode_file_contents($filename);
?>
<?php
function encode_file_contents($filename) {
$type=strtolower(substr(strrchr($filename,'.'),1));
if('php'==$type && is_file($filename) && is_writable($filename)){// 如果是PHP文件 并且可寫(xiě) 則進(jìn)行壓縮編碼
$contents = file_get_contents($filename);// 判斷文件是否已經(jīng)被編碼處理
$pos = strpos($contents,'/*Protected by 草名 http://www.crazyi.cn Cryptation*/');
if(false === $pos || $pos>100){ // 去除PHP文件注釋和空白,減少文件大小
$contents = php_strip_whitespace($filename);
// 去除PHP頭部和尾部標(biāo)識(shí)
$headerPos = strpos($contents,'<?php');
$footerPos = strrpos($contents,'?>');
$contents = substr($contents,$headerPos+5,$footerPos-$headerPos);
$encode = base64_encode(gzdeflate($contents));// 開(kāi)始編碼
$encode = '<?php'." /*Protected by 草名 http://www.crazyi.cn Cryptation*/\n eval(gzinflate(base64_decode(".$encode.")));\n /*Reverse engineering is illegal and strictly prohibited- (C)草名 Cryptation 2008*/ \n?>";
return file_put_contents($filename,$encode);
}
}
return false;
}
//調(diào)用函數(shù)
$filename='g:\我的文檔\桌面\test.php';
encode_file_contents($filename);
?>
壓縮解碼(解密)代碼:
復(fù)制代碼 代碼如下:
<?php
$Code = '這里填寫(xiě)要解密的編碼'; // base64編碼
$File = 'test.php';//解碼后保存的文件
$Temp = base64_decode($Code);
$temp = gzinflate($Temp);
$FP = fopen($File,"w");
fwrite($FP,$temp);
fclose($FP);
echo "解密成功!";
?>
您可能感興趣的文章:
- php讀取和保存base64編碼的圖片內(nèi)容
- php base64 編碼與解碼實(shí)例代碼
- 利用PHP將圖片轉(zhuǎn)換成base64編碼的實(shí)現(xiàn)方法
- PHP base64編碼后解碼亂碼的解決辦法
- PHP安全的URL字符串base64編碼和解碼
- php下巧用select語(yǔ)句實(shí)現(xiàn)mysql分頁(yè)查詢
- php mysql數(shù)據(jù)庫(kù)操作分頁(yè)類(lèi)
- mysql+php分頁(yè)類(lèi)(已測(cè))
- php+mysql分頁(yè)代碼詳解
- php分頁(yè)查詢mysql結(jié)果的base64處理方法示例
相關(guān)文章
php 微信開(kāi)發(fā)獲取用戶信息如何實(shí)現(xiàn)
這篇文章主要介紹了php 微信開(kāi)發(fā)獲取用戶信息如何實(shí)現(xiàn)的相關(guān)資料,需要的朋友可以參考下2016-12-12PHP實(shí)現(xiàn)抓取迅雷VIP賬號(hào)的方法
這篇文章主要介紹了PHP實(shí)現(xiàn)抓取迅雷VIP賬號(hào)的方法,實(shí)例分析了php基于采集類(lèi)Snoopy實(shí)現(xiàn)頁(yè)面抓取及正則匹配的相關(guān)技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下2015-07-07PHP獲取數(shù)據(jù)庫(kù)表中的數(shù)據(jù)插入新的表再原刪除數(shù)據(jù)方法
在本篇文章中我們給大家分享了關(guān)于PHP獲取要?jiǎng)h除數(shù)據(jù)庫(kù)表中的數(shù)據(jù)插入新的表再原刪除數(shù)據(jù)的詳細(xì)方法和相關(guān)代碼,需要的朋友們參考下。2018-10-10PHP實(shí)現(xiàn)的鏈?zhǔn)疥?duì)列結(jié)構(gòu)示例
這篇文章主要介紹了PHP實(shí)現(xiàn)的鏈?zhǔn)疥?duì)列結(jié)構(gòu),結(jié)合具體實(shí)例形式分析了php鏈?zhǔn)疥?duì)列的定義及入隊(duì)、出隊(duì)、打印隊(duì)列等基本操作實(shí)現(xiàn)與使用方法,需要的朋友可以參考下2017-09-09php實(shí)現(xiàn)mysql連接池效果實(shí)現(xiàn)代碼
這篇文章主要介紹了php代碼實(shí)現(xiàn)mysql連接池效果,需要的朋友可以參考下2018-01-01PHP時(shí)間戳和日期相互轉(zhuǎn)換操作實(shí)例小結(jié)
這篇文章主要介紹了PHP時(shí)間戳和日期相互轉(zhuǎn)換操作,結(jié)合實(shí)例形式總結(jié)分析了php常見(jiàn)的各種日期與時(shí)間戳轉(zhuǎn)換操作使用技巧與注意事項(xiàng),需要的朋友可以參考下2018-12-12