!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-content\plugins\   drwxrwxrwx
Free 7.26 GB of 239.26 GB (3.04%)
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:     hello.php (2.09 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/*
Plugin Name: Hello Dolly
Plugin URI: http://wordpress.org/#
Description: Esto no s&oacute;lo es un plugin: simboliza el entusiasmo y la esperanza de una generaci&oacute;n resumidos en dos palabras que hizo famosas Louis Armstrong: Hello, Dolly. Cuando lo active, aparecer&aacute; una frase aleatoria de la letra de <cite>Hello, Dolly</cite> en la esquina superior derecha de cada p&aacute;gina de administraci&oacute;n.
Author: Matt Mullenweg
Version: 1.5
Author URI: http://photomatt.net/
*/ 

// These are the lyrics to Hello Dolly
$lyrics "Hello, Dolly
Well, hello, Dolly
It's so nice to have you back where you belong
You're lookin' swell, Dolly
I can tell, Dolly
You're still glowin', you're still crowin'
You're still goin' strong
We feel the room swayin'
While the band's playin'
One of your old favourite songs from way back when
So, take her wrap, fellas
Find her an empty lap, fellas
Dolly'll never go away again
Hello, Dolly
Well, hello, Dolly
It's so nice to have you back where you belong
You're lookin' swell, Dolly
I can tell, Dolly
You're still glowin', you're still crowin'
You're still goin' strong
We feel the room swayin'
While the band's playin'
One of your old favourite songs from way back when
Golly, gee, fellas
Find her a vacant knee, fellas
Dolly'll never go away
Dolly'll never go away
Dolly'll never go away again"
;

// Here we split it into lines
$lyrics explode("\n"$lyrics);
// And then randomly choose a line
$chosen wptexturize$lyricsmt_rand(0count($lyrics) ) ] );

// This just echoes the chosen line, we'll position it later
function hello_dolly() {
    global 
$chosen;
    echo 
"<p id='dolly'>$chosen</p>";
}

// Now we set that function up to execute when the admin_footer action is called
add_action('admin_footer''hello_dolly');

// We need some CSS to position the paragraph
function dolly_css() {
    echo 
"
    <style type='text/css'>
    #dolly {
        position: absolute;
        top: 2.3em;
margin: 0; padding: 0;
        right: 1em;
        font-size: 16px;
        color: #f1f1f1;
    }
    </style>
    "
;
}

add_action('admin_head''dolly_css');

?>

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