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

Software: Apache/2.0.54 (Unix) mod_perl/1.99_09 Perl/v5.8.0 mod_ssl/2.0.54 OpenSSL/0.9.7l DAV/2 FrontPage/5.0.2.2635 PHP/4.4.0 mod_gzip/2.0.26.1a 

uname -a: Linux snow.he.net 4.4.276-v2-mono-1 #1 SMP Wed Jul 21 11:21:17 PDT 2021 i686 

uid=99(nobody) gid=98(nobody) groups=98(nobody) 

Safe-mode: OFF (not secure)

/home/jerryg/public_html/gallery2/lib/smarty/internals/   drwxr-xr-x
Free 318.36 GB of 458.09 GB (69.5%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     core.load_resource_plugin.php (2.1 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * Smarty plugin
 * @package Smarty
 * @subpackage plugins
 */

/**
 * load a resource plugin
 *
 * @param string $type
 */

// $type

function smarty_core_load_resource_plugin($params, &$smarty)
{
    
/*
     * Resource plugins are not quite like the other ones, so they are
     * handled differently. The first element of plugin info is the array of
     * functions provided by the plugin, the second one indicates whether
     * all of them exist or not.
     */

    
$_plugin = &$smarty->_plugins['resource'][$params['type']];
    if (isset(
$_plugin)) {
        if (!
$_plugin[1] && count($_plugin[0])) {
            
$_plugin[1] = true;
            foreach (
$_plugin[0] as $_plugin_func) {
                if (!
is_callable($_plugin_func)) {
                    
$_plugin[1] = false;
                    break;
                }
            }
        }

        if (!
$_plugin[1]) {
            
$smarty->_trigger_fatal_error("[plugin] resource '" $params['type'] . "' is not implemented"nullnull__FILE____LINE__);
        }

        return;
    }

    
$_plugin_file $smarty->_get_plugin_filepath('resource'$params['type']);
    
$_found = ($_plugin_file != false);

    if (
$_found) {            /*
         * If the plugin file is found, it -must- provide the properly named
         * plugin functions.
         */
        
include_once($_plugin_file);

        
/*
         * Locate functions that we require the plugin to provide.
         */
        
$_resource_ops = array('source''timestamp''secure''trusted');
        
$_resource_funcs = array();
        foreach (
$_resource_ops as $_op) {
            
$_plugin_func 'smarty_resource_' $params['type'] . '_' $_op;
            if (!
function_exists($_plugin_func)) {
                
$smarty->_trigger_fatal_error("[plugin] function $_plugin_func() not found in $_plugin_file"nullnull__FILE____LINE__);
                return;
            } else {
                
$_resource_funcs[] = $_plugin_func;
            }
        }

        
$smarty->_plugins['resource'][$params['type']] = array($_resource_funcstrue);
    }
}

/* vim: set expandtab: */

?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

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