summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Hay <steve.m.hay@googlemail.com>2018-11-07 21:15:01 +0000
committerSteve Hay <steve.m.hay@googlemail.com>2018-11-07 21:15:01 +0000
commit87e42e552afcb9f1556241cb0d0cda6b5f80b297 (patch)
treee4efb0940d165c9ad8988c2c81c9613acf8ee9ac
parent1d8d75668ebf8560ed8614c29522825c5d6a5cc8 (diff)
downloadperl-87e42e552afcb9f1556241cb0d0cda6b5f80b297.tar.gz
perldelta - Updates for security fixes and bug fixes
-rw-r--r--pod/perldelta.pod33
1 files changed, 30 insertions, 3 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index d8b21c89d3..ca928e3d2f 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -14,9 +14,21 @@ L<perl5280delta>, which describes differences between 5.26.0 and 5.28.0.
=head1 Security
-=head2 XXX
+=head2 [CVE-2018-18311] Integer overflow leading to buffer overflow and segmentation fault
-XXX
+Integer arithmetic in C<Perl_my_setenv()> could wrap when the combined length
+of the environment variable name and value exceeded around 0x7fffffff. This
+could lead to writing beyond the end of an allocated buffer with attacker
+supplied data.
+
+L<[perl #133204]|https://rt.perl.org/Ticket/Display.html?id=133204>
+
+=head2 [CVE-2018-18312] Heap-buffer-overflow write in S_regatom (regcomp.c)
+
+A crafted regular expression could cause heap-buffer-overflow write during
+compilation, potentially allowing arbitrary code execution.
+
+L<[perl #133423]|https://rt.perl.org/Ticket/Display.html?id=133423>
=head1 Incompatible Changes
@@ -42,7 +54,22 @@ L<Module::CoreList> has been upgraded from version 5.20180622 to 5.20181129_28.
=item *
-XXX
+Perl 5.28 introduced an C<index()> optimization when comparing to -1 (or
+indirectly, e.g. >= 0). When this optimization was triggered inside a C<when>
+clause it caused a warning ("Argument %s isn't numeric in smart match"). This
+has now been fixed.
+L<[perl #133368]|https://rt.perl.org/Ticket/Display.html?id=133368>
+
+=item *
+
+Matching of decimal digits in script runs, introduced in Perl 5.28, had a bug
+that led to C<"1\N{THAI DIGIT FIVE}"> matching C</^(*sr:\d+)$/> when it should
+not. This has now been fixed.
+
+=item *
+
+The new in-place editing code no longer leaks directory handles.
+L<[perl #133314]|https://rt.perl.org/Ticket/Display.html?id=133314>
=back