Bravo List
Register
Go Back   > Bravo List > P2P > Forum > Downloads
Reply
Thread Tools
  #21  
Old 1st November 2011, 12:52
Crazzy Crazzy is offline
Member
 
Join Date: May 2009
P2P
Posts: 14
Default
not compatible with windows vista & windows 7
Reply With Quote
  #22  
Old 1st November 2011, 19:25
anarky anarky is offline
Senior Member
 
Join Date: Nov 2008
Posts: 37
Default
Quote:
Originally Posted by Fynnon View Post
I took the file poll.php which is IONCUBE encoded from here: http://bvlist.com/other-downloads/41...2-encoded.html and dropped it into the decoder

And this is what i got:
PHP Code:
<?php
require_once( "global.php" );
gzip( );
dbconn( );
load"poll" );
define"P_VERSION""v.0.1 by xam" );
$do = isset( $_GET['do'] ) ? $_GET['do'] : isset( $_POST['do'] ) ? $_POST['do'] : "";
if ( 
$do == "showresults" && is_valid_id$_GET['pollid'] ) )
{
    
setcookie"showpollresult"intval$_GET['pollid'] ), time( ) + 30 );
    
redirect"index.php#showtspoll" );
    exit( );
}
if ( 
$do == "pollvote" )
{
    
$pollid intval$_POST['pollid'] );
    if ( !( 
$Query sql_query"SELECT * FROM ".TSF_PREFIX."poll WHERE pollid = '".$pollid."' AND fortracker = '1'" ) ) )
    {
    }
    
$pollinfo mysql_fetch_assoc$Query );
    if ( !
$pollinfo['pollid'] )
    {
        
stderr$lang->global['error'], $lang->poll['invalid'] );
    }
    if ( 
$CURUSER['id'] && $usergroups['canvote'] != "yes" )
    {
        
print_no_permission( );
    }
    if ( !
$pollinfo['active'] || $pollinfo['dateline'] + $pollinfo['timeout'] * 86400 TIMENOW && $pollinfo['timeout'] != )
    {
        
stderr$lang->global['error'], $lang->poll['closed2'] );
    }
    if ( !empty( 
$_POST['optionnumber'] ) )
    {
        if ( !
$CURUSER['id'] )
        {
            if ( isset( 
$_COOKIE["poll_voted_".$pollid] ) )
            {
                
stderr$lang->global['error'], $lang->poll['avoted'] );
                if ( !( 
$Query sql_query"\r\n\t\t\tSELECT userid\r\n\t\t\tFROM ".TSF_PREFIX."pollvote\r\n\t\t\tWHERE userid = ".$CURUSER['id']."\r\n\t\t\t\tAND pollid = '{$pollid}'\r\n\t\t\t" ) ) )
                {
                }
            }
        }
        else if ( 
mysql_num_rows$Query ) )
        {
            
stderr$lang->global['error'], $lang->poll['avoted'] );
        }
        
$totaloptions substr_count$pollinfo['options'], "~~~" ) + 1;
        if ( 
$pollinfo['multiple'] )
        {
            
$skip_voters false;
            foreach ( 
$_POST['optionnumber'] as $val => $vote )
            {
                
$Queries = array( );
                
$val intval$val );
                if ( 
$vote && $val && $val <= $totaloptions )
                {
                    
$Queries[] = "pollid = '".$pollid."'";
                    if ( !
$CURUSER['id'] )
                    {
                        
$Queries[] = "userid = '0'";
                    }
                    else
                    {
                        
$Queries[] = "userid = '".$CURUSER['id']."'";
                    }
                    
$Queries[] = "votedate = '".TIMENOW."'";
                    
$Queries[] = "voteoption = '".$val."'";
                    
$Queries[] = "votetype = '".$val."'";
                    if ( !( 
$Query sql_query"INSERT INTO ".TSF_PREFIX."pollvote SET ".implode","$Queries ) ) ) )
                    {
                    }
                    if ( !
$Query )
                    {
                        
stderr$lang->global['error'], $lang->poll['poll11'] );
                    }
                    if ( 
$skip_voters )
                    {
                        if ( !( 
$Query sql_query"SELECT * FROM ".TSF_PREFIX."poll WHERE pollid = '".$pollid."' AND fortracker = '1'" ) ) )
                        {
                        }
                        
