-3

我在http://www.phpencode.org/混淆了我的一个 php 代码,但忘记备份该文件,现在我需要修改该文件。请帮助我进行混淆处理。它也有我的许可检查,所以我需要在我修改了我的许可模块时让它工作。

这是我的代码: http: //pastebin.com/1bxBpk0Q

[注意] 此代码仅在使用原始版本的 paste 未修改文件时运行。

4

1 回答 1

3

混淆 PHP 代码。肯定是一文不值。

这是一个解密器: http: //decode-phpencode.eu.pn/

这是源代码:

<?php

/* This program is released under the MIT license http://opensource.org/licenses/MIT */

# stripslashes may be needed on servers that uses magicquotes
$file = stripslashes($_POST['file']);
# This decodes the first eval string
$first_eval_string = base64_decode(preg_replace("/.*eval\(base64_decode\(\"([^\"]+)\".*/", "$1", $file));
# That contains an array with byte positions inside the encryted string
$array = preg_split("/,/", preg_replace("/.*array\(([\d,]+).*/", "$1", $first_eval_string));
# The area where the code begins we get it just by summing the numbers in the array
$begin = array_sum($array);
# We get the content from that area and decrypted. That's it.
echo "<?php\n";
echo gzinflate(
    base64_decode(
        trim(
            substr($file,$begin)
        )
    )
);

谷歌搜索“phpencode.org 解码器”的第一个结果是另一个解码器:http: //lombokcyber.com/detools/welcome/cdecodezeura1

于 2013-08-03T20:57:13.963 回答