base64_decode 解密

无聊呀,老是看见有无聊的人用PHP来加密。

其实PHP是无法加密的,只要把eval替换为exit,运行一次就能看见源代码,不过现在无聊的人都很变态,比如这个代码就被反复“加密”了20次~

“解密”后的代码如下:

<?php

/* please do not edit anything here */

include("footer_content.php");

echo '<div id="footcopy" style="background-image:url('.get_bloginfo('template_directory').'/images/footer_copy.gif);height:28px;display:block;color:#888888;text-align:center;padding-top:15px;">

<div class="onethousand_wrap">

<a href="/solutions/reseller-hosting.php">Reseller Hosting</a> from the #1 <a href="/">Web Hosting Provider</a> - HostNexus.

</div>

</div>';

$zenverse_global_google_analytics = get_option('zenverse_global_google_analytics');

if ($zenverse_global_google_analytics != '') { echo stripslashes($zenverse_global_google_analytics); }

wp_footer();

echo '</body></html>';

>