A security team we worked with on a recent project requested that we patch this module, and we're looking to see if this should get rolled into a release and if there's any feedback on the request for this change.

The update includes the following change to imce.page.inc, line 13:

$jsop = isset($_GET['jsop']) ? $_GET['jsop'] : NULL;

to:

$jsop = isset($_GET['jsop']) ? filter_xss($_GET['jsop']) : NULL;

CommentFileSizeAuthor
#1 add_filter_xss_to_get-2480451-01.patch510 bytesr.aubin
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

r.aubin’s picture

ufku’s picture

Status: Active » Closed (works as designed)

Sorry but that's not a security issue.

If you find one please report to the security team.

r.aubin’s picture

Thanks, ufku!