External, Non-PPA KXStudio Repository
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
710B

  1. Description: CVE-2017-6004: crafted regular expression may cause denial of service
  2. Origin: upstream, https://vcs.pcre.org/pcre/code/trunk/pcre_jit_compile.c?r1=1676&r2=1680&view=patch
  3. Bug: https://bugs.exim.org/show_bug.cgi?id=2035
  4. Bug-Debian: https://bugs.debian.org/855405
  5. Forwarded: not-needed
  6. Author: Salvatore Bonaccorso <carnil@debian.org>
  7. Last-Update: 2017-02-17
  8. --- a/pcre_jit_compile.c
  9. +++ b/pcre_jit_compile.c
  10. @@ -8111,7 +8111,7 @@ if (opcode == OP_COND || opcode == OP_SC
  11. if (*matchingpath == OP_FAIL)
  12. stacksize = 0;
  13. - if (*matchingpath == OP_RREF)
  14. + else if (*matchingpath == OP_RREF)
  15. {
  16. stacksize = GET2(matchingpath, 1);
  17. if (common->currententry == NULL)