1
0
mirror of https://github.com/mosbth/cimage.git synced 2025-08-22 07:33:02 +02:00

Correct XSS injection in check_system.php.

This commit is contained in:
Mikael Roos
2016-08-31 15:26:14 +02:00
parent f0ab9479d6
commit 401478c839
2 changed files with 3 additions and 2 deletions

View File

@@ -2,7 +2,7 @@
echo 'Current PHP version: ' . phpversion() . '<br><br>';
echo 'Running on: ' . $_SERVER['SERVER_SOFTWARE'] . '<br><br>';
echo 'Running on: ' . htmlentities($_SERVER['SERVER_SOFTWARE']) . '<br><br>';
$no = extension_loaded('exif') ? null : 'NOT';
echo "Extension exif is $no loaded.<br>";