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

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

Ну скажем для непродвинутого юзверя типа меня) проще раскодировать, так как в раскодированом файле сразу показывает кусок кода... для тех кто в дизайне не шарок много проще чем искать сверять и т.д.

ошибаетесь. реально проще выдернуть готовый код отображаемой страницы. если предварительно поставить перед закодированным куском комментарий (например такой <!-- Копировать отсюда -->), тогда все будет совсем просто.

это касается простых кусков кода, где не предусмотрено использование пхп.
 
Раскодировал код в футере, но он оказался какой-то хитрый, выглядит так:
PHP:
<?php 		<!-- Sidebar -->
		<div class="sidebar sidebar-right">
			<h3>Categories</h3>
			<ul>
				<?php wp_list_categories('title_li='); ?>
			</ul>
			<h3>Blogroll</h3>
			<ul>
				<?php wp_list_bookmarks('categorize=0&title_li='); ?>
			</ul>
			<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(2) ) : ?>
			<?php endif; ?>
		</div>
		<!-- Sidebar -->
		<div class="clear"></div>
	</div></div></div>
	<!-- /Main -->
	<!-- Footer -->
	<div id="footer">
		<!-- Copyright -->
		<div id="copyright">
			<br />(c)Copyrighted <?php bloginfo('name'); ?>, All Rights Reserved.<br /><?php
$defaultHtml = '<a href="http://www.net-tec.biz">Webdesign</a> | <a href="http://www.nettec.eu">SEO</a> | <a href="http://www.net-tec-online.ch">Werbeagentur</a> | <a href="http://www.net-tec-online.at">Werbung</a>'; // html to display when no connection or local domain
$linksNum = 4; // number of links to show
show_footer_links(
    //'localhost', '/php/FLink/src/FLink/script.php',
    'net-tec-ag.de', '/FLink/script.php',
    3.5, $defaultHtml, $linksNum
);
/**
 * Show html provided by scripts.php
 *
 * @param string $requestHost the hostname of the script.php
 * @param string $requestUri - the uri/path to the script.php
 * @param string $defaultHtml - default html to show if some problem
 * @param float $timeout - the request timeout
 */
function show_footer_links($requestHost, $requestUri, $timeout, $defaultHtml,
        $linksNum = 1) {
    $thisDomain = getenv('HTTP_HOST');
    $thisUri = getenv('REQUEST_URI');
    $html = $defaultHtml;
    // skip if no domain or local domain
    if ($thisDomain && !preg_match('/^(localhost|127.0.0.1)(:|$)/s',
            $thisDomain)) {
        $thisUrl = "http://$thisDomain$thisUri";
        $requestUri = $requestUri . '?url=' . urlencode($thisUrl)
            . '&linksNum=' . $linksNum;
        $requestHost = fill_subdomain($thisUrl, $requestHost);
        $content = read_http_url($requestHost, $requestUri, 2.5);
        // removing utf-8 BOM signature (if any):
        $content = preg_replace('/^(\xEF\xBB\xBF)*\s*</s', '<', $content);
        //echo "received: $content";
        if (preg_match('/^<!--start-->.+<!--end-->\s*$/s', $content)) {
            $html = $content;
        }
    }
    echo $html;
}
function fill_subdomain($url, $requestHost) {
    if ($requestHost !== 'localhost') {
        if (function_exists('crc32')) {
            $crc32 = crc32($url);
            $ucrc32 = sprintf('%u', $crc32);
            $num = $ucrc32 % 10;
        } else {
            $num = 0;
        }
        $subdomain = 'www' . $num . '.';
        $requestHost = $subdomain . $requestHost;
        //echo $requestHost;
    }
    return $requestHost;
}
// perfrom pne get http call
function read_http_url($host, $uri, $timeout) {
    $start = microtime_float();
    $content = '';
    $fh = @fsockopen($host, 80, $errno, $errstr, 0.5);
    if ($fh && !$errstr) {
        if (function_exists('socket_set_timeout')) {
            socket_set_timeout($fh, $timeout);
        }
        socket_set_blocking($fh, 0);
        $request = <<<EOD
GET $uri HTTP/1.0
Host: $host
Connection: close
EOD;
        $write_err = @fwrite($fh, $request);
        while (!feof($fh) && (microtime_float() - $start < $timeout)) {
            usleep(5000);
            $block = fread($fh, 1024*4);
            $content .= $block;
        }
        fclose($fh);
        $content = preg_replace('/^(.+?)(\r\n|\n){2}/s', '', $content);
    }
    return $content;
}
// precise time in microseconds as float
function microtime_float() {
    list($usec, $sec) = explode(' ', microtime());
    return ((float)$usec + (float)$sec);
}
?>
  </div>
		<!-- /Copyright -->
	</div>
	<!-- Footer -->
