Some checks failed
Vulhub Format Check and Lint / format-check (push) Has been cancelled
Vulhub Format Check and Lint / markdown-check (push) Has been cancelled
Vulhub Docker Image CI / longtime-images-test (push) Has been cancelled
Vulhub Docker Image CI / images-test (push) Has been cancelled
21 lines
472 B
PHP
21 lines
472 B
PHP
<?php
|
|
|
|
if (!empty($_FILES)):
|
|
|
|
$ext = pathinfo($_FILES['file_upload']['name'], PATHINFO_EXTENSION);
|
|
if (!in_array($ext, ['gif', 'png', 'jpg', 'jpeg'])) {
|
|
die('Unsupported filetype uploaded.');
|
|
}
|
|
|
|
$size = shell_exec("identify -format '%w x %h' {$_FILES['file_upload']['tmp_name']}");
|
|
|
|
echo "Image size is: $size";
|
|
|
|
else:
|
|
?>
|
|
<form method="post" enctype="multipart/form-data">
|
|
File: <input type="file" name="file_upload">
|
|
<input type="submit">
|
|
</form>
|
|
<?php
|
|
endif;
|