Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Downloads (http://www.bvlist.com/forumdisplay.php?f=16)
-   -   Template Shares SE 7.2 [OBFUSCATED - NOT NULLED] (http://www.bvlist.com/showthread.php?t=6786)

benik 22nd July 2011 13:36

Template Shares SE 7.2 [OBFUSCATED - NOT NULLED]
 
1 Attachment(s)
attention

Attention


the source has been DECODED but it`s NOT NULLED which means it can`t be used yet !

ENCODED version: http://www.bvlist.com/downloads/6680...2-encoded.html





Hello everyone,
I have try to decode TSSE 7.2 and I think i done it :)

Would anyone take a look at it, because I'm not very good at removing the license :D

x360zone 22nd July 2011 13:46

?
 
if you have done it right welldone :drink:

Fynnon 22nd July 2011 15:33

so anyone installed it yet?
is it working or not?

Muikku 22nd July 2011 15:40

If that works can someone nulled that??

zeppyk 22nd July 2011 16:35

I think is not well decoded. It has some errors in script.

benik 22nd July 2011 16:52

There are some errors, because in some files these lines are present.
By example messages.php:

PHP Code:

if (sql_query ("DELETE FROM messages WHERE receiver = '{$ userid}' AND location = '$ {mailbox}' AND unread = 'no'"))
{
sqlerr ("C: \ \ Users \ \ Administrator \ \ Desktop \ \ DeZender.DeIoncuber.17.07.2011 \ \ _decoded \ \ messages.php ', 320);


I do not know how to correct it, maybe some else knows it?

P.S. As far I have checked, all files are decoded with no encodings left.
I downloaded the encoded package from Bravolist here: http://www.bvlist.com/other-download...;encoded].html

AlaminT 22nd July 2011 17:03

looks like some files from 3.1 even era

wMan 22nd July 2011 17:13

is it or is it the 7.2 will it work or not if it is the 7.2 it was quick

darka001 22nd July 2011 17:26

its 7.2 but it wont work, where are a lot php errors and some files are empty (stafcp/check_login.php)

excellent job, thanks :ok:

yordanov 22nd July 2011 17:52

wtf where is decoded version?

almost all files should be re-coded in the attached file in order to get a stable & working version.. a few months required for this..

ffs wasted time..

zero 22nd July 2011 17:58

error
 
I will not work any way.
because RM, witch used on decoding dumps obfuscated codes (and vairables)

after decoding has many syntax erros and missed all vairables. RM is not best choice for decoding. It is not better that encoded script.

fireman 23rd July 2011 07:38

Quote:

Originally Posted by yordanov (Post 29169)
wtf where is decoded version?

almost all files should be re-coded in the attached file in order to get a stable & working version.. a few months required for this..

ffs wasted time..

wasted time i think not in my eyes this script should be license and callback free

Would you pay the license fee see xam could take and get angry with you and drop your database and make your site useless the reason people null it is to make it free for all which is what it should be:lol:

also the rm decoder is not completely useless it decodes many error free files

PHP Code:

<?php

class BDecode
{

    public function 
numberdecode$wholefile$start )
    {
        
$ret[0] = 0;
        
$offset $start;
        
$negative FALSE;
        if ( 
$wholefile[$offset] == "-" )
        {
            
$negative TRUE;
            ++
$offset;
        }
        if ( 
$wholefile[$offset] == "0" )
        {
            ++
$offset;
            if ( 
$negative )
            {
                return array( 
FALSE );
            }
            if ( 
$wholefile[$offset] == ":" || $wholefile[$offset] == "e" )
            {
                ++
$offset;
                
$ret[0] = 0;
                
$ret[1] = $offset;
                return 
$ret;
            }
            return array( 
FALSE );
        }
        if ( !
TRUE )
        {
            break;
        }
        else if ( 
"0" <= $wholefile[$offset] && $wholefile[$offset] <= "9" )
        {
            while ( 
"0" <= $wholefile[$offset] && $wholefile[$offset] <= "9" )
            {
                
$ret *= 0;
                
$ret += 0;
                ++
$offset;
            }
        }
        if ( 
$wholefile[$offset] == "e" || $wholefile[$offset] == ":" )
        {
            
$ret[1] = $offset 1;
            if ( 
$negative )
            {
                if ( 
$ret[0] == )
                {
                    return array( 
FALSE );
                }
                
$ret[0] = $ret[0];
            }
            return 
$ret;
        }
        return array( 
FALSE );
    }

    public function 
decodeEntry$wholefile$offset )
    {
        if ( 
$wholefile[$offset] == "d" )
        {
            return 
$this->decodeDict$wholefile$offset );
        }
        if ( 
$wholefile[$offset] == "l" )
        {
            return 
$this->decodelist$wholefile$offset );
        }
        if ( 
$wholefile[$offset] == "i" )
        {
            ++
$offset;
            return 
$this->numberdecode$wholefile$offset );
        }
        
$info $this->numberdecode$wholefile$offset );
        if ( 
$info[0] === FALSE )
        {
            return array( 
FALSE );
        }
        
