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

Dependencies causes CVEs in your execution path #928

Open
CleWang opened this issue Mar 1, 2020 · 0 comments
Open

Dependencies causes CVEs in your execution path #928

CleWang opened this issue Mar 1, 2020 · 0 comments

Comments

@CleWang
Copy link

CleWang commented Mar 1, 2020

I found your project uses some dependencies with CVEs and the buggy methods of the CVEs are in the program execution path of your project. To prevent potential risk it may cause, I have suggested some version updates. The following is a detailed content.

  • Vulnerable Dependency: io.netty : netty : 3.3.1.Final

  • Call Chain to Buggy Methods:

    • Some files in your project call the library method org.jboss.netty.handler.codec.http.CookieDecoder.decode(java.lang.String), which can reach the buggy method of CVE-2015-2156.

      • Files in your project:
        Frameworks/WOAdaptors/ERWOAdaptor/Sources/er/woadaptor/ERWOAdaptorUtilities.java
      • One of the possible call chain:
      org.jboss.netty.handler.codec.http.CookieDecoder.decode(java.lang.String)
      org.jboss.netty.handler.codec.http.Cookie.setMaxAge(int) [buggy method]
      
    • Some files in your project call the library method org.jboss.netty.handler.codec.http.CookieEncoder.encode(), which can reach the buggy method of CVE-2015-2156.

      • Files in your project:
        Frameworks/WOAdaptors/ERWOAdaptor/Sources/com/webobjects/appserver/WOResponseWrapper.java
      • One of the possible call chain:
      org.jboss.netty.handler.codec.http.CookieEncoder.encode()
      org.jboss.netty.handler.codec.http.CookieEncoder.encodeServerSide()
      org.jboss.netty.handler.codec.http.Cookie.getMaxAge() [buggy method]
      
  • Update suggestion: version 3.9.9.Final
    3.9.9.Final is a safe version without CVEs. From 3.3.1.Final to 3.9.9.Final, 6 of the APIs (called by 7 times in your project) were modified.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant