Remediation Steps
Follow the steps below to remediate this finding on Joomla.
Use Joomla's JFilterInput or InputFilter to sanitise input:
$input = JFactory::getApplication()->input; $value = $input->get('param', '', 'STRING');For output, use JText::_() for translated strings and htmlspecialchars() or the Joomla HTMLHelper for raw values.