It found two similar errors for my site. This is one:
Possible SQL injection could allow hackers to manipulate, steal and destroy your data
This is the recommended fix:
>>>>>>>>>>>>>>>>>>
Backup the /index.php file
Add the next lines right after '<?php' tag:
if ( isset( $_GET['itemid']) ){ $filtered_var = mysql_escape_string( $_GET['itemid'] ); $_GET['itemid'] = $filtered_var;}
if ( isset( $_POST['itemid']) ){ $filtered_var = mysql_escape_string( $_POST['itemid'] ); $_POST['itemid'] = $filtered_var;}
if ( isset( $_REQUEST['itemid']) ){ $filtered_var = mysql_escape_string( $_REQUEST['itemid'] ); $_REQUEST['itemid'] = $filtered_var;}
<<<<<<<<<<<<<<<<<<<
Nicholas, what do you think? All Joomla sites need to make this update?