!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\wordpress-seo\vendor\composer\installers\src\Composer\Installers\   drwxrwxrwx
Free 4.13 GB of 39.52 GB (10.45%)
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:     ShopwareInstaller.php (1.5 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace Composer\Installers;

/**
 * Plugin/theme installer for shopware
 * @author Benjamin Boit
 */
class ShopwareInstaller extends BaseInstaller
{
    protected 
$locations = array(
        
'backend-plugin'    => 'engine/Shopware/Plugins/Local/Backend/{$name}/',
        
'core-plugin'       => 'engine/Shopware/Plugins/Local/Core/{$name}/',
        
'frontend-plugin'   => 'engine/Shopware/Plugins/Local/Frontend/{$name}/',
        
'theme'             => 'templates/{$name}/'
    
);

    
/**
     * Transforms the names
     * @param  array $vars
     * @return array
     */
    
public function inflectPackageVars($vars)
    {
        if (
$vars['type'] === 'shopware-theme') {
            return 
$this->correctThemeName($vars);
        } else {
            return 
$this->correctPluginName($vars);
        }
    }

    
/**
     * Changes the name to a camelcased combination of vendor and name
     * @param  array $vars
     * @return array
     */
    
private function correctPluginName($vars)
    {
        
$camelCasedName preg_replace_callback('/(-[a-z])/', function ($matches) {
            return 
strtoupper($matches[0][1]);
        }, 
$vars['name']);

        
$vars['name'] = ucfirst($vars['vendor']) . ucfirst($camelCasedName);

        return 
$vars;
    }

    
/**
     * Changes the name to a underscore separated name
     * @param  array $vars
     * @return array
     */
    
private function correctThemeName($vars)
    {
        
$vars['name'] = str_replace('-''_'$vars['name']);

        return 
$vars;
    }
}

:: 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.0156 ]--