diff options
author | Gunnar Wrobel <wrobel@gentoo.org> | 2007-10-25 06:57:43 +0000 |
---|---|---|
committer | Gunnar Wrobel <wrobel@gentoo.org> | 2007-10-25 06:57:43 +0000 |
commit | f349f348d8b79222eed472b4a4bda050210dc462 (patch) | |
tree | 44de64c99e865a7a12cb31c1be86efa43f641c99 /dev-db/phpmyadmin/files | |
parent | keyworded ~x86, bug 195815 (diff) | |
download | gentoo-2-f349f348d8b79222eed472b4a4bda050210dc462.tar.gz gentoo-2-f349f348d8b79222eed472b4a4bda050210dc462.tar.bz2 gentoo-2-f349f348d8b79222eed472b4a4bda050210dc462.zip |
Removed insecure versions from the tree (see sec issue #196237).
(Portage version: 2.1.3.14)
Diffstat (limited to 'dev-db/phpmyadmin/files')
-rw-r--r-- | dev-db/phpmyadmin/files/digest-phpmyadmin-2.10.1 | 3 | ||||
-rw-r--r-- | dev-db/phpmyadmin/files/digest-phpmyadmin-2.11.1.1 | 3 | ||||
-rw-r--r-- | dev-db/phpmyadmin/files/phpmyadmin-2.11.1-issue_195707.patch | 29 |
3 files changed, 0 insertions, 35 deletions
diff --git a/dev-db/phpmyadmin/files/digest-phpmyadmin-2.10.1 b/dev-db/phpmyadmin/files/digest-phpmyadmin-2.10.1 deleted file mode 100644 index 3141c26b1626..000000000000 --- a/dev-db/phpmyadmin/files/digest-phpmyadmin-2.10.1 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 4426bbc1eadb43707b3a947891ae4d9e phpMyAdmin-2.10.1-all-languages-utf-8-only.tar.bz2 2155294 -RMD160 55e769c92c20c0b90e87fb4291b49b8229844fd1 phpMyAdmin-2.10.1-all-languages-utf-8-only.tar.bz2 2155294 -SHA256 78bbb7b9affb3f4671ecb1c97ebdd9338206978b3aca5653ceb5e0747ec1c8c8 phpMyAdmin-2.10.1-all-languages-utf-8-only.tar.bz2 2155294 diff --git a/dev-db/phpmyadmin/files/digest-phpmyadmin-2.11.1.1 b/dev-db/phpmyadmin/files/digest-phpmyadmin-2.11.1.1 deleted file mode 100644 index b1bc2718d33c..000000000000 --- a/dev-db/phpmyadmin/files/digest-phpmyadmin-2.11.1.1 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 463502c5003ba698ef8848b25dd582a2 phpMyAdmin-2.11.1.1-all-languages-utf-8-only.tar.bz2 2227854 -RMD160 61ffb49785252f351f53db79078ddbb69cc5258a phpMyAdmin-2.11.1.1-all-languages-utf-8-only.tar.bz2 2227854 -SHA256 63b1a57dec023ced9fcaa111b91be99a92822b1203593813492aa5c73b006964 phpMyAdmin-2.11.1.1-all-languages-utf-8-only.tar.bz2 2227854 diff --git a/dev-db/phpmyadmin/files/phpmyadmin-2.11.1-issue_195707.patch b/dev-db/phpmyadmin/files/phpmyadmin-2.11.1-issue_195707.patch deleted file mode 100644 index d9fafb8a38ec..000000000000 --- a/dev-db/phpmyadmin/files/phpmyadmin-2.11.1-issue_195707.patch +++ /dev/null @@ -1,29 +0,0 @@ ---- trunk/phpMyAdmin/scripts/setup.php 2007/06/03 23:30:40 10420 -+++ trunk/phpMyAdmin/scripts/setup.php 2007/10/10 07:30:59 10748 -@@ -1395,7 +1395,7 @@ - } else { - mysql_close($conn); - } -- } else { -+ } else { - $socket = empty($new_server['socket']) || $new_server['connect_type'] == 'tcp' ? NULL : $new_server['socket']; - $port = empty($new_server['port']) || $new_server['connect_type'] == 'socket' ? NULL : $new_server['port']; - $conn = @mysqli_connect($new_server['host'], $new_server['controluser'], $new_server['controlpass'], NULL, $port, $socket); -@@ -1951,12 +1951,16 @@ - if (empty($_SERVER['REQUEST_URI']) || empty($_SERVER['HTTP_HOST'])) { - $redir = ''; - } else { -- $redir = ' If your server is also configured to accept HTTPS request follow <a href="https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] . '">this link</a> to use secure connection.'; -+ $redir = ' If your server is also configured to accept HTTPS request' -+ . ' follow <a href="https://' -+ . htmlspecialchars($_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']) -+ . '">this link</a> to use secure connection.'; - } - message('warning', 'You are not using secure connection, all data (including sensitive, like passwords) are transfered unencrypted!' . $redir, 'Not secure connection'); - } - break; - } -+echo $_SERVER['REQUEST_URI']; - - // Should we show information? - if ($show_info) { |