Last-minute updates for release notes.
authorTom Lane
Mon, 5 Aug 2019 15:49:14 +0000 (11:49 -0400)
committerTom Lane
Mon, 5 Aug 2019 15:49:14 +0000 (11:49 -0400)
Security: CVE-2019-10208, CVE-2019-10209

doc/src/sgml/release-10.sgml

index 453ee1536ca269e957240e60df2605921307ed72..7b2130e3c19130bb8b6e2e604523c8212f398956 100644 (file)
 
     
 
+     
+      Require schema qualification to cast to a temporary type when using
+      functional cast syntax (Noah Misch)
+     
+
+     
+      We have long required invocations of temporary functions to
+      explicitly specify the temporary schema, that
+      is pg_temp.func_name(args).
+      Require this as well for casting to temporary types using functional
+      notation, for
+      example pg_temp.type_name(arg).
+      Otherwise it's possible to capture a function call using a temporary
+      object, allowing privilege escalation in much the same ways that we
+      blocked in CVE-2007-2138.
+      (CVE-2019-10208)
+     
+    
+
+    
+