Uncaught Exception Affecting org.webjars.bower:socket.io package, versions [3.0.4,)
Threat Intelligence
EPSS
0.05% (17th
percentile)
Do your applications use this vulnerable package?
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 applications- Snyk ID SNYK-JAVA-ORGWEBJARSBOWER-7278050
- published 20 Jun 2024
- disclosed 19 Jun 2024
- credit Paul Taylor
Introduced: 19 Jun 2024
CVE-2024-38355 Open this link in a new tabHow to fix?
A fix was pushed into the master
branch but not yet published.
Overview
Affected versions of this package are vulnerable to Uncaught Exception in handling error events. If there is no listener set up for such events, an attacker can send packets containing them to crash the Node process.
Workaround
This vulnerability can be avoided by attaching a listener for error events, such as
io.on("connection", (socket) => {
socket.on("error", () => {
// ...
});
});