$ret[0] = substr$wholefile$info[1], $info[0] );
        
$ret[1] = $info[1] + strlen$ret[0] );
        return 
$ret;
    }

    public function 
decodeList$wholefile$start )
    {
        
$offset $start 1;
        
$i 0;
        if ( 
$wholefile[$start] != "l" )
        {
            return array( 
FALSE );
        }
        while ( 
TRUE )
        {
            break;
            
$value $this->decodeEntry$wholefile$offset );
            if ( 
$value[0] === FALSE )
            {
                return array( 
FALSE );
            }
            
$ret[$i] = $value[0];
            
$offset $value[1];
            ++
$i;
        }
        
$final[0] = $ret;
        
$final[1] = $offset 1;
        return 
$final;
    }

    public function 
decodeDict$wholefile$start )
    {
        
$offset $start;
        if ( 
$wholefile[$offset] == "l" )
        {
            return 
$this->decodeList$wholefile$start );
        }
        if ( 
$wholefile[$offset] != "d" )
        {
            return 
FALSE;
        }
        
$ret = array( );
        ++
$offset;
        while ( 
TRUE )
        {
            if ( 
$wholefile[$offset] == "e" )
            {
                ++
$offset;
                break;
            }
            
$left $this->decodeEntry$wholefile$offset );
            if ( !
$left[0] )
            {
                return 
FALSE;
            }
            
$offset $left[1];
            if ( 
$wholefile[$offset] == "d" )
            {
                
$value $this->decodedict$wholefile$offset );
                if ( !
$value[0] )
                {
                    return 
FALSE;
                }
                
$ret[addslashes$left[0] )] = $value[0];
                
$offset $value[1];
                continue;
            }
            if ( 
$wholefile[$offset] == "l" )
            {
                
$value $this->decodeList$wholefile$offset );
                if ( !
$value[0] && is_bool$value[0] ) )
                {
                    return 
FALSE;
                }
                
$ret[addslashes$left[0] )] = $value[0];
                
$offset $value[1];
            }
            else
            {
                
$value $this->decodeEntry$wholefile$offset );
                if ( 
$value[0] === FALSE )
                {
                    return 
FALSE;
                }
                
$ret[addslashes$left[0] )] = $value[0];
                
$offset $value[1];
            }
        }
        if ( empty( 
$ret ) )
        {
            
$final[0] = TRUE;
        }
        else
        {
            
$final[0] = $ret;
        }
        
$final[1] = $offset;
        return 
$final;
    }

}

function 
BDecode$wholefile )
{
    
$decoder = new BDecode( );
    
$return $decoder->decodeEntry$wholefile );
    return 
$return[0];
}

?>


DARCK 24th July 2011 09:42

Quote:

Originally Posted by benik (Post 29161)
There are some errors, because in some files these lines are present.
By example messages.php:

PHP Code:

