beanutils.populate PHP base64+gzinflate壓縮編碼和解碼程式碼

WBOY
發布: 2016-07-29 08:39:02
原創
1176 人瀏覽過

base64+gzinflate壓縮編碼(加密)過的檔案通常是以 eval(gzinflate(base64_decode( 為頭的一個php檔案。以下我們給出了相關的編碼解碼(加密解密)代碼。
壓縮編碼(加密)代碼:

複製程式碼 程式碼如下:


function encode_1_contents($name) {file_contents($name) {file_contents($name) {file_contents 🎜>$type=strtolower(substr(strrchr($filename,'.'),1));
if('php'==$type && is_file($filename) && is_writable($filename)){/ / 如果是PHP檔案且可寫則進行壓縮編碼
$contents = file_get_contents($filename);// 判斷檔案是否已經被編碼處理
$pos = strpos($contents,'/*Protected by 草名http://www.crazyi.cn Cryptation*/');
if(false === $pos || $pos>100){ // 去除PHP檔案註解與空白,減少檔案大小
$contents = php_strip_whitespace($filename);
// 移除PHP頭部和尾部識別
$headerPos = strpos($contents,'$footerPos = strrpos($contents, '?>');
$contents = substr($contents,$headerPos+5,$footerPos-$headerPos);
$encode = base64_encode(gzdeflate($contents));// 開始編碼
$encode = '";
return file_put_contents($filename,$encode);
}
}
return false; >}
//呼叫函數
$filename='g:我的文件桌面test.php';
encode_file_contents($filename);
?>
function encode_file_contents($filename) {
$type=strtolower(substr(strrchr($filename,'.'),1));
if('php'==$type && is_file($filename) && is_writable($filename)){// 如果是PHP檔案且可寫則進行壓縮編碼
$contents = file_get_contents($filename);// 判斷檔案是否已經被編碼處理
$pos = strpos($ contents,'/*Protected by 草名http://www.crazyi.cn Cryptation*/');
if(false === $pos || $pos>100){ // 移除PHP檔案註解和空白,減少檔案大小
$contents = php_strip_whitespace($filename);
// 移除PHP頭部和尾部識別
$headerPos = strpos($contents,'$headerPos = strpos($contents,' $footerPos = strrpos($contents,'?>');
$contents = substr($contents,$headerPos+5,$footerPos-$headerPos);
$encode = base64_encode(gzdeflate($contents) );// 開始編碼
$encode = '";
return file_put_contents($filename,$encode);
}
}
}
return false;
}
//呼叫函數
$filename='g:我的文件桌面test.php';
encode_file_contents($filename);
?>


壓縮解碼(解密)代碼:

複製程式碼 程式碼如下:












$Code = '這裡填入要解密的編碼'; // base64編碼$File = 'test.php';//解碼後儲存的檔案$Temp = base64_decode($Code); $temp = gzinflate($Temp); $FP = fopen($File,"w"); fwrite($FP,$temp); fclose($FP); echo "解密成功! "; ?> 以上就介紹了beanutils.populate PHP base64+gzinflate壓縮編碼和解碼代碼,包括了beanutils.populate方面的內容,希望對PHP教程有興趣的朋友有所幫助。
相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!