Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve Read Performance #68

Merged
merged 3 commits into from
Dec 3, 2024
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.idea
.DS_Store
out
gnark-mbu
gnark-mbu.exe
Expand Down
4 changes: 1 addition & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ require (
)

require (
github.com/consensys/gnark-crypto v0.9.2
github.com/consensys/gnark-crypto v0.9.1

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Risk: Affected version of github.com/Consensys/gnark-crypto is vulnerable to Deserialization Of Untrusted Data. The package allows signature malleability, which occurs because deserialization of EdDSA and ECDSA signatures does not ensure that the data is in a certain interval.

Fix: Upgrade this library to at least version 0.12.0 at semaphore-mtb/go.mod:69.

Reference(s): GHSA-9xfq-8j3r-xp5g, CVE-2023-44273

Ignore this finding from ssc-896f6dd6-11b2-4880-b2e7-283f29220980.

0xOsiris marked this conversation as resolved.
Show resolved Hide resolved
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/fxamacker/cbor/v2 v2.4.0 // indirect
github.com/mmcloughlin/addchain v0.4.0 // indirect
Expand All @@ -78,5 +78,3 @@ require (
golang.org/x/sys v0.23.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)

replace github.com/consensys/gnark => github.com/ewoolsey/gnark v0.8.3
Loading