!C99Shell v. 1.0 pre-release build #13!

Software: Apache. PHP/5.5.15 

uname -a: Windows NT SVR-DMZ 6.1 build 7600 (Windows Server 2008 R2 Enterprise Edition) i586 

SYSTEM 

Safe-mode: OFF (not secure)

E:\xampp\xampp\htdocs\xampp\   drwxrwxrwx
Free 8.81 GB of 239.26 GB (3.68%)
Detected drives: [ a ] [ c ] [ d ] [ e ] [ f ]
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     iart.php (3.33 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
    
include "langsettings.php";

    
// Copyright (C) 2002/2003 Kai Seidler <oswald@apachefriends.org>
    //
    // This program is free software; you can redistribute it and/or modify
    // it under the terms of the GNU General Public License as published by
    // the Free Software Foundation; either version 2 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful,
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU General Public License for more details.
    //
    // You should have received a copy of the GNU General Public License
    // along with this program; if not, write to the Free Software
    // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

    
$text $_REQUEST['text'];
    if (
$text == "") {
        
$text "ceci n est pas un ami d apache";
    }
    if (
$_REQUEST['img'] != 1) {
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
<html>
    <head>
        <meta name="author" content="Kai Oswald Seidler">
        <link href="xampp.css" rel="stylesheet" type="text/css">
        <title><?php echo $TEXT['iart-head']; ?></title>
    </head>

    <body>
        <br><h1><?php echo $TEXT['iart-head']; ?></h1>

        <img width="520" height="320" src="<?php echo basename($_SERVER['PHP_SELF']); ?>?<?php echo htmlentities("img=1&text=".urlencode($text)); ?>" alt="">
        <p class="small"><?php echo $TEXT['iart-text1']; ?></p>
        <form name="ff" action="iart.php" method="get">
            <input type="text" name="text" value="<?php echo htmlspecialchars($text); ?>" size="30">
            <input type="submit" value="<?php echo $TEXT['iart-ok']; ?>">
        </form>
        <?php include 'showcode.php'?>
    </body>
</html>
<?php
        
exit;
    }

    
$fontfile "./AnkeCalligraph.TTF";

    
$size 9;
    
$h 320;
    
$w 520;

    
$im  =  ImageCreate($w$h);

    
$fill ImageColorAllocate($im25112134);
    
$light ImageColorAllocate($im255255255);
    
$corners ImageColorAllocate($im153153102);
    
$dark ImageColorAllocate($im5151 0);
    
$black ImageColorAllocate($im 00);

    
$colors[1] = ImageColorAllocate($im255255255);
    
$colors[2] = ImageColorAllocate($im255 0.95255 0.95255 0.95);
    
$colors[3] = ImageColorAllocate($im255 0.9255 0.9255 0.9);
    
$colors[4] = ImageColorAllocate($im255 0.85255 0.85255 0.85);

    
header("Content-Type: image/png");

    
srand(time());

    
$c 1;
    
$anz 10;
    
$step = ($anz);
    for (
$i 0$i $anz$i += 1) {
        
$size rand(770);
        
$x rand(-390390);
        
$y rand(-100400);
        
$color $colors[$c];
        
$c += $step;
        
ImageTTFText($im$size0$x$y$color$fontfile$_GET['text']);
    }

    
ImageLine($im00$w 10$light);
    
ImageLine($im000$h 2$light);
    
ImageLine($im$w 10$w-1$h$dark);
    
ImageLine($im0$h 1$w 1$h 1$dark);
    
ImageSetPixel($im$h 1$corners);
    
ImageSetPixel($im$w 10$corners);

    
ImagePNG($im);
    exit;
?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

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

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

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0156 ]--