Skip to content
Snippets Groups Projects
Commit 5dc7d764 authored by Uma's avatar Uma
Browse files

Merge branch 'kcfinder_vulnerability' into 'master'

Fixes xss vulnerability with kcfinder

See merge request !659
parents d68db448 b577028a
No related branches found
No related tags found
No related merge requests found
......@@ -45,9 +45,20 @@ class uploader {
// INPUT INIT
$input = new input();
$this->get = &$input->get;
$this->post = &$input->post;
$this->cookie = &$input->cookie;
$inputGet = &$input->get ;
foreach ($inputGet as $key => $value) {
$this->get[$key] = vtlib_purify($value);
}
$inputPost= &$input->post;
foreach ($inputPost as $key => $value) {
$this->post[$key] = vtlib_purify($value);
}
$inputCookie= &$input->cookie;
foreach ($inputCookie as $key => $value) {
$this->cookie[$key] = vtlib_purify($value);
}
// LINKING UPLOADED FILE
if (count($_FILES))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment