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


Viewing file:     tuto3.php (1.78 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
require('../fpdf_thai.php');

class 
PDF extends FPDF_TH
{
function 
Header()
{
    global 
$title;

    
//Arial bold 15
    
$this->SetFont('AngsanaNew','B',22);
    
//Calculate width of title and position
    
$w=$this->GetStringWidth($title)+6;
    
$this->SetX((210-$w)/2);
    
//Colors of frame, background and text
    
$this->SetDrawColor(0,80,180);
    
$this->SetFillColor(230,230,0);
    
$this->SetTextColor(220,50,50);
    
//Thickness of frame (1 mm)
    
$this->SetLineWidth(1);
    
//Title
    
$this->Cell($w,9,$title,1,1,'C',1);
    
//Line break
    
$this->Ln(10);
}

function 
Footer()
{
    
//Position at 1.5 cm from bottom
    
$this->SetY(-15);
    
//Arial italic 8
    
$this->SetFont('AngsanaNew','I',14);
    
//Text color in gray
    
$this->SetTextColor(128);
    
//Page number
    
$this->Cell(0,10,'หน้าที่ '.$this->PageNo(),0,0,'C');
}

function 
ChapterTitle($num,$label)
{
    
//Arial 12
    
$this->SetFont('AngsanaNew','',16);
    
//Background color
    
$this->SetFillColor(200,220,255);
    
//Title
    
$this->Cell(0,6,"เอกสารที่ $num : $label",0,1,'L',1);
    
//Line break
    
$this->Ln(4);
}

function 
ChapterBody($file)
{
    
//Read text file
    
$f=fopen($file,'r');
    
$txt=fread($f,filesize($file));
    
fclose($f);
    
//Times 12
    
$this->SetFont('AngsanaNew','',16);
    
//Output justified text
    
$this->MultiCell(0,5,$txt);
    
//Line break
    
$this->Ln();
    
//Mention in italics
    
$this->SetFont('','I');
    
$this->Cell(0,5,'(จบเอกสาร)');
}

function 
PrintChapter($num,$title,$file)
{
    
$this->AddPage();
    
$this->ChapterTitle($num,$title);
    
$this->ChapterBody($file);
}
}

$pdf=new PDF();
$pdf->SetThaiFont();
$title='เอกสารประกอบโครงงาน การปรับปรุงการจัดรูปแบบการแสดงผลภาษาไทยของโปรแกรม FPDF';
$pdf->SetTitle($title);
$pdf->SetAuthor('Jules Verne');
$pdf->PrintChapter(1,'วิธีการสร้างฟอนต์','วิธีการสร้างฟอนต์.txt');
$pdf->PrintChapter(2,'สรุปการจัดลำดับของตัวอักษร','สรุปการจัดลำดับของอักษร.txt');
$pdf->Output();
?>

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