Missing sanitization on the table, column and index names leads to XSS vulnerabilities, see PMASA-2011-13
This commit is contained in:
@@ -70,7 +70,7 @@ while ($row = PMA_DBI_fetch_assoc($rowset)) {
|
||||
echo '<div>' . "\n";
|
||||
}
|
||||
|
||||
echo '<h2>' . $table . '</h2>' . "\n";
|
||||
echo '<h2>' . htmlspecialchars($table) . '</h2>' . "\n";
|
||||
|
||||
/**
|
||||
* Gets table informations
|
||||
|
Reference in New Issue
Block a user