Bravo List
Register
Go Back   > Bravo List > Source Code > Archived Trackers > Template Shares
Reply
Thread Tools
  #1  
Old 10th July 2008, 16:46
mrdecoder mrdecoder is offline
VIP
 
Join Date: May 2008
Netherlands
Posts: 107
Default nulling 5.1 !!
as some of you know, we have some trouble on the nulling bit/decode

it seems that xam used this last update only for security
he has done stuff like
made file encoded some stuff inside it in base64
then he encoded that to ioncube and some files are also again encoded to base64 again
and so on
he is realy trying to make it hard

i also got a pm from security team from xam
with stuff like legal actions and things like that in it
i realy dont care about this
mainly because he is also doing wrong by law
he uses mods from other people without leaving copyright in of the original builders
and he secures a script that supose to be opensource

so im asking help on decoders

to help me decode some files
there are also some files still in ioncube inside

i found 1 sofar
to decode this its gonna cost me 5$ so please donate some

if any of you wanna help more then add me in msn
mrdecoder@x-releases.org
only use this for msn not for e-mail

greets from mrdecoder
Attached Files
File Type: rar include.rar (33.0 KB, 92 views)
Reply With Quote
  #2  
Old 10th July 2008, 22:00
djlee's Avatar
djlee djlee is offline
Senior Member
 
Join Date: Mar 2008
Posts: 183
Default Re: nulling 5.1 !!
i dont have any ioncube decoding software and i refuse to help pay for decoding of a source i dont even think should be in circulation anyway. But i dont mind using some free cpu cycles to aid in pissing off xam. So if you need any extra CPU power drop us a PM
Reply With Quote
  #3  
Old 10th July 2008, 22:46
reptileking reptileking is offline
Senior Member
 
Join Date: Jul 2008
Posts: 34
Default Re: nulling 5.1 !!
i dont know if this is anyhelp but i read the best thing to use to decode ioncube files is Zend-Decoder not to sure if that is any help gusy just trying help
Reply With Quote
  #4  
Old 10th July 2008, 23:53
mrdecoder mrdecoder is offline
VIP
 
Join Date: May 2008
Netherlands
Posts: 107
Default Re: nulling 5.1 !!
no the ioncube is fine only need one file to decode thats arround 5$
i just need some good decoders who know base64 and stuff like that
Reply With Quote
  #5  
Old 11th July 2008, 00:26
reptileking reptileking is offline
Senior Member
 
Join Date: Jul 2008
Posts: 34
Default Re: nulling 5.1 !!
np was just trying help u do great stuff anwyays :>
Reply With Quote
  #6  
Old 12th July 2008, 05:56
EViL.GENiUS EViL.GENiUS is offline
Member
 
Join Date: Jun 2008
Posts: 6
Default Re: nulling 5.1 !!
xam's encoding is similiar to this output

Code:
<?php
define('VERSION', 'PHP Basic Encoder v.0.2 by xam');

// Bu Encoder ornek olmasi amaciyla xam tarafindan hazirlanmistir. unutmayin kirilmasi cok kolay bir yontemdir ama 10 kisiden 3'unu kodlari degistirmekten alikoyar, 2'sini ugrastirir, kalanlari guldurur :) Kolay gelsin

$hata = $kod = '';
$action = isset($_POST['action']) ? $_POST['action'] : '';
$hatalar = array(
    1 => 'Lutfen sifrelenmesini istediginiz kod blogunu giriniz.',
    2 => 'Islem yapilamiyor.. Bu kod zaten gizlenmis..'
);

function rastgele($length = 10)
{
    $set = array("a","A","b","B","c","C","d","D","e","E","f","F","g","G","h","H","i","I","j","J","k","K","l","L","m","M","n","N","o","O","p","P","q","Q","r","R","s","S","t","T","u","U","v","V","w","W","x","X","y","Y","z","Z","1","2","3","4","5","6","7","8","9");
    $str = '';
    for($i = 1; $i <= $length; $i++)
    {
        $ch = rand(0, count($set)-1);
        $str .= $set[$ch];
    }
    return $str;
}

function gizle($kod)
{
    $r = base64_encode(gzdeflate($kod));
    $r1 = rastgele();
    $r2 = rastgele();
    $r3 = rastgele();
    return '<?php $'.$r1.'=strrev("etalfnizg");$'.$r2.'="'.$r.'";$'.$r3.'=strrev("edoced_46esab");eval($'.$r1.'($'.$r3.'($'.$r2.'))); ?>';
}

if ($action == 'gizle')
{
    $kod = isset($_POST['kod']) ? trim($_POST['kod']) : '';
    if (empty($kod))
    {
        $hata = $hatalar[1];
    }
    elseif (strstr($kod, 'strrev("etalfnizg")') || strstr($kod, 'strrev("edoced_46esab")'))
    {
        $hata = $hatalar[2];
    }
    elseif (strstr($kod, '<?php') || strstr($kod, '<?'))
    {
        $regex = '#<\?php(.*?)\?>#si';
        preg_match_all($regex, $kod, $results, PREG_SET_ORDER);
        foreach ($results as $left => $right)
        {
            $tmp .= gizle($right[1]);
        }
        $kod = $tmp;
    }
    else
    {
        $kod = gizle($kod);
    }
}

if (!empty($hata))
{
    echo '<script type="text/javascript">alert("'.$hata.'")</script>';
}
$title = (!empty($hata) || empty($action) ? '<span class="style1">Gizlenecek Kod blogu:</span>' : '<span class="style2">Gizlenen Kod Blogu:</span>');
$taclass = (!empty($hata) || empty($action) ? 'style2' : 'style1');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title><?php echo VERSION; ?></title>
        <style type="text/css">
            <!--
            body,td,th {
                font-family: Verdana, Arial, Helvetica, sans-serif;
            }
            .style1 {
                color: #990000;
                font-weight: bold;
            }
            .style2 {color: #009900}
            -->
        </style>
    </head>
    <body>
            <form method="POST" action="<?php echo $_SERVER['SCRIPT_NAME']; ?>">
            <input type="hidden" name="action" value="gizle">
            <?php echo $title; ?>

            <textarea name="kod" cols="100" rows="30" wrap="off" class="<?php echo $taclass; ?>"><?php echo $kod; ?></textarea>
            

            <input type="submit" value="Sifrele">
        </form>
    </body>
</html>
Reply With Quote
Reply

Tags
51 , nulling


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
TSSE 5.1 funds-raising (for nulling and decoding)!!! mrdecoder Template Shares 36 9th July 2008 21:37



All times are GMT +2. The time now is 17:19. vBulletin skin by ForumMonkeys. Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.