[security] Self-XSS in setup (host parameter), see PMASA-2011-19
This commit is contained in:

committed by
Marc Delisle

parent
bd3735ba58
commit
0e707906e6
@@ -12,6 +12,7 @@ phpMyAdmin - ChangeLog
|
|||||||
- bug #3449659 [navi] Fast filter broken with table tree
|
- bug #3449659 [navi] Fast filter broken with table tree
|
||||||
- bug #3448485 [GUI] Firefox favicon frameset regression
|
- bug #3448485 [GUI] Firefox favicon frameset regression
|
||||||
- [security] Self-XSS on export options (export server/database/table), see PMASA-2011-20
|
- [security] Self-XSS on export options (export server/database/table), see PMASA-2011-20
|
||||||
|
- [security] Self-XSS in setup (host parameter), see PMASA-2011-19
|
||||||
|
|
||||||
3.4.8.0 (2011-12-01)
|
3.4.8.0 (2011-12-01)
|
||||||
- bug #3425230 [interface] enum data split at space char (more space to edit)
|
- bug #3425230 [interface] enum data split at space char (more space to edit)
|
||||||
|
@@ -425,7 +425,7 @@ class ConfigFile
|
|||||||
return htmlspecialchars($verbose);
|
return htmlspecialchars($verbose);
|
||||||
}
|
}
|
||||||
$host = $this->get("Servers/$id/host");
|
$host = $this->get("Servers/$id/host");
|
||||||
return empty($host) ? 'localhost' : $host;
|
return empty($host) ? 'localhost' : htmlspecialchars($host);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user