diff -rup binutils.orig/bfd/elf-attrs.c binutils-2.27/bfd/elf-attrs.c
--- binutils.orig/bfd/elf-attrs.c 2018-05-30 09:57:23.385080577 +0100
+++ binutils-2.27/bfd/elf-attrs.c 2018-05-30 10:01:03.528712202 +0100
@@ -438,6 +438,15 @@ _bfd_elf_parse_attributes (bfd *abfd, El
/* PR 17512: file: 2844a11d. */
if (hdr->sh_size == 0)
return;
+ if (hdr->sh_size > bfd_get_size (abfd))
+ {
+ /* xgettext:c-format */
+ _bfd_error_handler (_("%B: error: attribute section '%A' too big: %#llx"),
+ abfd, hdr->bfd_section, (long long) hdr->sh_size);
+ bfd_set_error (bfd_error_invalid_operation);
+ return;
+ }
+
contents = (bfd_byte *) bfd_malloc (hdr->sh_size);
if (!contents)
return;
diff -rup binutils.orig/bfd/elf.c binutils-2.27/bfd/elf.c
--- binutils.orig/bfd/elf.c 2018-05-30 09:57:23.382080610 +0100
+++ binutils-2.27/bfd/elf.c 2018-05-30 10:01:52.766182199 +0100
@@ -297,6 +297,7 @@ bfd_elf_get_str_section (bfd *abfd, unsi
/* Allocate and clear an extra byte at the end, to prevent crashes
in case the string table is not terminated. */
if (shstrtabsize + 1 <= 1
+ || shstrtabsize > bfd_get_size (abfd)
|| bfd_seek (abfd, offset, SEEK_SET) != 0
|| (shstrtab = (bfd_byte *) bfd_alloc (abfd, shstrtabsize + 1)) == NULL)
shstrtab = NULL;