Skip to content

Commit e28eb6e

Browse files
authored
Merge pull request #61 from Laravel-Backpack/prevent-mimetypes-tampering
Prevent mimetypes tampering
2 parents d317f5c + b6d85c9 commit e28eb6e

File tree

3 files changed

+47
-3
lines changed

3 files changed

+47
-3
lines changed

config/elfinder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
*/
4040

4141
'route' => [
42-
'prefix' => config('backpack.base.route_prefix', 'admin').'/elfinder',
42+
'prefix' => config('backpack.base.route_prefix', 'admin').'/elfinder',
4343
'middleware' => ['web', config('backpack.base.middleware_key', 'admin')], //Set to null to disable middleware filter
4444
],
4545

src/BackpackElfinderController.php

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<?php
2+
3+
namespace Backpack\FileManager;
4+
5+
use Illuminate\Support\Facades\Crypt;
6+
use Illuminate\Support\Facades\Log;
7+
8+
class BackpackElfinderController extends \Barryvdh\Elfinder\ElfinderController
9+
{
10+
public function showPopup($input_id)
11+
{
12+
$mimes = request('mimes');
13+
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+
19+
try {
20+
$mimes = Crypt::decrypt(urldecode(request('mimes')));
21+
} catch (\Illuminate\Contracts\Encryption\DecryptException $e) {
22+
Log::error('Someone attempted to tamper with mime types in elfinder popup. The attempt was blocked.');
23+
abort(403, 'Unauthorized action.');
24+
}
25+
26+
request()->merge(['mimes' => urlencode(serialize($mimes))]);
27+
if (! empty($mimes)) {
28+
request()->merge(['mimes' => urlencode(serialize($mimes))]);
29+
} else {
30+
request()->merge(['mimes' => '']);
31+
}
32+
33+
return $this->app['view']
34+
->make($this->package.'::standalonepopup')
35+
->with($this->getViewVars())
36+
->with(compact('input_id'));
37+
}
38+
}

src/FileManagerServiceProvider.php

+8-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
namespace Backpack\FileManager;
44

5+
use Barryvdh\Elfinder\ElfinderController;
56
use Illuminate\Support\Facades\Config;
67
use Illuminate\Support\ServiceProvider;
78

@@ -27,6 +28,11 @@ public function boot()
2728
}
2829
}
2930

31+
public function register()
32+
{
33+
$this->app->bind(ElfinderController::class, BackpackElfinderController::class);
34+
}
35+
3036
/**
3137
* Console-specific booting.
3238
*
@@ -40,11 +46,11 @@ protected function bootForConsole()
4046
], 'views');
4147

4248
$this->publishes([
43-
__DIR__.'/../config/elfinder.php' => config_path('elfinder.php'),
49+
__DIR__.'/../config/elfinder.php' => config_path('elfinder.php'),
4450
], 'config');
4551

4652
$this->publishes([
47-
__DIR__.'/../public/packages/backpack/filemanager/themes/Backpack' => public_path('packages/backpack/filemanager/themes/Backpack'),
53+
__DIR__.'/../public/packages/backpack/filemanager/themes/Backpack' => public_path('packages/backpack/filemanager/themes/Backpack'),
4854
], 'public');
4955

5056
// Registering package commands.

0 commit comments

Comments
 (0)