Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Jackson databind vulnerability #824

Merged
merged 2 commits into from
Nov 1, 2018

Commits on Nov 1, 2018

  1. Resolved JacksonDatabind vulnerability

    Stabilized field ordering to deal with serialization changes from unconstrained orderings.
    michael-mclawhorn committed Nov 1, 2018
    Configuration menu
    Copy the full SHA
    3a60cee View commit details
    Browse the repository at this point in the history
  2. Resolved Lucene security vulnerability patch

    Resolved spring core security vulnerability patch
    
    Bumping lucene forced us to implicitly support long return values.  However the Lucene search predicated don't all support long per-page values and some of our pagination implementations need to be able to handle all results in one page.
    
    Since we don't anticipate larger than Integer.MAX_VALUE documents from lucene, we're simply going to validate that the returning hit
    count is less than that and throw an exception if it isn't. (+1 squashed commit)
    michael-mclawhorn committed Nov 1, 2018
    Configuration menu
    Copy the full SHA
    18be7ca View commit details
    Browse the repository at this point in the history