!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\htdocs\drupal\modules\statistics\   drwxrwxrwx
Free 8.79 GB of 239.26 GB (3.67%)
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:     statistics.pages.inc (2.33 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
// $Id: statistics.pages.inc,v 1.2 2007/10/20 21:57:50 goba Exp $

/**
 * @file
 * User page callbacks for the statistics module.
 */

function statistics_node_tracker() {
  if (
$node node_load(arg(1))) {

    
$header = array(
        array(
'data' => t('Time'), 'field' => 'a.timestamp''sort' => 'desc'),
        array(
'data' => t('Referrer'), 'field' => 'a.url'),
        array(
'data' => t('User'), 'field' => 'u.name'),
        array(
'data' => t('Operations')));

    
$result pager_query('SELECT a.aid, a.timestamp, a.url, a.uid, u.name FROM {accesslog} a LEFT JOIN {users} u ON a.uid = u.uid WHERE a.path LIKE \'node/%d%%\''tablesort_sql($header), 300NULL$node->nid);
    
$rows = array();
    while (
$log db_fetch_object($result)) {
      
$rows[] = array(
        array(
'data' => format_date($log->timestamp'small'), 'class' => 'nowrap'),
        
_statistics_link($log->url),
        
theme('username'$log),
        
l(t('details'), "admin/reports/access/$log->aid"));
    }

    if (empty(
$rows)) {
      
$rows[] = array(array('data' => t('No statistics available.'), 'colspan' => 4));
    }

    
drupal_set_title(check_plain($node->title));
    
$output theme('table'$header$rows);
    
$output .= theme('pager'NULL300);
    return 
$output;
  }
  else {
    
drupal_not_found();
  }
}

function 
statistics_user_tracker() {
  if (
$account user_load(array('uid' => arg(1)))) {

    
$header = array(
        array(
'data' => t('Timestamp'), 'field' => 'timestamp''sort' => 'desc'),
        array(
'data' => t('Page'), 'field' => 'path'),
        array(
'data' => t('Operations')));

    
$result pager_query('SELECT aid, timestamp, path, title FROM {accesslog} WHERE uid = %d'tablesort_sql($header), 300NULL$account->uid);
    
$rows = array();
    while (
$log db_fetch_object($result)) {
      
$rows[] = array(
        array(
'data' => format_date($log->timestamp'small'), 'class' => 'nowrap'),
        
_statistics_format_item($log->title$log->path),
        
l(t('details'), "admin/reports/access/$log->aid"));
    }

    if (empty(
$rows)) {
      
$rows[] = array(array('data' => t('No statistics available.'), 'colspan' => 3));
    }

    
drupal_set_title(check_plain($account->name));
    
$output theme('table'$header$rows);
    
$output .= theme('pager'NULL300);
    return 
$output;
  }
  else {
    
drupal_not_found();
  }
}

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