if (sql_query ("DELETE FROM messages WHERE receiver = '{$ userid}' AND location = '$ {mailbox}' AND unread = 'no'"))
{
sqlerr ("C: \ \ Users \ \ Administrator \ \ Desktop \ \ DeZender.DeIoncuber.17.07.2011 \ \ _decoded \ \ messages.php ', 320);


I do not know how to correct it, maybe some else knows it?

P.S. As far I have checked, all files are decoded with no encodings left.
I downloaded the encoded package from Bravolist here: http://www.bvlist.com/other-download...te-shares-7-2-[encoded].html

PHP Code:

if (sql_query ("DELETE FROM messages WHERE receiver = '{$ userid}' AND location = '$ {mailbox}' AND unread = 'no'"))
{
sqlerr (TSDIR."/ messages.php"320);



eljokr112 5th August 2011 21:37

thanks man .............

joeroberts 12th August 2011 05:54

Quote:

Originally Posted by DARCK (Post 29227)
PHP Code:

if (sql_query ("DELETE FROM messages WHERE receiver = '{$ userid}' AND location = '$ {mailbox}' AND unread = 'no'"))
{
sqlerr (TSDIR."/ messages.php"320);



some of this looks a little off to me like
PHP Code:

{$ userid

and
PHP Code:

$ {mailbox

shouldnt they be
PHP Code:

{$userid

and
PHP Code:

{$mailbox


McNaccken 12th August 2011 10:50

Quote:

Originally Posted by joeroberts (Post 29508)
some of this looks a little off to me like
PHP Code:

{$ userid

and
PHP Code:

$ {mailbox

shouldnt they be
PHP Code:

{$userid

and
PHP Code:

{$mailbox


Exactly, Joe. I think you right in this. :bubble:

xeoncore 13th August 2011 01:18

my friend had a 2 hour conversation over the phone with the guy who did the protection for TS and its pretty solid to get it nulled and would take a shit load of time, my friend decoded a couple of pages that he needed to and then was later banned from TS website

TS is a shit tracker weather its nulled or not i dont know why people bother

but hey if you think you can null it all and get it working smooth without much re-write then props to you

Edgein 13th August 2011 14:00

Quote:

Originally Posted by xeoncore (Post 29519)
my friend decoded a couple of pages that he needed to and then was later banned from TS website

This alone is a big reason to do the decoding and nulling tsse 7.2

the only thing he can do is banning how pathetic is xam :bubble:

zero 13th August 2011 17:07

The only one thing needed to null system immediately is ionCube de-obfuscator.

gvalfer 27th August 2011 11:34

install not work?

Parse error: syntax error, unexpected ',' in C:\AppServ\www\tsse\install\install.php on line 44

ddshow 27th August 2011 21:01

this source have too much php errors

davydx 3rd October 2011 06:08

Hey buddy, please try to fix the errors!
Code:

Parse error: syntax error, unexpected ',' in C:\wamp\www\tsse72\global.php on line 151

Parse error: syntax error, unexpected ',' in C:\wamp\www\tsse72\install\install.php on line 44

Thanks!!! :ok:

DAKz 3rd October 2011 07:59

??
 
would help if you actually posted those 2 lines.

Nightcrawler 3rd October 2011 15:20

cheers will have a look.

davydx 3rd October 2011 15:48

install/install.php - 44 and 45
PHP Code:

            $char = ( $NEYI$i);
            
$keychar = ( $this->AnahtarKelime$i % ( $this->AnahtarKelime ) - 1); 

global.php - 151
PHP Code:

"errorid"); 


ddshow 3rd October 2011 18:04

Quote:

Originally Posted by davydx (Post 30434)
install/install.php - 44 and 45
PHP Code:

            $char = ( $NEYI$i);
            
$keychar = ( $this->AnahtarKelime$i % ( $this->AnahtarKelime ) - 1); 

global.php - 151
PHP Code:

"errorid"); 


change
in global
PHP Code:

"errorid"); 

to this
PHP Code:

define"errorid"); 

the install is not work

DAKz 3rd October 2011 19:36

really?!!?
 
Guys this thing is still encoded, not nulled, and its a wreck what has been kinda decoded.

gangstar 7th January 2012 13:29

has anybody tested it?
is it working?

dj_otrov 24th February 2012 23:13

error
 
Error! Direct initialization of folder is not allowed.

Parse error: syntax error, unexpected ',' in /data/multiserv/users/810676/projects/1928088/www/global.php on line 151

Parse error: syntax error, unexpected ',' in /data/multiserv/users/810676/projects/1928088/www/install/install.php on line 44

Parse error: syntax error, unexpected ',' in /data/multiserv/users/810676/projects/1928088/www/install/upgrade.php on line 44

Bump: enter the directory where the page is white?

free server 24.eu

johnbrakes 28th June 2012 15:19

Hello guys, just launch the installation I get this error I have an ally in the picture, can you help?


http://img515.imageshack.us/img515/5773/immaginezxx.png

x360zone 28th June 2012 15:28

lol
 
its not 100% lol

johnbrakes 28th June 2012 15:38

I did not understand, could you explain better please? :wallbash:

x360zone 28th June 2012 15:49

yes
 
if it worked dont you think id be using it?

johnbrakes 28th June 2012 16:05

Got it, so it does not work, too bad! thanks anyway :ok:

josh1512 26th August 2012 01:55

TemplateShares 7.2 DECODED
 
hello all i had a guy who claimed he had a modified decoder for ioncube 6.5+ he then decoded tsse 7.2 for me i dont know much about it all so ive left it up to everyone else to decide if its properly decoded. I should also mention that it is not nulled and will not work. https://hotfile.com/dl/168984616/396...m_orj.rar.html

zero 26th August 2012 08:38

TS SE
 
Dont waste your time :)

we know that kind of decoding and beleve me your script is very faraway with clear code.

1 ) decoder is not working well and left many syntax and other errors.
2 ) and main problem is obfuscated code.

I think to NULL script is to at firts clear code with manualy (that's very hard and need big time) and after this RE-code all script.

josh1512 26th August 2012 16:28

Quote:

Originally Posted by zero (Post 36226)
Dont waste your time :)

we know that kind of decoding and beleve me your script is very faraway with clear code.

1 ) decoder is not working well and left many syntax and other errors.
2 ) and main problem is obfuscated code.

I think to NULL script is to at firts clear code with manualy (that's very hard and need big time) and after this RE-code all script.

yea i noticed there were a lot of errors im trying to get them fixed atm so will update when i have more info

fmsheselina 28th August 2012 12:55

Quote:

Originally Posted by gvalfer (Post 29701)
install not work?

Parse error: syntax error, unexpected ',' in C:\AppServ\www\tsse\install\install.php on line 44


:sos::wallbash: Parse error: syntax error, unexpected ',' in /home/a3564136/public_html/install/install.php on line 44:wallbash::wallbash::wallbash::smack::smack:

x360zone 28th August 2012 13:11

douchebag
 
if you would read it does not work:chch:

fanson 7th July 2017 06:04

Uplad torrente error
Code:

Invalid announce url! Must be:
 http://sitename.pl/announce.php?passkey=45d46ec45f9bcbf9697dbeb5c8790756



All times are GMT +2. The time now is 08:29.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.