UnknownSec Bypass
403
:
/
mnt
/
lmsestudio-instance-vol002
/
lms_4cd92d08affc
/
config
/ [
drwxr-xr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
elfinder.php
<?php return array( /* |-------------------------------------------------------------------------- | Upload dir |-------------------------------------------------------------------------- | | The dir where to store the images (relative from public) | */ 'dir' => ['files'], /* |-------------------------------------------------------------------------- | Filesystem disks (Flysytem) |-------------------------------------------------------------------------- | | Define an array of Filesystem disks, which use Flysystem. | You can set extra options, example: | | 'my-disk' => [ | 'URL' => url('to/disk'), | 'alias' => 'Local storage', | ] */ 'disks' => [ 'ckeditor_images' => [ //'URL' => url('/images'), 'URL' => '/storage/editor/images', 'alias' => 'Local storage', 'tmbURL' => '/storage/editor/tmb', 'tmbPath' => public_path() . '/storage/editor/tmb' ] ], /* |-------------------------------------------------------------------------- | Routes group config |-------------------------------------------------------------------------- | | The default group settings for the elFinder routes. | */ 'route' => [ 'prefix' => 'elfinder', 'middleware' => null #'replace-this-with-your-middleware', //Set to null to disable middleware filter ], /* |-------------------------------------------------------------------------- | Access filter |-------------------------------------------------------------------------- | | Filter callback to check the files | */ 'access' => 'Barryvdh\Elfinder\Elfinder::checkAccess', /* |-------------------------------------------------------------------------- | Roots |-------------------------------------------------------------------------- | | By default, the roots file is LocalFileSystem, with the above public dir. | If you want custom options, you can set your own roots below. | */ 'roots' => null, 'options' => array( 'locale' => 'pt_BR', ), /* |-------------------------------------------------------------------------- | Options |-------------------------------------------------------------------------- | | These options are merged, together with 'roots' and passed to the Connector. | See https://github.com/Studio-42/elFinder/wiki/Connector-configuration-options-2.1 | */ 'root_options' => array( 'uploadMaxSize' => '2M', 'uploadAllow' => array( 'image/png', 'image/jpg', 'image/pjpeg', 'image/jpeg', 'image/pjpeg', 'image/gif', 'image/bmp', 'image/x-windows-bmp' ), 'uploadDeny' => array( 'application/octet-stream', 'application/msword', 'application/excel', 'application/vnd.ms-excel', 'application/x-excel', 'application/x-msexcel', 'application/pdf', 'application/mspowerpoint', 'application/vnd.ms-powerpoint', 'application/mspowerpoint', 'application/powerpoint', 'application/vnd.ms-powerpoint', 'application/x-mspowerpoint', 'application/x-compressed', 'application/x-zip-compressed', 'application/zip', 'multipart/x-zip' ), 'uploadOrder' => array('allow', 'deny') ), );
Copyright © 2026 - UnknownSec