!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)

E:\xampp\xampp\htdocs\jaime\wordpress\wp-includes\   drwxrwxrwx
Free 7.96 GB of 239.26 GB (3.33%)
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:     wp-l10n.php (1.88 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

if ( defined('WPLANG') && '' != constant('WPLANG') ) {
    include_once(
ABSPATH 'wp-includes/streams.php');
    include_once(
ABSPATH 'wp-includes/gettext.php');
}

function 
get_locale() {
    global 
$locale;

    if (isset(
$locale))
        return 
$locale;

    
// WPLANG is defined in wp-config.
    
if (defined('WPLANG'))
        
$locale WPLANG;
    
    if (empty(
$locale))
        
$locale 'en_US';

    
$locale apply_filters('locale'$locale);

    return 
$locale;
}

// Return a translated string.    
function __($text$domain 'default') {
    global 
$l10n;

    if (isset(
$l10n[$domain]))
        return 
apply_filters('gettext'$l10n[$domain]->translate($text), $text);
    else
        return 
$text;
}

// Echo a translated string.
function _e($text$domain 'default') {
    global 
$l10n;

    if (isset(
$l10n[$domain]))
        echo 
apply_filters('gettext'$l10n[$domain]->translate($text), $text);
    else
        echo 
$text;
}

// Return the plural form.
function __ngettext($single$plural$number$domain 'default') {
    global 
$l10n;

    if (isset(
$l10n[$domain])) {
        return 
$l10n[$domain]->ngettext($single$plural$number);
    } else {
        if (
$number != 1)
            return 
$plural;
        else
            return 
$single;
    }
}

function 
load_textdomain($domain$mofile) {
    global 
$l10n;

    if (isset(
$l10n[$domain]))
        return;

    if ( 
is_readable($mofile))
        
$input = new CachedFileReader($mofile);
    else
        return;

    
$l10n[$domain] = new gettext_reader($input);
}

function 
load_default_textdomain() {
    global 
$l10n;

    
$locale get_locale();
    
$mofile ABSPATH "wp-includes/languages/$locale.mo";
    
    
load_textdomain('default'$mofile);
}

function 
load_plugin_textdomain($domain$path 'wp-content/plugins') {
    
$locale get_locale();
    
    
$mofile ABSPATH "$path/$domain-$locale.mo";
    
load_textdomain($domain$mofile);
}

function 
load_theme_textdomain($domain) {
    
$locale get_locale();
    
    
$mofile get_template_directory() . "/$locale.mo";
    
load_textdomain($domain$mofile);
}

?>

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