!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/   drwx---r-x
Free 318.39 GB of 458.09 GB (69.51%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     unavailable.php (1.23 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/*
Plugin Name: Site Unavailable
Plugin URI: http://blog.taragana.com/index.php/archive/wordpress-plugin-to-make-your-blog-temporarily-unavailable-for-maintenance/
Description: Activate this plugin to make the server unavailable to everyone, except admin.
Author: Angsuman Chakraborty
Author URI: http://blog.taragana.com/
Version: 1.0
*/
// Hint to the clients to retry after the time below in minutes
$retry_after 60// In minutes

// Message to display to the users of the blog
$message     '<h3>This blog is currently undergoing scheduled maintenance. Please try after '.$retry_after.' minutes. Sorry for the inconvenience.</h3>';



// DO NOT MODIFY BELOW THIS LINE
if(!strstr($_SERVER['PHP_SELF'], 'feed/') && !strstr($_SERVER['PHP_SELF'], 'wp-admin/')) {
    echo 
$message.'<br/><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> provided by <a href="http://www.taragana.com/">Taragana</a>'
    exit();    
} else if(
strstr($_SERVER['PHP_SELF'], 'feed/') || strstr($_SERVER['PHP_SELF'], 'trackback/')) {
    
$retry_after $retry_after 60;
    
header("HTTP/1.0 503 Service Unavailable"); 
    
header("Retry-After: $retry_after"); 
    exit();    
}
?>

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