File tree 1 file changed +30
-0
lines changed
1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 34
34
35
35
<itemizedlist>
36
36
37
+ <listitem>
38
+ <para>
39
+ Require execute permission on the trigger function for
40
+ <command>CREATE TRIGGER</> (Robert Haas)
41
+ </para>
42
+
43
+ <para>
44
+ This missing check could allow another user to execute a trigger
45
+ function with forged input data, by installing it on a table he owns.
46
+ This is only of significance for trigger functions marked
47
+ <literal>SECURITY DEFINER</>, since otherwise trigger functions run
48
+ as the table owner anyway. (CVE-2012-0866)
49
+ </para>
50
+ </listitem>
51
+
52
+ <listitem>
53
+ <para>
54
+ Convert newlines to spaces in names written in <application>pg_dump</>
55
+ comments (Robert Haas)
56
+ </para>
57
+
58
+ <para>
59
+ <application>pg_dump</> was incautious about sanitizing object names
60
+ that are emitted within SQL comments in its output script. A name
61
+ containing a newline would at least render the script syntactically
62
+ incorrect. Maliciously crafted object names could present a SQL
63
+ injection risk when the script is reloaded. (CVE-2012-0868)
64
+ </para>
65
+ </listitem>
66
+
37
67
<listitem>
38
68
<para>
39
69
Fix btree index corruption from insertions concurrent with vacuuming
You can’t perform that action at this time.
0 commit comments