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


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

namespace Mpdf;

class 
Barcode
{

    public function 
getBarcodeArray($code$type$pr ''$quiet_zone_left null$quiet_zone_right null)
    {
        
$barcode $this->getBarcode($code$type$pr$quiet_zone_left$quiet_zone_right);
        return 
$barcode $barcode->getData() : false;
    }

    public function 
getChecksum($code$type)
    {
        
$barcode $this->getBarcode($code$type);
        return 
$barcode $barcode->getChecksum() : false;
    }

    
/**
     * @param string $code
     * @param string $type
     * @param float $pr
     *
     * @return \Mpdf\Barcode\BarcodeInterface
     */
    
public function getBarcode($code$type$pr 0.0$quiet_zone_left null$quiet_zone_right null)
    {
        switch (
strtoupper($type)) {
            case 
'ISBN':
            case 
'ISSN':
            case 
'EAN13'// EAN 13
                
return new Barcode\EanUpc($code131170.3325.93);

            case 
'UPCA'// UPC-A
                
return new Barcode\EanUpc($code12990.3325.91);

            case 
'UPCE'// UPC-E
                
return new Barcode\EanUpc($code6970.3325.93);

            case 
'EAN8'// EAN 8
                
return new Barcode\EanUpc($code8770.3321.64);

            case 
'EAN2'// 2-Digits UPC-Based Extention
                
return new Barcode\EanExt($code2770.33209);

            case 
'EAN5'// 5-Digits UPC-Based Extention
                
return new Barcode\EanExt($code5770.33209);

            case 
'IMB'// IMB - Intelligent Mail Barcode - Onecode - USPS-B-3200
                
$xdim 0.508// Nominal value for X-dim (bar width) in mm (spec.)
                
$bpi 22// Bars per inch
                
return new Barcode\Imb($code$xdim, ((25.4 $bpi) - $xdim) / $xdim, ['D' => 2'A' => 2'F' => 3'T' => 1]);

            case 
'RM4SCC'// RM4SCC (Royal Mail 4-state Customer Code) - CBC (Customer Bar Code)
                
$xdim 0.508// Nominal value for X-dim (bar width) in mm (spec.)
                
$bpi 22// Bars per inch
                
return new Barcode\Rm4Scc($code$xdim, ((25.4 $bpi) - $xdim) / $xdim, ['D' => 5'A' => 5'F' => 8'T' => 2]);

            case 
'KIX'// KIX (Klant index - Customer index)
                
$xdim 0.508// Nominal value for X-dim (bar width) in mm (spec.)
                
$bpi 22// Bars per inch
                
return new Barcode\Rm4Scc($code$xdim, ((25.4 $bpi) - $xdim) / $xdim, ['D' => 5'A' => 5'F' => 8'T' => 2], true);

            case 
'POSTNET'// POSTNET
                
$xdim 0.508// Nominal value for X-dim (bar width) in mm (spec.)
                
$bpi 22// Bars per inch
                
return new Barcode\Postnet($code$xdim, ((25.4 $bpi) - $xdim) / $xdimfalse);

            case 
'PLANET'// PLANET
                
$xdim 0.508// Nominal value for X-dim (bar width) in mm (spec.)
                
$bpi 22// Bars per inch
                
return new Barcode\Postnet($code$xdim, ((25.4 $bpi) - $xdim) / $xdimtrue);

            case 
'C93'// CODE 93 - USS-93
                
return new Barcode\Code93($code$quiet_zone_left$quiet_zone_right);

            case 
'CODE11'// CODE 11
                
return new Barcode\Code11($code, ($pr 0) ? $pr 3$quiet_zone_left$quiet_zone_right);

            case 
'MSI':  // MSI (Variation of Plessey code)
                
return new Barcode\Msi($codefalse$quiet_zone_left$quiet_zone_right);

            case 
'MSI+'// MSI + CHECKSUM (modulo 11)
                
return new Barcode\Msi($codetrue$quiet_zone_left$quiet_zone_right);

            case 
'CODABAR'// CODABAR
                
return new Barcode\Codabar($code, ($pr 0) ? $pr 2.5$quiet_zone_left$quiet_zone_right);

            case 
'C128A'// CODE 128 A
                
return new Barcode\Code128($code'A'false$quiet_zone_left$quiet_zone_right);

            case 
'C128B'// CODE 128 B
                
return new Barcode\Code128($code'B'false$quiet_zone_left$quiet_zone_right);

            case 
'C128C':  // CODE 128 C
                
return new Barcode\Code128($code'C'false$quiet_zone_left$quiet_zone_right);

            case 
'C128RAW':  // CODE 128 RAW -- code is a space separated list of codes with startcode but without checkdigit,stop,end ex: "105 12 34"
                
return new Barcode\Code128($code'RAW'false$quiet_zone_left$quiet_zone_right);

            case 
'EAN128A':  // EAN 128 A
                
return new Barcode\Code128($code'A'true$quiet_zone_left$quiet_zone_right);

            case 
'EAN128B':  // EAN 128 B
                
return new Barcode\Code128($code'B'true$quiet_zone_left$quiet_zone_right);

            case 
'EAN128C'// EAN 128 C
                
return new Barcode\Code128($code'C'true$quiet_zone_left$quiet_zone_right);

            case 
'C39':  // CODE 39 - ANSI MH10.8M-1983 - USD-3 - 3 of 9.
                
return new Barcode\Code39($this->sanitizeCode($code), ($pr 0) ? $pr 2.5falsefalse$quiet_zone_left$quiet_zone_right);

            case 
'C39+'// CODE 39 with checksum
                
return new Barcode\Code39($this->sanitizeCode($code), ($pr 0) ? $pr 2.5falsetrue$quiet_zone_left$quiet_zone_right);

            case 
'C39E'// CODE 39 EXTENDED
                
return new Barcode\Code39($this->sanitizeCode($code), ($pr 0) ? $pr 2.5truefalse$quiet_zone_left$quiet_zone_right);

            case 
'C39E+'// CODE 39 EXTENDED + CHECKSUM
                
return new Barcode\Code39($this->sanitizeCode($code), ($pr 0) ? $pr 2.5truetrue$quiet_zone_left$quiet_zone_right);

            case 
'S25':  // Standard 2 of 5
                
return new Barcode\S25($codefalse$quiet_zone_left$quiet_zone_right);

            case 
'S25+'// Standard 2 of 5 + CHECKSUM
                
return new Barcode\S25($codetrue$quiet_zone_left$quiet_zone_right);

            case 
'I25':  // Interleaved 2 of 5
                
return new Barcode\I25($code0, ($pr 0) ? $pr 2.5false$quiet_zone_left$quiet_zone_right);

            case 
'I25+'// Interleaved 2 of 5 + CHECKSUM
                
return new Barcode\I25($code0, ($pr 0) ? $pr 2.5true$quiet_zone_left$quiet_zone_right);

            case 
'I25B':  // Interleaved 2 of 5 + Bearer bars
                
return new Barcode\I25($code2, ($pr 0) ? $pr 2.5false$quiet_zone_left$quiet_zone_right);

            case 
'I25B+'// Interleaved 2 of 5 + CHECKSUM + Bearer bars
                
return new Barcode\I25($code2, ($pr 0) ? $pr 2.5true$quiet_zone_left$quiet_zone_right);
        }

        return 
false;
    }

    private function 
sanitizeCode($code)
    {
        
$code str_replace(chr(194) . chr(160), ' '$code); // mPDF 5.3.95  (for utf-8 encoded)
        
$code str_replace(chr(160), ' '$code); // mPDF 5.3.95    (for win-1252)

        
return $code;
    }

}

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