30.gif

Search (advanced search)
Use this Search form before posting, asking or make a new thread.
Tips: Use Quotation mark to search words (eg. "How To Make Money Online")

05-17-2016, 12:31 PM
Post: #11
RE: PHPVibe v5
(05-13-2016 11:59 PM)jaliee85 Wrote:  INSTALL V4 THEN UPGRADE TO V5 AND ITS WORK...NOT TEST IT ON LIVE.

Version 5 will not work from an upgrade. Fills in the moderator folder are not nulled. Here is evidence that it calls home.
PHP Code:
function is_licensed_true() {
    if (!) {
        return ;
        
$key_info = array(  );
        
$key_info['key'] = phpVibeKey;
        
$key_info['domain'] = main_domSITE_URL );
        
$serverurl 'http://labs.phpvibe.com/server/server.php';
        
curl_init$serverurl );
        
$ch = ;
        
curl_setopt;
        
$ch;
        
CURLOPT_RETURNTRANSFER;
        
true;
    } 
05-17-2016, 11:20 PM
Post: #12
RE: PHPVibe v5
wheres you find this file?what the name.
05-18-2016, 12:21 AM
Post: #13
RE: PHPVibe v5
(05-17-2016 11:20 PM)jaliee85 Wrote:  wheres you find this file?what the name.
The files are in the moderator folder and are the only ones requiring ioncube. The file names are main53.php, main54.php and main55.php which correspond with the php version on the server detected by index.php


I managed to decode main53.php but can seem to get it to work as parts are missing due to the decode process. I haven't been able to get any help fully decoding main55.php or finding anyone with a 'easytoyou' account to decode it as most will be using php version 5.5 or higher.

V5 is being posted around as being nulled when its not.

Here is what I have of main53.php if you wish to give it a try. Verysad NotWorking
PHP Code:
<?php
function main_dom($url) {
    
$pieces parse_url$url );

    if (isset( 
$pieces['host'] )) {
        
$pieces['host'];
        
$domain = (true ?  : );
        
preg_match;
    }


    if (( 
'/(?P<domain>[a-z0-9][a-z0-9\-]{1,63}\.[a-z\.]{2,6})$/i'$domain$regs )) {
    }

    return ;
}

function 
is_licensed_true() {
    if (!) {
        return ;
        
$key_info = array(  );
        
$key_info['key'] = phpVibeKey;
        
$key_info['domain'] = main_domSITE_URL );
        
$serverurl 'http://labs.phpvibe.com/server/server.php';
        
curl_init$serverurl );
        
$ch = ;
        
curl_setopt;
        
$ch;
        
CURLOPT_RETURNTRANSFER;
        
true;
    }

    (  );
    
curl_setopt$chCURLOPT_POSTtrue );
    
curl_setopt$chCURLOPT_POSTFIELDS$key_info );
    
curl_exec$ch );
    
$result = ;
    
json_decode$resulttrue );
    
$result = ;

    if (
$result['valid'] == 'true') {
    }

    return ;
}

$phpenv false;

if (
function_exists'version_compare' )) {
    if (
<= version_comparePHP_VERSION'5.3.0' )) {
        
$phpenv true;
    }
}
else {
    if (!) {
        echo ;
        
do_action'admin-prebody' );
        
apply_filters'admin-pre-body'false );

        if (
_get'sk' )) {
            
ADM '/';
            
str_replace;
            array( 
'/' =>  );
        }
    }
}

$file =  . ( array( ':' => , 'http' => , 'www' =>  ), array( '' => , '' => , '' => , '' =>  ), _get'sk' ) ) . '.php';

if (
is_readable$file )) {
    require_once( 
$file );
}

jmp;
echo ;
exit(  );
?>
05-26-2016, 11:58 AM
Post: #14
RE: PHPVibe v5
Ok guys I've tested the v4 to v5.
Suddenly the key got useless, it is still trying to connect to labs.phpvibe.com for a key validation.
if someone can decode main53.php main54.php main55.php and null this I would really appreciate it alot!
05-26-2016, 01:14 PM
Post: #15
RE: PHPVibe v5
I bought a easytoyou account specially to decode the files u requested.
I've got the 3 files in question in a .rar folder.

What shall I do with them?
86.gif
05-29-2016, 08:12 AM
Post: #16
RE: PHPVibe v5
check your pm
05-30-2016, 12:40 PM
Post: #17
RE: PHPVibe v5
Code:
http://www86.zippyshare.com/v/quWambfS/file.html

pw: bestblackhatforum.com
06-03-2016, 12:22 PM
Post: #18
RE: PHPVibe v5
i think you can bypass is_licensed_true by adding these lines to adm-functions.php

Quote:is_licensed_true(){
return true;
}
06-04-2016, 11:13 AM (This post was last modified: 06-04-2016 11:25 AM by Gernavor.)
Post: #19
RE: PHPVibe v5
(06-03-2016 12:22 PM)mrqaidi Wrote:  i think you can bypass is_licensed_true by adding these lines to adm-functions.php
The difference in this version is that it attempts call the license check server after a certain time in the mod panel regardless of is_lic being true.

also decoding the files eliminates the need for the latest ioncube on the server.




19.gif