Git Product home page Git Product logo

Comments (3)

carlosame avatar carlosame commented on September 23, 2024

I checked the latest BCEL source code and the class files are essentially the JDK's unpatched ones, so I have to assume that it is vulnerable. No (public) issue has been opened at their issue tracker so far.

from echoxsl.

carlosame avatar carlosame commented on September 23, 2024

Found the original bug report, which is now public: https://bugs.chromium.org/p/project-zero/issues/detail?id=2290

As part of the compilation process, constants in the XSLT input such as Strings or Numbers get translated into Java constants which are stored at the beginning of the output class file in a structure called the constant pool.

The problem is that neither XSLTC nor BCEL correctly limit the size of the constant pool. As java class files only use 2 bytes to specify the size of the constant pool, its max size is limited to 2**16 - 1 entries (in practice even fewer entries are possible because some constant types take two entries). So what happens if an XSLT stylesheet contains more constants?
BCELs internal constant pool representation uses a standard Java Array for storing constants and does not enforce any limits on its length. When the generated class file is serialized at the end of the compilation process the array length is truncated to a short, but the complete array is written out

The Apache security team was contacted by the CVE reporter back in April.

from echoxsl.

carlosame avatar carlosame commented on September 23, 2024

The XSLTC fixes in EchoXSL, together with the upgrade to the BCEL 6.7.0 dependency, allows closing this issue.

from echoxsl.

Related Issues (1)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.