Lucene search

K
redhatcveRedhat.comRH:CVE-2018-12120
HistoryApr 04, 2020 - 5:00 a.m.

CVE-2018-12120

2020-04-0405:00:25
redhat.com
access.redhat.com
22

EPSS

0.002

Percentile

60.2%

Node.js: All versions prior to Node.js 6.15.0: Debugger port 5858 listens on any interface by default: When the debugger is enabled with node --debug or node debug, it listens to port 5858 on all interfaces by default. This may allow remote computers to attach to the debug port and evaluate arbitrary JavaScript. The default interface is now localhost. It has always been possible to start the debugger on a specific interface, such as node --debug=localhost. The debugger was removed in Node.js 8 and replaced with the inspector, so no versions from 8 and later are vulnerable.

Mitigation

  • On any version :
    Ensure the firewall prevents access to port 5858 on untrusted interfaces.

  • On nodejs 6 :
    To enforce the debug on a specific interface:
    $ node --debug=localhost