1. 05 Apr, 2024 - 1 commit
  2. 11 Feb, 2022 - 1 commit
  3. 08 Oct, 2021 - 1 commit
  4. 27 Jul, 2021 - 1 commit
  5. 26 Jul, 2021 - 1 commit
  6. 04 May, 2020 - 1 commit
  7. 25 Jan, 2019 - 1 commit
  8. 27 Nov, 2018 - 2 commits
  9. 13 Jun, 2018 - 7 commits
  10. 11 Jun, 2018 - 1 commit
  11. 26 Oct, 2017 - 1 commit
  12. 29 Sep, 2017 - 3 commits
  13. 27 Sep, 2017 - 1 commit
  14. 18 Sep, 2017 - 3 commits
  15. 05 Jul, 2017 - 1 commit
    • Javier Martinez Canillas's avatar
      Fix NULL pointer dereference in jcmd_opt_set_jwkt() · ca9c4e7a
      Javier Martinez Canillas authored
      
      The jcmd_opt_set_jwkt() function calls json_loads() to decode the JSON
      passed using the -i option. This function returns NULL on error and in
      this case is attempted to first get the JSON from either the standard
      input or a file.
      
      But it's never checked again if one of those succeeded, so an invalid
      JSON passed to jose jwk {gen,exc} leads to a NULL pointer dereference:
      
      $ jose jwk gen -i '{"kty":"oct",,"bytes":32}' -o oct.jwk
      Segmentation fault (core dumped)
      
      Signed-off-by: default avatarJavier Martinez Canillas <javierm@redhat.com>
      ca9c4e7a
  16. 29 Jun, 2017 - 1 commit
  17. 16 Jun, 2017 - 7 commits
  18. 14 Jun, 2017 - 4 commits
  19. 12 Jun, 2017 - 2 commits