There have been 5 Drupal security announcements for September 2008 about 3rd party modules with Cross-Site-Scripting vulnerabilities in them.
The Drupal core is not affected in any of these cases so updating the module would be adequate in all but one situation. See DRUPAL-SA-2008-048-b for more information.
from:
'label' => t($field['widget']['label']),
to:
'label' => check_plain(t($field['widget']['label']))
Comments
Post new comment