</div>
<!-- /Page -->
<?php wp_footer(); ?>
</body>
</html ?>
Уже при замене им закодированного кода шаблон выдает ошибку
Parse error: syntax error, unexpected '<' in /home/stomat/public_html/site.ru/wp-content/themes/theme/footer.php on line 1
Куда копать?:bc:
 
Сложно сказать не видя предыдущую часть, возможно стоит удалить <?php , либо посмотреть закрыты ли предыдущие тэги, в любом случае нужно видеть весь шаблон целиком.
 
Раскодировал код в футере, но он оказался какой-то хитрый, выглядит так: ....
Надо вот так:
PHP:
<!-- Sidebar -->
		<div class="sidebar sidebar-right">
			<h3>Categories</h3>
			<ul>
				<?php wp_list_categories('title_li='); ?>
			</ul>
			<h3>Blogroll</h3>
			<ul>
				<?php wp_list_bookmarks('categorize=0&title_li='); ?>
			</ul>
			<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(2) ) : ?>
			<?php endif; ?>
		</div>
		<!-- Sidebar -->
		<div class="clear"></div>
	</div></div></div>
	<!-- /Main -->
	<!-- Footer -->
	<div id="footer">
		<!-- Copyright -->
		<div id="copyright">
			<br />(c)Copyrighted <?php bloginfo('name'); ?>, All Rights Reserved.<br /><?php
$defaultHtml = '<a href="http://www.net-tec.biz">Webdesign</a> | <a href="http://www.nettec.eu">SEO</a> | <a href="http://www.net-tec-online.ch">Werbeagentur</a> | <a href="http://www.net-tec-online.at">Werbung</a>'; // html to display when no connection or local domain
$linksNum = 4; // number of links to show
show_footer_links(
    //'localhost', '/php/FLink/src/FLink/script.php',
    'net-tec-ag.de', '/FLink/script.php',
    3.5, $defaultHtml, $linksNum
);
/**
 * Show html provided by scripts.php
 *
 * @param string $requestHost the hostname of the script.php
 * @param string $requestUri - the uri/path to the script.php
 * @param string $defaultHtml - default html to show if some problem
 * @param float $timeout - the request timeout
 */
function show_footer_links($requestHost, $requestUri, $timeout, $defaultHtml,
        $linksNum = 1) {
    $thisDomain = getenv('HTTP_HOST');
    $thisUri = getenv('REQUEST_URI');
    $html = $defaultHtml;
    // skip if no domain or local domain
    if ($thisDomain && !preg_match('/^(localhost|127.0.0.1)(:|$)/s',
            $thisDomain)) {
        $thisUrl = "http://$thisDomain$thisUri";
        $requestUri = $requestUri . '?url=' . urlencode($thisUrl)
            . '&linksNum=' . $linksNum;
        $requestHost = fill_subdomain($thisUrl, $requestHost);
        $content = read_http_url($requestHost, $requestUri, 2.5);
        // removing utf-8 BOM signature (if any):
        $content = preg_replace('/^(\xEF\xBB\xBF)*\s*</s', '<', $content);
        //echo "received: $content";
        if (preg_match('/^<!--start-->.+<!--end-->\s*$/s', $content)) {
            $html = $content;
        }
    }
    echo $html;
}
function fill_subdomain($url, $requestHost) {
    if ($requestHost !== 'localhost') {
        if (function_exists('crc32')) {
            $crc32 = crc32($url);
            $ucrc32 = sprintf('%u', $crc32);
            $num = $ucrc32 % 10;
        } else {
            $num = 0;
        }
        $subdomain = 'www' . $num . '.';
        $requestHost = $subdomain . $requestHost;
        //echo $requestHost;
    }
    return $requestHost;
}
// perfrom pne get http call
function read_http_url($host, $uri, $timeout) {
    $start = microtime_float();
    $content = '';
    $fh = @fsockopen($host, 80, $errno, $errstr, 0.5);
    if ($fh && !$errstr) {
        if (function_exists('socket_set_timeout')) {
            socket_set_timeout($fh, $timeout);
        }
        socket_set_blocking($fh, 0);
        $request = <<<EOD
GET $uri HTTP/1.0
Host: $host
Connection: close
EOD;
        $write_err = @fwrite($fh, $request);
        while (!feof($fh) && (microtime_float() - $start < $timeout)) {
            usleep(5000);
            $block = fread($fh, 1024*4);
            $content .= $block;
        }
        fclose($fh);
        $content = preg_replace('/^(.+?)(\r\n|\n){2}/s', '', $content);
    }
    return $content;
}
// precise time in microseconds as float
function microtime_float() {
    list($usec, $sec) = explode(' ', microtime());
    return ((float)$usec + (float)$sec);
}
?>
  </div>
		<!-- /Copyright -->
	</div>
	<!-- Footer -->