$pollinfo mysql_fetch_assoc$Query );
                    }
                    
$old_votes_array explode"~~~"$pollinfo['votes'] );
                    ++
$old_votes_array[$val 1];
                    
$new_votes_array implode"~~~"$old_votes_array );
                    if ( !
sql_query"UPDATE ".TSF_PREFIX."poll SET ".( !$skip_voters "voters = voters + 1, lastvote = '".TIMENOW."', " "" )."votes = ".sqlesc$new_votes_array )." WHERE pollid = '{$pollid}' AND fortracker = '1'" ) )
                    {
                    }
                    
$skip_voters true;
                }
            }
        }
        else if ( 
is_valid_id$_POST['optionnumber'] ) && $_POST['optionnumber'] && $_POST['optionnumber'] <= $totaloptions )
        {
            
$Queries = array( );
            
$Queries[] = "pollid = '".$pollid."'";
            if ( !
$CURUSER['id'] )
            {
                
$Queries[] = "userid = '0'";
            }
            else
            {
                
$Queries[] = "userid = '".$CURUSER['id']."'";
            }
            
$Queries[] = "votedate = '".TIMENOW."'";
            
$Queries[] = "voteoption = '".intval$_POST['optionnumber'] )."'";
            
$Queries[] = "votetype = '0'";
            if ( !( 
$Query sql_query"INSERT INTO ".TSF_PREFIX."pollvote SET ".implode","$Queries ) ) ) )
            {
            }
            if ( !
$Query )
            {
                
stderr$lang->global['error'], $lang->poll['poll11'] );
            }
            
$old_votes_array explode"~~~"$pollinfo['votes'] );
            ++
$old_votes_array[intval$_POST['optionnumber'] ) - 1];
            
$new_votes_array implode"~~~"$old_votes_array );
            if ( !
sql_query"UPDATE ".TSF_PREFIX."poll SET voters = voters + 1, lastvote='".TIMENOW."', votes = ".sqlesc$new_votes_array )." WHERE pollid = '{$pollid}' AND fortracker = '1'" ) )
            {
            }
        }
        if ( 
$CURUSER['id'] )
        {
            include_once( 
INC_PATH."/readconfig_kps.php" );
            
kps"+"$kpspoll$CURUSER['id'] );
        }
        
setcookie"poll_voted_".$pollid$pollidtime( ) + 12 24 60 60 60 );
        
redirect"index.php#showtspoll"$lang->poll['thx'] );
        exit( );
    }
    else
    {
        
stderr$lang->global['error'], $lang->poll['nselected'] );
    }
}
?>
Reply With Quote
  #23  
Old 27th February 2013, 14:25
kavetejjel kavetejjel is offline
Member
 
Join Date: Feb 2013
P2P
Posts: 1
Default
Hi,

This is not 1.7 this is 1.1 and not decode my files.
Reply With Quote
  #24  
Old 27th February 2013, 14:52
Phogo's Avatar
Phogo Phogo is offline
VIP
 
Join Date: Jan 2008
United Kingdom
Posts: 902
Default
Quote:
Originally Posted by kavetejjel View Post
Hi,

This is not 1.7 this is 1.1 and not decode my files.

Your files?
Reply With Quote
Reply

Tags
decoder , ioncube , v17


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
TS with no IonCube ? la_salvadore Template Shares 1 22nd March 2009 15:28
Ioncube Izacic Template Shares 5 14th March 2009 12:50
Decoding ioncube and Zend ! decode4u Sell & Buy 1 7th November 2008 00:09
Problems installing Ioncube, please help! lucasmx Template Shares 1 24th August 2008 12:14
Prompt what ioncube it is necessary TS v.5.1 zenja777 Template Shares 2 18th July 2008 00:35



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