• DONATE to NULLED!
    Вы можете помочь Форуму и команде, поддержать финансово.
    starwanderer - модератор этого раздела будет Вам благодарен!

Помощь Удаление закодированного копирайта из шаблонов Wordpress.

искать eval(base64_encode(....)) и менять eval на echo - тогда он выведет на экран закодированное содержимое - прочитай внимательно топик выше
 
искать eval(base64_encode(....)) и менять eval на echo - тогда он выведет на экран закодированное содержимое - прочитай внимательно топик выше
Заменил и вот что вывело:

function check_footer(){ $l='Wordpress Theme designed by Mobel Shop. Code by Free Wordpress Themes | Custom Wordpress Design | Beauty 101.'; $f=dirname(__FILE__).'/footer.php';$fd=fopen($f,'r'); $c=fread($fd,filesize($f));fclose($fd); if(strpos($c,$l)==0){echo 'This theme is released under creative commons licence, all links in the footer should remain intact';die;}}check_footer(); This theme is released under creative commons licence, all links in the footer should remain intact
 
это и есть то, что тебе нужно вставить в шаблон вместо строки с eval
Там изначально eval было в 2-х местах:
Код:
<?php eval(str_rot13('shapgvba purpx_sbbgre(){
$y=\'<n uers="uggc://jjj.serr-jbeqcerff-gurzr.arg">Jbeqcerff Gurzr</n>
qrfvtarq ol
<n uers="uggc://jjj.iynqba.qr">Zbory Fubc</n>.
Pbqr ol
<n uers="uggc://jjj.gurcvzccnagure.pbz">Serr Jbeqcerff Gurzrf</n> | 
<n uers="uggc://jjj.jbeqcerff-fbyhgvbaf.arg">Phfgbz Jbeqcerff Qrfvta</n> | 
<n uers="uggc://ornhgl101.bet">Ornhgl 101</n>.\';
$s=qveanzr(__SVYR__).\'/sbbgre.cuc\';$sq=sbcra($s,\'e\');
$p=sernq($sq,svyrfvmr($s));spybfr($sq);
vs(fgecbf($p,$y)==0){rpub \'Guvf gurzr vf eryrnfrq haqre perngvir pbzzbaf yvprapr, nyy yvaxf va gur sbbgre fubhyq erznva vagnpg\';qvr;}}purpx_sbbgre();'));?>
<?php eval(str_rot13('shapgvba purpx_urnqre(){vs(!(shapgvba_rkvfgf("purpx_shapgvbaf")&&shapgvba_rkvfgf("purpx_s_sbbgre"))){rpub(\'Guvf gurzr vf eryrnfrq haqre perngvir pbzzbaf yvprapr, nyy yvaxf va gur sbbgre fubhyq erznva vagnpg\');qvr;}}'));?>
Я поменял eval на echo. Появилось сообщение:
Код:
function check_footer(){ $l='Wordpress Theme designed by Mobel Shop. Code by Free Wordpress Themes | Custom Wordpress Design | Beauty 101.'; $f=dirname(__FILE__).'/footer.php';$fd=fopen($f,'r'); $c=fread($fd,filesize($f));fclose($fd); if(strpos($c,$l)==0){echo 'This theme is released under creative commons licence, all links in the footer should remain intact';die;}}check_footer();function check_header(){if(!(function_exists("check_functions")&&function_exists("check_f_footer"))){echo('This theme is released under creative commons licence, all links in the footer should remain intact');die;}} This theme is released under creative commons licence, all links in the footer should remain intact
Я его скопировал и вставил вместо строки с eval вот так:
Код:
<?php echo(function check_footer(){ $l='Wordpress Theme designed by Mobel Shop. Code by Free Wordpress Themes | Custom Wordpress Design | Beauty 101.'; $f=dirname(__FILE__).'/footer.php';$fd=fopen($f,'r'); $c=fread($fd,filesize($f));fclose($fd); if(strpos($c,$l)==0){echo 'This theme is released under creative commons licence, all links in the footer should remain intact';die;}}check_footer();function check_header(){if(!(function_exists("check_functions")&&function_exists("check_f_footer"))){echo('This theme is released under creative commons licence, all links in the footer should remain intact');die;}} This theme is released under creative commons licence, all links in the footer should remain intact);?>
В результате выдает:
Код:
Parse error: parse error, expecting `'('' in C:\Program Files\EasyPHP5.3.0\www\seoformat\wp-content\themes\skin_care_theme\functions.php on line 595
Не пойму, где там пропущена скобка?
 
когда копируешь вместо eval'a то уже echo не нужно, вставляй начиная сразу с function
 
когда копируешь вместо eval'a то уже echo не нужно, вставляй начиная сразу с function

Вот так?

Код:
<?php (function check_footer(){ $l='Wordpress Theme designed by Mobel Shop. Code by Free Wordpress Themes | Custom Wordpress Design | Beauty 101.'; $f=dirname(__FILE__).'/footer.php';$fd=fopen($f,'r'); $c=fread($fd,filesize($f));fclose($fd); if(strpos($c,$l)==0){echo 'This theme is released under creative commons licence, all links in the footer should remain intact';die;}}check_footer();function check_header(){if(!(function_exists("check_functions")&&function_exists("check_f_footer"))){echo('This theme is released under creative commons licence, all links in the footer should remain intact');die;}} This theme is released under creative commons licence, all links in the footer should remain intact);?>

Если так, то всё равно ошибка:

Код:
Parse error: parse error, expecting `'('' in C:\Program Files\EasyPHP5.3.0\www\site\wp-content\themes\skin_care_theme\functions.php on line 595

А 595 строка - это и есть вот этот код, который я привел выше...
 
справочник php вам в помощь, гадая как верно записать код вы еще кучу зря времени потратите, вот зачем вам скобка перед function?
 
справочник php вам в помощь, гадая как верно записать код вы еще кучу зря времени потратите, вот зачем вам скобка перед function?

Убрал скобку:

Код:
<?php 
function check_footer(){ $l='Wordpress Theme designed by Mobel Shop. Code by Free Wordpress Themes | Custom Wordpress Design | Beauty 101.'; $f=dirname(__FILE__).'/footer.php';$fd=fopen($f,'r'); $c=fread($fd,filesize($f));fclose($fd); if(strpos($c,$l)==0){echo 'This theme is released under creative commons licence, all links in the footer should remain intact';die;}}check_footer();function check_header(){if(!(function_exists("check_functions")&&function_exists("check_f_footer"))){echo('This theme is released under creative commons licence, all links in the footer should remain intact');die;}} This theme is released under creative commons licence, all links in the footer should remain intact 
?>

Всё равно ошибка:

Parse error: parse error in C:\Program Files\EasyPHP5.3.0\www\site\wp-content\themes\skin_care_theme\functions.php on line 596

Кто может подсказать всё-таки?
 
Назад
Сверху