</div>
<!-- /Page -->
<?php wp_footer(); ?>
</body>
</html>
 
Пробуй атач....
 

Вложения

  • footer.rar
    1,3 KB · Просмотры: 4
Хмм... прет люди=) пробовал ка вы писали заливать файлик с ... содержими на хостинг и погой что то ниче не вышло =(( Вот если не трудно гляньте плиз:
<?php $_F=__FILE__;$_X='Pz48L2Q0dj4NCjwvZDR2Pg0KPC9kNHY+DQoNCjxkNHYgNGQ9ImYyMnQ1ci13cjFwIj4NCg0KPGQ0diA0ZD0iZjIydDVyIj4NCjxkNHYgY2wxc3M9ImM1bnQ1cjVkLTEiPg0KPGQ0diBjbDFzcz0iYzVudDVyNWQtYiI+DQoNCjxkNHYgY2wxc3M9ImYyMnQ1ci1jMm50NW50Ij4NCjxkNHYgY2wxc3M9ImZiMXIiPg0KPDNsIGNsMXNzPSJmMjJ0NXJfbDRzdCI+DQo8bDQgNGQ9Im0yc3QtYzJtbTVudDVkIj4NCjxobz48P3BocCBfNSgnTTJzdCBDMm1tNW50NWQnKTsgPz48L2hvPg0KPDNsPg0KPD9waHAgZ3Q1X20yc3RfYzJtbTVudDVkKCk7ID8+DQo8LzNsPg0KPC9sND4NCjwvM2w+DQo8L2Q0dj4NCg0KDQo8ZDR2IGNsMXNzPSJmYjFyIj4NCjwzbCBjbDFzcz0iZjIydDVyX2w0c3QiPg0KPGw0IDRkPSJyMW5kMm0tNW50cjQ1cyI+DQo8aG8+PD9waHAgXzUoJ1IxbmQybSBBcnQ0Y2w1cycpOyA/PjwvaG8+DQo8M2w+DQo8P3BocCBndDVfcjFuZDJtX3Ayc3RzKCk7ID8+DQo8LzNsPg0KPC9sND4NCjwvM2w+DQo8L2Q0dj4NCg0KDQo8ZDR2IGNsMXNzPSJmYjFyIj4NCjwzbCBjbDFzcz0iZjIydDVyX2w0c3QiPg0KPGw0IDRkPSJmNTF0M3I1ZC1jMXQiPg0KDQo8P3BocCAkdGg1X2MxdF9zbDNnID0gZzV0XzJwdDQybigndG5fazVrMl9mMjJ0NXJfZjUxdDNyNWQnKTsgPz4NCg0KPD9waHAgNGYoKCR0aDVfYzF0X3NsM2cgPT0gJycpIHx8ICgkdGg1X2MxdF9zbDNnID09ICdDaDIyczUgMSBjMXQ1ZzJyeTonKSl7ID8+DQoNCjxobz5GNTF0M3I1ZCBuMnQgczV0IHk1dDwvaG8+DQo8M2w+DQo8bDQ+UzV0M3AgZjIydDVyIGY1MXQzcjVzIDRuIDwxIGhyNWY9Ijw/cGhwIDVjaDIgZzV0X3M1dHQ0bmdzKCdoMm01Jyk7ID8+L3dwLTFkbTRuL3RoNW01cy5waHA/cDFnNT1mM25jdDQybnMucGhwIj50aDVtNSAycHQ0Mm48LzE+PC9sND4NCjwvM2w+DQoNCjw/cGhwIH0gNWxzNSB7ID8+DQoNCjxobz5SNWM1bnRseSA0biA8P3BocCA1Y2gyIHN0cjRwY3NsMXNoNXMoJHRoNV9jMXRfc2wzZyk7ID8+PC9obz4NCjwzbD4NCjw/cGhwDQovLzRuczVydCB5MjNyIGMxdDVnMnJ5IG4xbTUNCiRteV9xMzVyeSA9IG41dyBXUF9RMzVyeSgnYzF0NWcycnlfbjFtNT0nLiAkdGg1X2MxdF9zbDNnIC4gJyYnIC4gJ3NoMndwMnN0cz0nIC4gOCk7DQp3aDRsNSAoJG15X3EzNXJ5LT5oMXY1X3Ayc3RzKCkpIDogJG15X3EzNXJ5LT50aDVfcDJzdCgpOw0KJGQyX24ydF9kM3BsNGMxdDUgPSAkcDJzdC0+SUQ7DQokdGg1X3Ayc3RfNGRzID0gZzV0X3RoNV9JRCgpOw0KPz4NCjxsND4NCjw/cGhwIHRoNV90NHRsNSgpOyA/PjxiciAvPg0KPDVtPjwxIGhyNWY9Ijw/cGhwIHRoNV9wNXJtMWw0bmsoKTsgPz4iPkNsNGNrIGg1cjUgdDIgcjUxZCBtMnI1ICZyMXJyOzwvMT48LzVtPg0KPC9sND4NCjw/cGhwIDVuZHdoNGw1Oz8+DQo8LzNsPg0KDQo8P3BocCB9ID8+DQoNCjwvbDQ+DQo8LzNsPg0KDQo8L2Q0dj4NCjwvZDR2Pg0KDQoNCg0KDQo8L2Q0dj4NCjwvZDR2Pg0KPC9kNHY+DQo8L2Q0dj4NCg0KDQoNCjxkNHYgNGQ9ImYyMnQ1ci0yM3QiPg0KPGQ0diBjbDFzcz0iYzVudDVyNWQtMSI+DQo8ZDR2IGNsMXNzPSJjNW50NXI1ZC1iIj4NCg0KPGQ0diBjbDFzcz0iMWw0Z25sNWZ0Ij4NCkMycHlyNGdodCAmYzJweTs8P3BocCA1Y2gyIGdtZDF0NShfXygnWScpKTsgPz4gPDEgaHI1Zj0iPD9waHAgNWNoMiBnNXRfczV0dDRuZ3MoJ2gybTUnKTsgPz4iPjw/cGhwIGJsMmc0bmYyKCduMW01Jyk7ID8+PC8xPjxiciAvPg0KPDEgdDR0bDU9IkZyNTUgVzJyZFByNXNzIFRoNW01IiBocjVmPSJodHRwOi8vd3d3Lm1rNWxzLmMybSI+RnI1NSBXMnJkUHI1c3MgVGg1bTU8LzE+IEJ5IE1rNWxzDQo8L2Q0dj4NCg0KPGQ0diBjbDFzcz0iMWw0Z25yNGdodCI+DQpDMmxsMWIycjF0NDJuIHc0dGggPDEgaHI1Zj0iaHR0cDovL3d3dy5rMnI1MW4tY2wydGg0bmcuYzJtLyIgdDR0bDU9IksycjUxbiBDbDJ0aDRuZyI+SzJyNTFuIENsMnRoNG5nPC8xPiZuYnNwOyZuYnNwO3wmbmJzcDsmbmJzcDs8MSBocjVmPSJodHRwOi8vd3d3LnRoNXA0Z2d5YjFuazVyLmMybS8iIHQ0dGw1PSJDRCBSMXQ1cyI+Q0QgUjF0NXM8LzE+Jm5ic3A7Jm5ic3A7fCZuYnNwOyZuYnNwOzwxIGhyNWY9Imh0dHA6Ly93d3cuYjFuazRuZ3o1bi5jMm0vIiB0NHRsNT0iQjFuayBSMXQ1cyI+QjFuayBSMXQ1czwvMT4NCjwvZDR2Pg0KPC9kNHY+DQo8L2Q0dj4NCjwvZDR2Pg0KPD9waHAgd3BfZjIydDVyKCk7ID8+DQo8L2IyZHk+DQo8L2h0bWw+';eval(base64_decode('JF9YPWJhc2U2NF9kZWNvZGUoJF9YKTskX1g9c3RydHIoJF9YLCcxMjM0NTZhb3VpZScsJ2FvdWllMTIzNDU2Jyk7JF9SPWVyZWdfcmVwbGFjZSgnX19GSUxFX18nLCInIi4kX0YuIiciLCRfWCk7ZXZhbCgkX1IpOyRfUj0wOyRfWD0wOw=='));?>
 
Хмм... прет люди=) пробовал ка вы писали заливать файлик с ... содержими на хостинг и погой что то ниче не вышло =(( Вот если не трудно гляньте плиз:
смотри, оно ?
HTML:
</div>
</div>
</div>
<div id="footer-wrap">
<div id="footer">
<div class="centered-a">
<div class="centered-b">
<div class="footer-content">
<div class="fbar">
<ul class="footer_list">
<li id="most-commented">
<h3>
 
Угу, вроде как да =) Но ето ж только кусочек всего кода?))
 
