Skip to content

Commit 3275e4b

Browse files
committed
prevent mime types tampering
1 parent d7d729d commit 3275e4b

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

src/BackpackElfinderController.php

+10-1
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,23 @@ public function showPopup($input_id)
1111
{
1212
$mimes = request('mimes');
1313

14+
if (! isset($mimes)) {
15+
Log::error('Someone attempted to tamper with mime types in elfinder popup. The attempt was blocked.');
16+
abort(403, 'Unauthorized action.');
17+
}
18+
1419
try {
1520
$mimes = Crypt::decrypt(urldecode(request('mimes')));
1621
} catch (\Illuminate\Contracts\Encryption\DecryptException $e) {
1722
Log::error('Someone attempted to tamper with mime types in elfinder popup. The attempt was blocked.');
1823
abort(403, 'Unauthorized action.');
1924
}
2025

21-
request()->merge(['mimes' => urlencode(serialize($mimes))]);
26+
if (! empty($mimes)) {
27+
request()->merge(['mimes' => urlencode(serialize($mimes))]);
28+
} else {
29+
request()->merge(['mimes' => '']);
30+
}
2231

2332
return $this->app['view']
2433
->make($this->package.'::standalonepopup')

0 commit comments

Comments
 (0)