Skip to main content

Remediation Steps

Follow the steps below to remediate this finding on Joomla.

  1. Use Joomla's JFilterInput or InputFilter to sanitise input:

    $input = JFactory::getApplication()->input;
    $value = $input->get('param', '', 'STRING');
  2. For output, use JText::_() for translated strings and htmlspecialchars() or the Joomla HTMLHelper for raw values.