Lucene search

K
githubGitHub Advisory DatabaseGHSA-969W-Q74Q-9J8V
HistoryDec 08, 2022 - 4:00 p.m.

Unsound API in `secp256k1` allows use-after-free and invalid deallocation from safe code

2022-12-0816:00:29
GitHub Advisory Database
github.com
15
secp256k1
use-after-free
invalid deallocation
safe code
rust lang
api-breaking
vulnerability

Because of incorrect bounds on method Secp256k1::preallocated_gen_new it was possible to cause use-after-free from safe consumer code. It was also possible to β€œfree” memory not allocated by the appropriate allocator.

The method takes a place for storing the context as a mutable reference and returns context containing that reference. Because the code internally uses unsafe and the bounds were incorrect it was possible to create a context that outlived the passed reference (e.g. 'static). Because the context can alternatively carry heap-allocated pointer freed on drop it was possible to β€œdeallocate” a pointer that wasn’t returned from appropriate allocator. The code decides whether to free the memory based on type parameter but because of missing bound it was possible to construct the context with invalid parameter.

You are unaffected if you either

  • don’t call Secp256k1::preallocated_gen_new
  • manually checked that your usage of the method is sound
  • upgraded to the patched version of secp256k1 (recommended)

The patched version uses correct bounds which means it is API-breaking. This effectively means adopting the policy of Rust lang itself allowing API-breaking changes to fix soundness bugs. Note however that valid straigthforward usage of the code will continue to compile. Only unsound code or code that propagates the bound in custom generics will fail to compile. If the code is sound fixing the bounds should be sufficient to make the code compile.

See the GitHub issue for example β€œexploit” code and further discussion.

Affected configurations

Vulners
Node
secp256k1-js_projectsecp256k1-jsRange<0.24.2node.js
OR
secp256k1-js_projectsecp256k1-jsRange<0.23.5node.js
OR
secp256k1-js_projectsecp256k1-jsRange<0.22.2node.js