最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

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)的編碼解碼(加密解密)代碼。

壓縮編碼(加密)代碼:
復(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 "解密成功!";
?>

相關(guān)文章

最新評(píng)論

康平县| 尉犁县| 樟树市| 宁德市| 双鸭山市| 平阳县| 郧西县| 云梦县| 碌曲县| 吴旗县| 伽师县| 浦北县| 道真| 西平县| 邢台县| 禹州市| 永登县| 集贤县| 周至县| 海城市| 通州市| 陆良县| 昌都县| 大厂| 黄山市| 什邡市| 苗栗市| 上杭县| 东城区| 宁津县| 临沂市| 东至县| 宁德市| 日喀则市| 乌拉特后旗| 瓦房店市| 伊川县| 博爱县| 苏州市| 莱阳市| 沧州市|