Skip to content

Commit bd84899

Browse files
committed
security: update if file extension is executable when uploading files
1 parent 379dbda commit bd84899

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

src/LfmPath.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,9 @@ public function validateUploadedFile($file)
253253
$validator->nameIsNotDuplicate($this->getNewName($file), $this);
254254
}
255255

256-
$validator->isNotExcutable(config('lfm.disallowed_mimetypes', ['text/x-php', 'text/html', 'text/plain']));
256+
$validator->mimetypeIsNotExcutable(config('lfm.disallowed_mimetypes', ['text/x-php', 'text/html', 'text/plain']));
257+
258+
$validator->extensionIsNotExcutable(config('lfm.disallowed_extensions', ['php', 'html']));
257259

258260
if (config('lfm.should_validate_mime', false)) {
259261
$validator->mimeTypeIsValid($this->helper->availableMimeTypes());

src/LfmUploadValidator.php

+12-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public function nameIsNotDuplicate($new_file_name, LfmPath $lfm_path)
6161
return $this;
6262
}
6363

64-
public function isNotExcutable($excutable_mimetypes)
64+
public function mimetypeIsNotExcutable($excutable_mimetypes)
6565
{
6666
$mimetype = $this->file->getMimeType();
6767

@@ -72,6 +72,17 @@ public function isNotExcutable($excutable_mimetypes)
7272
return $this;
7373
}
7474

75+
public function extensionIsNotExcutable($excutable_extensions)
76+
{
77+
$extension = $this->file->getClientOriginalExtension();
78+
79+
if (in_array($extension, $excutable_extensions)) {
80+
throw new ExcutableFileException();
81+
}
82+
83+
return $this;
84+
}
85+
7586
public function mimeTypeIsValid($available_mime_types)
7687
{
7788
$mimetype = $this->file->getMimeType();

src/config/lfm.php

+3
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,9 @@
116116
// mimetypes of executables to prevent from uploading
117117
'disallowed_mimetypes' => ['text/x-php', 'text/html', 'text/plain'],
118118

119+
// extensions of executables to prevent from uploading
120+
'disallowed_extensions' => ['php', 'html'],
121+
119122
// Item Columns
120123
'item_columns' => ['name', 'url', 'time', 'icon', 'is_file', 'is_image', 'thumb_url'],
121124

0 commit comments

Comments
 (0)