!C99Shell v. 1.0 pre-release build #13!

Software: Apache. PHP/5.5.15 

uname -a: Windows NT SVR-DMZ 6.1 build 7600 (Windows Server 2008 R2 Enterprise Edition) i586 

SYSTEM 

Safe-mode: OFF (not secure)

C:\cumbreclima\wp-content\plugins\templatera\   drwxrwxrwx
Free 4.11 GB of 39.52 GB (10.4%)
Detected drives: [ a ] [ c ] [ d ] [ e ] [ f ]
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     templatera.php (2.07 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/*
Plugin Name: Templatera
Plugin URI: http://vc.wpbakery.com/
Description: Template Manager for Visual Composer on Steroids
Version: 1.0.5
Author: WPBakery
Author URI: http://wpbakery.com
License: http://codecanyon.net/licenses
*/


// don't load directly
if (!defined('ABSPATH')) die('-1');
define('WPB_VC_REQUIRED_VERSION''3.6.8');

function 
templatera_notice() {
    
$plugin_data get_plugin_data(__FILE__);
    echo 
'
  <div class="updated">
    <p>' 
sprintf(__('<strong>%s</strong> requires <strong><a href="http://bit.ly/vcomposer" target="_blank">Visual Composer</a></strong> plugin to be installed and activated on your site.''vc_template'), $plugin_data['Name']) . '</p>
  </div>'
;
}
function 
templatera_notice_version() {
    
$plugin_data get_plugin_data(__FILE__);
    echo 
'
  <div class="updated">
    <p>' 
sprintf(__('<strong>%s</strong> requires <strong>%s</strong> version of <strong><a href="http://bit.ly/vcomposer" target="_blank">Visual Composer</a></strong> plugin to be installed and activated on your site. Current version is %s.''vc_template'), $plugin_data['Name'], WPB_VC_REQUIRED_VERSIONWPB_VC_VERSION) . '</p>
  </div>'
;
}


// Get directory path of this plugin.
$dir dirname(__FILE__);

// Template manager main class is required.
require_once($dir '/lib/vc_template_manager.php');

/**
 * Registry hooks
 */

register_activation_hook(__FILE__, array('VcTemplateManager''install'));

add_action('init''templatera_init');
/**
 * Initialize Templatera with init action.
 */
function templatera_init() {
    
/*
        Display notice if Visual Composer is not installed or activated.
    */
    
if (!defined('WPB_VC_VERSION')) {
        
add_action('admin_notices''templatera_notice');
        return;
    } elseif(
version_compare(WPB_VC_VERSIONWPB_VC_REQUIRED_VERSION) < 0) {
        
add_action('admin_notices''templatera_notice_version');
        return;
    }
    
$dir dirname(__FILE__);
    
// Init or use instance of the manager.
    
global $vc_template_manager;
    
$vc_template_manager = new VcTemplateManager($dir);
    
$vc_template_manager->init();
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0312 ]--