Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[php:core,VD] disallow extract of uncompressed size larger than option "maxArcFilesSize" #3119

Closed
nao-pon opened this issue Feb 27, 2020 · 0 comments
Assignees

Comments

@nao-pon
Copy link
Member

nao-pon commented Feb 27, 2020

Then, change the default value of "maxArcFilesSize" from "0" (no limit) to "2G" (2Gbytes). This is also a defense against Zip Bomb.

$opts = array(
    'roots'  => array(
        array(
            'driver' => 'LocalFileSystem',
            'path'   => '/path/to/files/',
            'URL'    => 'http://localhost/to/files/',
            'maxArcFilesSize' => '500M', // Extract allow max 500MB
        )
    )
);

// run elFinder
$connector = new elFinderConnector(new elFinder($opts));
$connector->run();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant