!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/apex_tdfonline/php/3ros/phpExcel/PHPExcel/Shared/JAMA/docs/   drwxr-xr-x
Free 13.53 GB of 61.93 GB (21.86%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     download.php (1.63 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
* Script to create REGRESS package for download
*
* @author Mike Bommarito
* @author Paul Meagher
* @version 0.3
* @modified Apr 2, 2006
*
* Note: Script requires the PEAR Archive_Tar package be installed:
*
* @see http://pear.php.net/package/Archive_Tar
*/

// name and directory of package
$pkgName   "JAMA";

// root of PHP/Math build directory
$buildDir  substr(dirname(__FILE__), 0, -strlen($pkgName));

// switch to PHP/Math build directory
chdir($buildDir);

$tarName "$pkgName.tar.gz";  

$tarPath $buildDir.$pkgName."/downloads/".$tarName;

if(
$_GET['op'] == "download") {  
  
    require_once(
'Archive/Tar.php');  
    
    
$tar   = new Archive_Tar($tarPath);

  
// create $pkgName archive under $pkgName folder
  
$files glob("$pkgName/*.php");
  
$files array_merge($filesglob("$pkgName/*.TXT"));
  
$files array_merge($filesglob("$pkgName/docs/*.php"));
  
$files array_merge($filesglob("$pkgName/docs/includes/*.php"));
  
$files array_merge($filesglob("$pkgName/examples/*.php"));
  
$files array_merge($filesglob("$pkgName/tests/*.php"));  
  
$files array_merge($filesglob("$pkgName/utils/*.php"));    
  
    
$tar->create($files);
        
    
// create the download url
  
$webDir  substr($_SERVER['PHP_SELF'], 0, -18);
  
$urlPath "http://".$_SERVER['HTTP_HOST'].$webDir."/downloads";
  
  
// redirect to download url
    
header("Location: $urlPath/$tarName");

}

include_once 
"includes/header.php";
include_once 
"includes/navbar.php";
?>
<p>
Download current version: 
</p>
<ul>
 <li><a href='<?php echo $_SERVER['PHP_SELF']."?op=download"?>'><?php echo $tarName ?></a></li>
</ul>
<?php
include_once "includes/footer.php";
?>

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