Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions crates/parser-msgpack/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# socketioxide-parser-msgpack 0.17.2
* fix(security): bound the packet decoder recursion depth to prevent an unauthenticated remote DoS via
deeply nested MsgPack packets (uncontrolled recursion → stack overflow, CWE-674). See [Github Advisory](https://github.com/Totodore/socketioxide/security/advisories/GHSA-c6g7-r2mf-pf5g)

# socketioxide-parser-msgpack 0.17.1
* deps: bump `socketioxide-core` to 0.18

Expand Down
2 changes: 1 addition & 1 deletion crates/parser-msgpack/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "socketioxide-parser-msgpack"
description = "Msgpack parser for the socketioxide protocol"
version = "0.17.1"
version = "0.17.2"
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
Expand Down
Loading