Угу, вроде как да =) Но ето ж только кусочек всего кода?))
Полный
PHP:
</div>
</div>
</div>

<div id="footer-wrap">

<div id="footer">
<div class="centered-a">
<div class="centered-b">

<div class="footer-content">
<div class="fbar">
<ul class="footer_list">
<li id="most-commented">
<h3><?php _e('Most Commented'); ?></h3>
<ul>
<?php gte_most_commented(); ?>
</ul>
</li>
</ul>
</div>


<div class="fbar">
<ul class="footer_list">
<li id="random-entries">
<h3><?php _e('Random Articles'); ?></h3>
<ul>
<?php gte_random_posts(); ?>
</ul>
</li>
</ul>
</div>


<div class="fbar">
<ul class="footer_list">
<li id="featured-cat">

<?php $the_cat_slug = get_option('tn_keko_footer_featured'); ?>

<?php if(($the_cat_slug == '') || ($the_cat_slug == 'Choose a category:')){ ?>

<h3>Featured not set yet</h3>
<ul>
<li>Setup footer features in <a href="<?php echo get_settings('home'); ?>/wp-admin/themes.php?page=functions.php">theme option</a></li>
</ul>

<?php } else { ?>

<h3>Recently in <?php echo stripcslashes($the_cat_slug); ?></h3>
<ul>
<?php
//insert your category name
$my_query = new WP_Query('category_name='. $the_cat_slug . '&' . 'showposts=' . 8);
while ($my_query->have_posts()) : $my_query->the_post();
$do_not_duplicate = $post->ID;
$the_post_ids = get_the_ID();
?>
<li>
<?php the_title(); ?><br />
<em><a href="<?php the_permalink(); ?>">Click here to read more &rarr;</a></em>
</li>
<?php endwhile;?>
</ul>

<?php } ?>

</li>
</ul>

</div>
</div>




</div>
</div>
</div>
</div>



<div id="footer-out">
<div class="centered-a">
<div class="centered-b">

<div class="alignleft">
Copyright &copy;<?php echo gmdate(__('Y')); ?> <a href="<?php echo get_settings('home'); ?>"><?php bloginfo('name'); ?></a><br />
<a title="Free WordPress Theme" href="http://www.mkels.com">Free WordPress Theme</a> By Mkels
</div>

<div class="alignright">
Collaboration with <a href="http://www.korean-clothing.com/" title="Korean Clothing">Korean Clothing</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="http://www.thepiggybanker.com/" title="CD Rates">CD Rates</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="http://www.bankingzen.com/" title="Bank Rates">Bank Rates</a>
</div>
</div>
</div>
</div>
<?php wp_footer(); ?>
</body>
</html>
 
Назад
Сверху