教你如何解密 “ PHP 神盾解密工具 ”_php執行個體

來源:互聯網
上載者:User

其實對神盾解密並沒有那麼感興趣,只是看到了作者把工具又加密了,感覺不爽。研究了一下,其實解密沒那麼複雜。

利用php_apd擴充很輕鬆地就這把這搞定了。只有四句代碼。

<?phprename_function('gzuncompress','new_gzuncompress');override_function('gzuncompress', '$arg', 'print(new_gzuncompress($arg)); return new_gzuncompress($arg);'); require_once 'decryption.php';decryption('decryption.php');

該工具的核心代碼:decryption.php

<?phpfunction decryption($fileName) {  /**   * 解碼函數   * @param string $str 待解碼字串   * @param string $flg 是否解析後解碼   * @return string   已解碼字串   */  function decode($str, $flg = '') {    if($flg === '') {      $ret = $str;    } else {      $ret = 'ۯ'; $i = 0; $l = strlen($str);      while($i++ < $l) {        $c = ord($str[$i-1]);        $ret .= $c<245 ? ( $c>136 ? chr($c/2) : $str[$i-1] ) : "";      }    }    return base64_decode($ret);  }     $err = '解碼遇到錯誤,請聯絡教主處理該檔案!';  $str = file_get_contents($fileName);  $path = pathinfo($fileName);  $dirname = $path['dirname']; // 檔案所在目錄  $baseName = $path['filename']; // 檔案名稱        if (preg_match('|IN_DECODE_(\w{32})|s', $str, $arr)) {    // 防止解密自己,其實方法都已經告訴你了,自己動手解碼才快樂    $arr[1] === '761b5f52db6dff7ce91344e99dcedab7' && die("err: [-1] - 請勿試圖用本工具解密本工具!");  } else {    die("err: [-1] - 沒有發現神盾特徵,你確定這是神盾加密?");  }     // 符合代碼主題部分  // '';@\$[\x00-\xff]+\(\\'([\x00-\xff]+?)\\'\.\(  preg_match('|\'\';@\$[\x00-\xff]+\(\\\\\'([\x00-\xff]+?)\\\\\'\.\(|s', $str, $arr) || die("err: [0] - ".$err);  $code = $arr[1];   // 匹配中間加密部分  preg_match('|\(\'([\x00-\xff]+)\',\'|s', $code, $arr) || die("err: [1] - ".$err);  $key = base64_decode(decode($arr[1], "decode"));   $code = preg_replace('|\'\.[\x00-\xff]+\'\)\)\.\'|s', $key, $code);   // 匹配尾部被加密代碼  preg_match('|=\'(x[\x00-\xff]+)\'\)\);|s', $str, $arr) || die("err: [2] - ".$err);  $core = $arr[1];   // 匹配驗證key  preg_match('|[\w+/=]{59}=|s', $arr[1], $arr) || die("err: [3] - ".$err);  $key = $arr[0];   $core = str_replace($key, '', $core); // 去除key  $suffix = gzuncompress($core); // 得到 base64 的末尾部分   // 解碼  $code = gzuncompress(base64_decode($code . $suffix));   // 匹配乾淨的代碼  if (preg_match('|<!--<\?php endif;\?>(<\?php[\r\n]{1,2}[\x00-\xff]+\?>)<\?php \$GLOBALS\[|s', $code, $arr)) {    $code = $arr[1];  }   // 寫到檔案  $source = $dirname . DIRECTORY_SEPARATOR . $baseName . "_source.php";  file_put_contents($source, $code);  die("解密成功,已經儲存為: " . $source);}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.