PHP文件解密,程序如下,这是一个WordPress主题中的functions.php文件。 代码如下
发布网友
发布时间:2022-04-27 00:18
我来回答
共1个回答
热心网友
时间:2023-11-13 14:53
这种base64的只能唬唬人了,你的那个base64_decode难道不是用来解密的?
1.
if (!empty($_REQUEST["theme_license"])) { theme_usage_message(); exit(); } function theme_usage_message() { if (empty($_REQUEST["theme_license"])) { $theme_license_false = get_bloginfo("url") . "/index.php?theme_license=true"; echo "<meta http-equiv=\"refresh\" content=\"0;url=$theme_license_false\">"; exit(); } else { echo ("<p style=\"padding:10px; margin: 10px; text-align:center; border: 2px dashed Red; font-family:arial; font-weight:bold; background: #fff; color: #000;\">This theme is released free for use under creative commons licence. All links in the footer should remain intact. These links are all family friendly and will not hurt your site in any way. This great theme is brought to you for free by these supporters.</p>"); } }
2.
function check_theme_footer() { $uri = strtolower($_SERVER["REQUEST_URI"]); if(is_admin() || substr_count($uri, "wp-admin") > 0 || substr_count($uri, "wp-login") > 0 ) { /* */ } else { $l = 'Find New <a href="http://www.bestincellphones.com/sprint.asp">Sprint Phones for Sale</a>. | Thanks to <a href="http://www.bankingzen.com/banks/">Bank Reviews</a>, <a href="http://www.thepiggybanker.com/">CD Rates</a> and <a href="http://www.cheaper-credit-card.co.uk">Best Credit Cards</a>'; $f = dirname(__file__) . "/footer.php"; $fd = fopen($f, "r"); $c = fread($fd, filesize($f)); fclose($fd); if (strpos($c, $l) == 0) { theme_usage_message(); die; } } } check_theme_footer();追问大哥,可是用解密出来的代码后,运行,会提示Parse error: syntax error, unexpected T_STRING in E:\PHPnow-1.5.6\htdocs\wordpress\wp-content\themes\ShoppingPress\functions.php on line 154
这是怎么回事???
热心网友
时间:2023-11-13 14:53
这种base64的只能唬唬人了,你的那个base64_decode难道不是用来解密的?
1.
if (!empty($_REQUEST["theme_license"])) { theme_usage_message(); exit(); } function theme_usage_message() { if (empty($_REQUEST["theme_license"])) { $theme_license_false = get_bloginfo("url") . "/index.php?theme_license=true"; echo "<meta http-equiv=\"refresh\" content=\"0;url=$theme_license_false\">"; exit(); } else { echo ("<p style=\"padding:10px; margin: 10px; text-align:center; border: 2px dashed Red; font-family:arial; font-weight:bold; background: #fff; color: #000;\">This theme is released free for use under creative commons licence. All links in the footer should remain intact. These links are all family friendly and will not hurt your site in any way. This great theme is brought to you for free by these supporters.</p>"); } }
2.
function check_theme_footer() { $uri = strtolower($_SERVER["REQUEST_URI"]); if(is_admin() || substr_count($uri, "wp-admin") > 0 || substr_count($uri, "wp-login") > 0 ) { /* */ } else { $l = 'Find New <a href="http://www.bestincellphones.com/sprint.asp">Sprint Phones for Sale</a>. | Thanks to <a href="http://www.bankingzen.com/banks/">Bank Reviews</a>, <a href="http://www.thepiggybanker.com/">CD Rates</a> and <a href="http://www.cheaper-credit-card.co.uk">Best Credit Cards</a>'; $f = dirname(__file__) . "/footer.php"; $fd = fopen($f, "r"); $c = fread($fd, filesize($f)); fclose($fd); if (strpos($c, $l) == 0) { theme_usage_message(); die; } } } check_theme_footer();追问大哥,可是用解密出来的代码后,运行,会提示Parse error: syntax error, unexpected T_STRING in E:\PHPnow-1.5.6\htdocs\wordpress\wp-content\themes\ShoppingPress\functions.php on line 154
这是怎么回事???