403Webshell
Server IP : 209.209.40.120  /  Your IP : 216.73.217.112
Web Server : Microsoft-IIS/10.0
System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586
User : NEWWWW$ ( 0)
PHP Version : 8.3.30
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  C:/HostingSpaces/admin/chatme24.com/wwwroot/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : C:/HostingSpaces/admin/chatme24.com/wwwroot//a.php
<?php

/*
 * Check compatibility
 * - PHP version
 * - ioncube
 * - curl
 * - mbstring
 * - gd with freetype
 * - mysql/mysqli
 */

$phpVersion = phpversion();

$errors = array();

$php = explode('.',  $phpVersion);
$phpVersionMain = $php[0];
$phpVersionSub = $php[0];
if($php[0] < 5 || ($php[0] == 5 && $php[1] < 3)) {
    $errors[] = "PHP is incompatible $phpVersion";
}

$extensions = get_loaded_extensions();

$extensionsRequired = array(
    'curl',
    'gd',
    'mbstring',
);

foreach($extensionsRequired as $extension) {
    if (!in_array($extension, $extensions)) {
        $errors[] = "No $extension";
    }
}

if(!in_array('mysql', $extensions) && !in_array('mysqli', $extensions)) {
    $errors[] = 'No MySQL';
}

if(function_exists('gd_info')) {
    $gdInfo = gd_info();
    if(!isset($gdInfo['FreeType Support']) || !$gdInfo['FreeType Support']) {
        $errors[] = 'No GD FreeType Support';
    }
}

if(count($errors)) {
    echo '<b>Hosting configuration issues:</b><br>';
    echo implode('<br>', $errors);
} else {
    echo 'Hosting is compatible';
}

echo '<br><a href="' . $_SERVER['PHP_SELF'] . '?info=1">Info</a>';

if(isset($_GET['info'])) {
    phpinfo();
}

// allow_url_fopen
// ini_set

Youez - 2016 - github.com/yon3zu
LinuXploit