File tree 1 file changed +10
-1
lines changed
1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -11,14 +11,23 @@ public function showPopup($input_id)
11
11
{
12
12
$ mimes = request ('mimes ' );
13
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
+
14
19
try {
15
20
$ mimes = Crypt::decrypt (urldecode (request ('mimes ' )));
16
21
} catch (\Illuminate \Contracts \Encryption \DecryptException $ e ) {
17
22
Log::error ('Someone attempted to tamper with mime types in elfinder popup. The attempt was blocked. ' );
18
23
abort (403 , 'Unauthorized action. ' );
19
24
}
20
25
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
+ }
22
31
23
32
return $ this ->app ['view ' ]
24
33
->make ($ this ->package .'::standalonepopup ' )
You can’t perform that action at this time.
0 commit comments