uppy/packages
Nik Graf 7e5acf105f
fix the server crashing due a malformed json in websocket message (#5920)
You can verify it using:

```
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Media API PoC</title>
</head>

<body>
  <h1>Media API Cross-Site WebSocket Hijacking PoC</h1>

  <script>
    let ws = new WebSocket("wss://<url + base path>/api/poc");
    ws.onopen = function () {
        console.log("WebSocket connection established.");
        ws.send("Malformed JSON");
    };
  </script>
</body>

</html>
```
2025-08-28 22:33:05 +02:00
..
@uppy fix the server crashing due a malformed json in websocket message (#5920) 2025-08-28 22:33:05 +02:00
uppy [ci] release (#5936) 2025-08-28 17:03:19 +02:00