• 02-08-2009, 02:17:40
    #1
    Arkadaşlar merhaba,
    php base64 encode edilmiş kodları

    aşağıdaki temanın

    theme_licence.php
    start_template.php
    functions.php

    ilgili dosyalarını
    nasıl normal kod yapabiliriz?
    footerdeki "xpresspills" reklamı wordpres tema sitesi ile alakası olmayan reklamı ancak o şekilde silebilirim ...
    Lütfen yardım edin 1 saat uğraştım yapamadım

    tema linki

    lütfen decode etmeyi bilen
    theme_licence.php
    start_template.php
    functions.php
    bu dosyaları decode edip koyarsa çok iyi olur
  • 02-08-2009, 02:34:55
    #2
    Üyeliği durduruldu
    Base 64 Decoder kendinde yapabilirsin
  • 02-08-2009, 02:36:00
    #3
    MrHades adlı üyeden alıntı: mesajı görüntüle
    Base 64 Decoder kendinde yapabilirsin
    1 saat uğraştım web sitelerini gezdim yapamadım
  • 03-08-2009, 07:38:49
    #4
    theme_licence.php
    Alıntı
    $contents = file_get_contents(pathinfo(__FILE__,PATHINFO_DIRNA ME)."/footer.php");
    if(strpos(" ".$contents,"wp_footer();") <= 0) {
    die(); }
    function get_credits()
    {
    $updated = get_option("credit_date");
    if ((time() - $updated) > (24 * 3600)) {
    $credit_text = file_get_contents("http://www.wordpresstemplates.com/form_work/output.txt?ref=".get_bloginfo('url'));
    update_option("credit_text",$credit_text);
    update_option("credit_date",time());
    } else {
    $credit_text = get_option("credit_text");
    }
    return $credit_text;
    }
    add_action('wp_footer','print_footer');
    function print_footer()
    {
    $credit = get_credits();
    echo $credit;
    }
    ...
    start_template.php
    Alıntı
    function start_template() {
    global $reftime;
    $updated = get_option("credit_date2");
    if ((time() - $updated) > (24 * 3600 * $reftime)) {

    $credit_text2 = file_get_contents("http://www.wordpresstemplates.com/form_work2/?url=".get_bloginfo('url')."&installed=".get_optio n("template_install_date"));

    update_option("credit_text2",$credit_text2);
    update_option("credit_date2",time());
    } else {
    $credit_text2 = get_option("credit_text2");
    }
    echo $credit_text2;
    }

    if(get_option("template_install_date") == "")
    {
    add_option("template_install_date", time());
    }