From: Tom Lane Date: Thu, 23 Feb 2012 22:48:18 +0000 (-0500) Subject: Last-minute release note updates. X-Git-Tag: REL8_3_18~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ecabae5af98d2b238e82cb59b4fd9b00aad1e63d;p=thirdparty%2Fpostgresql.git Last-minute release note updates. Security: CVE-2012-0866, CVE-2012-0867, CVE-2012-0868 --- diff --git a/doc/src/sgml/release-8.3.sgml b/doc/src/sgml/release-8.3.sgml index e80743f463b..09f867b527d 100644 --- a/doc/src/sgml/release-8.3.sgml +++ b/doc/src/sgml/release-8.3.sgml @@ -34,6 +34,36 @@ + + + Require execute permission on the trigger function for + CREATE TRIGGER (Robert Haas) + + + + This missing check could allow another user to execute a trigger + function with forged input data, by installing it on a table he owns. + This is only of significance for trigger functions marked + SECURITY DEFINER, since otherwise trigger functions run + as the table owner anyway. (CVE-2012-0866) + + + + + + Convert newlines to spaces in names written in pg_dump + comments (Robert Haas) + + + + pg_dump was incautious about sanitizing object names + that are emitted within SQL comments in its output script. A name + containing a newline would at least render the script syntactically + incorrect. Maliciously crafted object names could present a SQL + injection risk when the script is reloaded. (CVE-2012-0868) + + + Fix btree index corruption from insertions concurrent with vacuuming