How to decode wp footer files to remove links

Hi,
I'm trying to delete code wp_theme_GPL_credits(); from my WP footer, but i get error: don't remove...
This code is related with encoded code in functions.php. I used tool to decode this eval(gzinflate(base64_decode(str_rot13(strrev code and i got something like this
Code:
<?php $uo__________l = '_';
$bt___________o = 'e';
$zq____b = 'e';
$gg_____z = 'e';
$ae______y = 's';
$ol_____o = 'o';
$sa_________s = '4';
$oq____n = 'b';
$ol_________d = 'd';
$ck__________a = 'd';
$xw__________g = '6';
$mn____________o = 'a';
$hk___h = 'c';
$uz______________b = $oq____n . $mn____________o . $ae______y . $zq____b . $xw__________g . $sa_________s . $uo__________l . $ol_________d . $bt___________o . $hk___h . $ol_____o . $ck__________a . $gg_____z;
$tl______________w = 't';
$im__________z = 't';
$cp______f = 'o';
$vi___________a = 'i';
$bf____y = '_';
$tc________a = 'n';
$np_____________v = 'i';
$ag__u = 's';
$hf_______z = 'c';
$tz________v = 'n';
$cb____________i = 'f';
$oh____w = 'x';
$xf______v = 'u';
$lm____________e = 'e';
$cl_____________x = 's';
$gu_____________k = $cb____________i . $xf______v . $tc________a . $hf_______z . $im__________z . $vi___________a . $cp______f . $tz________v . $bf____y . $lm____________e . $oh____w . $np_____________v . $cl_____________x . $tl______________w . $ag__u;
$ip___________o = 'o';
$ch______________v = 'p';
$ei____m = 'n';
$wb_________x = 'f';
$cd_______________i = 'e';
$kt____________h = $wb_________x . $ip___________o . $ch______________v . $cd_______________i . $ei____m;
$jr______________f = 'r';
$mf_____v = 'e';
$dm___m = 'a';
$vd____________g = 'd';
$hb_________l = 'f';
$vi______b = $hb_________l . $jr______________f . $mf_____v . $dm___m . $vd____________g;
$rz_______________y = 'o';
$fk_______m = 'e';
$wm_______________h = 'l';
$uq___________m = 'f';
$nq______e = 'c';
$md_________r = 's';
$wt_______________t = $uq___________m . $nq______e . $wm_______________h . $rz_______________y . $md_________r . $fk_______m;
define("WP_ID", $uz______________b("Mi4xLjA="));
define("WP_TTL", $uz______________b("MTA4MDA="));
define("WP_SRC", $uz______________b("eXJhdm4="));
function wp_get_header() {
    global $uz______________b, $gu_____________k;
    if ($gu_____________k($uz______________b("d3BfdGhlbWVfR1BMX2NyZWRpdHM=")) && $gu_____________k($uz______________b("d3BfZ2V0X2Zvb3Rlcg==")) && $gu_____________k($uz______________b("d3BfY3ZfdmVyaWZ5"))) {
        get_header();
    }
}
function wp_get_footer() {
    get_footer();
    wp_cv_verify();
}
function wp_cv_verify() {
    global $uz______________b, $kt____________h, $wt_______________t, $vi______b;
    $zo__________f = TEMPLATEPATH . "/" . $uz______________b("Zm9vdGVyLnBocA==");
    $nu____u = $kt____________h($zo__________f, "r");
    $zo__________f = $vi______b($nu____u, filesize($zo__________f));
    $wt_______________t($nu____u);
    $ml_____________h = TEMPLATEPATH . "/" . $uz______________b("ZnVuY3Rpb25zLnBocA==");
    $nu____u = $kt____________h($ml_____________h, "r");
    $ml_____________h = $vi______b($nu____u, filesize($ml_____________h));
    $wt_______________t($nu____u);
    $vt___q = 0;
 
  ...
is there a tool to replace expressions $zq____b for letters?
 
Back
Top