Micro Shield PHP スクリプト暗号化エキスパート PHP 復号化アルゴリズム_PHP チュートリアル

WBOY
リリース: 2016-07-21 15:34:00
オリジナル
1161 人が閲覧しました

コードをコピーします コードは次のとおりです:

/************************************
*Weidun PHP 暗号化エキスパート復号アルゴリズム 投稿者: Neeao
*http:// Neeao.com
*2009-09-10
************************************/

$filename="play-js.php";//復号化するファイル
$lines = file ($filename);//行0、1、2

//最初のbase64復号化
$content="";
if(preg_match("/O0O0000O0('.*')/",$行[1 ],$y))
{
$content=str_replace("O0O0000O0('","",$y[0]);
$content=str_replace("')","",$content) ;
$ content=base64_decode($content);
}
//最初の Base64 復号化されたコンテンツ内のキーを検索します
$decode_key="";
if(preg_match("/),'.*',/",$コンテンツ,$k))
{
$decode_key=str_replace("),'","",$k[0]);
$decode_key=str_replace("',","",$decode_key);
//インターセプトする文字列の長さを検索します
$str_length="";
if(preg_match("/,d*),/",$content,$k))
{
$str_length=str_replace(" )," ,"",$k[0]);
$str_length=str_replace(",","",$str_length);
}
//ファイルの暗号化された暗号文を傍受する
$Secret=substr($ Lines[2 ],$str_length);
//echo $Secret;

//暗号文出力を直接復元する
echo ""
?>;

Weidian PHP スクリプトのクラッキング

コードは次のとおりです: function get_filetree($path){
$tree = array();
foreach(glob($path . '/*') as $single){
if(is_dir($single)){
$tree = array_merge($tree,get_filetree($single));
$tree[] = $single;
}
return $tree
}
関数 eval_decode($File)
{
$Lines = file($File); ("/O0O0000O0( '.*')/", $Lines[1], $S)){
$Content = str_replace("O0O0000O0('", "", $S[0]);
$Content = str_replace("') ", "", $Content);
$Content = Base64_decode($Content); else {
return "ファイルはエンコードされていません!"
$Key("/ ),'.* ',/", $Content, $K)){
$Key = str_replace("),'", "", $K[0]);
$Key = str_replace("'," , "", $Key);
} else {
return "キーをデコードしません!"
$Length;
$Length = str_replace ("),", "", $K[0]);
$Length = str_replace(",", "", $Length);
} else {
return "base64 文字列をデコードしません! ";
}
$Secret = substr($Lines[2], $Length);
$Decode = "";
file_put_contents($File, $Decode);
return "ファイル デコード成功!";
}

$filelist = get_filetree("D:/PHPnow/htdocs/1");
foreach($filelist as $value){
echo $value." :tt".eval_decode($value) . "nr
"

;



http://www.bkjia.com/PHPjc/322493.html

www.bkjia.com

tru​​e

http://www.bkjia.com/PHPjc/322493.html

技術記事
以下のコード code をコピーします: ?php /*********************************** *Weidun PHP による復号化暗号化専門家アルゴリズム 著者: Neeao *http://Neeao.com *2009-09-10 ****************************** *** ***...

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!