Prv8 Shell
Server : Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4
System : Linux server.jackjohnson.com 2.6.32-279.5.2.el6.x86_64 #1 SMP Fri Aug 24 01:07:11 UTC 2012 x86_64
User : jackjohn ( 502)
PHP Version : 5.3.17
Disable Function : NONE
Directory :  /home/jackjohn/public_html/cgi-bin/sc/scphp/v.zero/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/jackjohn/public_html/cgi-bin/sc/scphp/v.zero/check.php
<?php
header('Content-type: text/plain; charset=UTF-8');
$passed = true;
$errors = '';
if (!function_exists('version_compare') || version_compare(PHP_VERSION, '5.4.0', '<')) {
  $passed = false;
  $errors .= '|PHP version too low. Version 5.4.0 or greater required.';
}
$requiredExtensions = array('xmlwriter', 'openssl', 'dom', 'hash', 'curl');
$missingExtensions = '';
foreach ($requiredExtensions AS $ext) {
  if (!extension_loaded($ext)) {
    $missingExtensions .= (($missingExtensions != '') ? ', '.$ext : $ext);
  }
}
if($missingExtensions != '')
{
  $errors .= '|Missing PHP extensions: ' . $missingExtensions;
  $passed = false;
}

if($passed)
  echo 'pass';
else
  echo 'fail' . $errors;

haha - 2025