!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.82 GB of 127.8 GB (41.33%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


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

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

	/**  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;
		$myTable0 = "personal_tb";		
		//===  salary_repot_tb
		$query0 = " SELECT *  FROM $myTable0  ORDER  BY Teacher_name  ASC ";
		$result0 = $dbObj->execQuery($query0);
		//$rs = $dbObj->fetchArray($result);
		$total = $dbObj->_numrows;

		/**  Config Table for This Page  */
		$myTable = "projectstdplan_tb";
		$myTablePK = "Budget_Year";
		
		$myTable2 = "project_type_tb";
		$myTable2PK = "ProjectId";
		
		/*
		$queryUsr = " SELECT * FROM user_tb  WHERE Username='$Username' ";
		$resultUsr = $dbObj->execQuery($queryUsr);
		$rss = $dbObj->fetchArray($resultUsr);
		*/
		
		//===  
		$query = " SELECT *  FROM $myTable  GROUP BY  $myTablePK ";
		$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>&nbsp;</td>
      </tr>
      <tr>
        <td><span 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></span></td>
      </tr>
      <tr>
        <td height="2" 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 height="29"> <?php
                    $animateChart = "1";
					             
					  $strXML = "<chart caption='แผนภูมิแสดงประเภทบุคลากร' subCaption='' pieSliceDepth='30' showBorder='1' formatNumberScale='0' numberSuffix='&permil; ' animation=' "  . $animateChart . " '>";
                
					 $strQ = " SELECT *  FROM  teacher_type_tb   Where  Flag ='Y'  ";	
					 $res = $dbObj->execQuery($strQ);
					 $c = mysql_num_rows($res);
					 while( $rs0 = $dbObj->fetchArray($res) ) {
				   	$dc = $rs0['Ttype_code'];
				   		if ($dc !=0 ){	
								$sql = " SELECT COUNT(Teacher_code) AS num  FROM  personal_tb pt, teacher_type_tb tt    WHERE    pt.Teacher_type=$dc   and   pt.Teacher_type=tt.Ttype_code  and  tt.Flag='Y' and  pt.StatusId='1'  ";
								$result = $dbObj->execQuery($sql);
								$rs = $dbObj->fetchArray($result);
								
								$sql2 = " SELECT COUNT(Teacher_code) AS sum  FROM personal_tb pt, teacher_type_tb tt   WHERE  pt.Teacher_type=tt.Ttype_code  and  tt.Flag='Y' and  pt.StatusId='1' ";
					           $result2 = $dbObj->execQuery($sql2);
					           $rs2 = $dbObj->fetchArray($result2);
								
								$per = ( $rs['num'] * 100 ) / $rs2['sum'];
									 $p = number_format($per,2,'.','.');
									 $strXML .= "<set label='" . $rs0['Ttype_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, "",600, 375, false, false);
              ?></td>
      </tr>
      <tr>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td><table width="97%" border="0" align="center" 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  teacher_type_tb   Where  Flag ='Y'    " ;
				$result8 = $dbObj->execQuery($sql); 
               $no = 1+($display-1)*$limit;
           while( $rss4 = $dbObj->fetchArray($result8) ) { 
				$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"><?=$rss4['Ttype_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  Teacher_type='$rss4[Ttype_code]'    ";
					$result11 = $dbObj->execQuery($sql);
					$rs11 = $dbObj->fetchArray($result11);
					$dbObj->freeresult($result11);
						echo $rs11['num'];
			    ?>
              </a></td>
            <td align="center" bgcolor="#FFFFFF" class="PADDING-LEFT-5"><?php   
					$sql = " SELECT COUNT(Teacher_type) AS num FROM personal_tb    WHERE  StatusId='3'  and  Teacher_type='$rss4[Ttype_code]'    ";
					$result12 = $dbObj->execQuery($sql);
					$rs12 = $dbObj->fetchArray($result12);
					$dbObj->freeresult($result12);
						echo $rs12['num'];
			    ?>
              </a></td>
            <td align="center" bgcolor="#FFFFFF" class="PADDING-LEFT-5"><?php   
					$sql = " SELECT COUNT(Teacher_type) AS num  FROM personal_tb    WHERE  StatusId='2'  and  Teacher_type='$rss4[Ttype_code]'    ";
					$result13 = $dbObj->execQuery($sql);
					$rs13 = $dbObj->fetchArray($result13);
					$dbObj->freeresult($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"><?php   
					$sql = " SELECT COUNT(Teacher_code) AS num5  FROM personal_tb pt, teacher_type_tb tt   WHERE  pt.Teacher_type=tt.Ttype_code  and  tt.Flag='Y' and  pt.StatusId='1'    ";
					$result1 = $dbObj->execQuery($sql);
					$rs1 = $dbObj->fetchArray($result1);
								echo $rs1['num5'];
			    ?></td>
            <td align="center" bgcolor="#FFCCFF" class="PADDING-LEFT-5"><?php   
					$sql = " SELECT COUNT(Teacher_code) AS num5  FROM personal_tb pt, teacher_type_tb tt   WHERE  pt.Teacher_type=tt.Ttype_code  and  tt.Flag='Y' and  pt.StatusId='3'    ";
					$result1 = $dbObj->execQuery($sql);
					$rs1 = $dbObj->fetchArray($result1);
								echo $rs1['num5'];
			    ?></td>
            <td align="center" bgcolor="#FFCCFF" class="PADDING-LEFT-5"><?php   
					$sql = " SELECT COUNT(Teacher_code) AS num5  FROM personal_tb pt, teacher_type_tb tt   WHERE  pt.Teacher_type=tt.Ttype_code  and  tt.Flag='Y' and  pt.StatusId='2'    ";
					$result1 = $dbObj->execQuery($sql);
					$rs1 = $dbObj->fetchArray($result1);
								echo $rs1['num5'];
			    ?></td>
            <td align="center" bgcolor="#FFCCFF" class="PADDING-LEFT-5"><?php   
					$sql = " SELECT COUNT(Teacher_code) AS num5  FROM personal_tb pt, teacher_type_tb tt   WHERE  pt.Teacher_type=tt.Ttype_code  and  tt.Flag='Y' and  (pt.StatusId='1'  Or pt.StatusId='2' Or pt.StatusId='3')  ";
					$result1 = $dbObj->execQuery($sql);
					$rs1 = $dbObj->fetchArray($result1);
								echo $rs1['num5'];
			    ?></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.0049 ]--