From 10d5ed62e25df37187eee4bee119751da068310e Mon Sep 17 00:00:00 2001 From: "advisory-database[bot]" <45398580+advisory-database[bot]@users.noreply.github.com> Date: Fri, 6 Sep 2024 19:41:31 +0000 Subject: [PATCH] Publish GHSA-9xcg-3q8v-7fq6 --- .../GHSA-9xcg-3q8v-7fq6.json | 76 +++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 advisories/github-reviewed/2024/09/GHSA-9xcg-3q8v-7fq6/GHSA-9xcg-3q8v-7fq6.json diff --git a/advisories/github-reviewed/2024/09/GHSA-9xcg-3q8v-7fq6/GHSA-9xcg-3q8v-7fq6.json b/advisories/github-reviewed/2024/09/GHSA-9xcg-3q8v-7fq6/GHSA-9xcg-3q8v-7fq6.json new file mode 100644 index 00000000000..890e8a9fd70 --- /dev/null +++ b/advisories/github-reviewed/2024/09/GHSA-9xcg-3q8v-7fq6/GHSA-9xcg-3q8v-7fq6.json @@ -0,0 +1,76 @@ +{ + "schema_version": "1.4.0", + "id": "GHSA-9xcg-3q8v-7fq6", + "modified": "2024-09-06T19:40:01Z", + "published": "2024-09-06T19:40:01Z", + "aliases": [ + "CVE-2024-45040" + ], + "summary": "Commitments to private witnesses in Groth16 as implemented break zero-knowledge property", + "details": "\nThis report concerns the Groth16 prover when used with commitments (as in `frontend.Committer`). To simplify exposition of the issue, I will focus on the case of a single commitment, to only private witnesses. But the issue should be present whenever commitments are used that include private witnesses.\n>\nThe commitment to private witnesses `w_i` is computed as\n```\nc = sum_i w_i * b_i\n```\nwhere `b_i` would be `ProvingKey.CommitmentKeys[0].Basis[i]` in the code.\n\nWhile this is a binding commitment, it is not hiding. In practice, an adversary will know the points `b_i`, as they are part of the proving key, and can verify correctness of a guess for the values of `w_i` by computing `c'` as the right hand side of the above formula, and checking whether `c'` is equal to `c`. I attach a proof of concept that demonstrates this.\n\nThis breaks the perfect zero-knowledge property of Groth16, so the Groth16 scheme using commitments to private witnesses as implemented by gnark fails to be a zk-SNARK.\n\nThe code indicates that the extension to Groth16 given by the commitments follows the paper \"Recursion over Public-Coin Interactive Proof Systems; Faster Hash Verification\" by Alexandre Belling, Azam Soleimanian, and Olivier Begassat. In that paper, it seems that commitments are applied to what were originally public inputs, which are moved to private witnesses for efficiency reasons. In any case, that paper does not discuss any hiding/privacy/zero-knowledge properties of their protocols.\n\nSo for the use-cases envisioned by that paper, having the commitment not be hiding and losing zero-knowledge of Groth16 might be adequate. However, the documentation by gnark does not make clear that committing to private witnesses loses the zero-knowledge property. The documentation for `frontend.Committer` does not mention this, and the following snippet from `std/multicommit/doc_test.go`, where private witness variables are named `Secrets` and are committed, seems to actively suggest that committed witnesses are still private.\n```go\n// MultipleCommitmentCircuit is an example circuit showing usage of multiple\n// independent commitments in-circuit.\ntype MultipleCommitmentsCircuit struct {\n Secrets [4]frontend.Variable\n}\n\nfunc (c *MultipleCommitmentsCircuit) Define(api frontend.API) error {\n // first callback receives first unique commitment derived from the root commitment\n multicommit.WithCommitment(api, func(api frontend.API, commitment frontend.Variable) error {\n // compute (X-s[0]) * (X-s[1]) for a random X\n res := api.Mul(api.Sub(commitment, c.Secrets[0]), api.Sub(commitment, c.Secrets[1]))\n api.AssertIsDifferent(res, 0)\n return nil\n }, c.Secrets[:2]...)\n // ...\n```\n\nThus it seems to me that the intention likely was (and users will be expecting) that gnark's implementation of Groth16 with these commitments should still have zero-knowledge and that the commitments should be hiding.\n\nThe way to fix this is likely to adjust the commitment to be hiding the way that is done in the LegoSNARK paper (https://eprint.iacr.org/2019/142.pdf). To expand:\n\nFirst, let me fix some notation.\n\nCurrently, the verifying key has two points on G2 used for checking the proof of knowledge for the commitment: `g` and `g'=-1/σ * g` (in the code: `VerifyingKey.CommitmentKey.G` and `VerifyingKey.CommitmentKey.GRootSigmaNeg`).\nThe commitment itself is then `c = sum_i w_i * b_i`, where `b_i` are on G1, and the proof of knowledge associated to `c` is calculated as `pok = sum_i w_i * b'_i`, where `b'_i = σ*b_i` (in the code `b_i` and `b'_i` are `ProvingKey.CommitmentKeys.Basis[0][i]` and `ProvingKey.CommitmentKeys.BasisExpSigma[0][i]`). The proof of knowledge is then verified by checking `e(c, g) + e(pok, g') = 0` (I am using additive notation throughout here).\n\nThe Groth16 proof is verified by checking\n```\ne(Krs, -[δ]₂) + e(c, -[γ]₂) + e(term involving public inputs, -[γ]₂) + other terms = 0\n```\n\nThe construction ccGro16 from the LegoSNARK paper (page 73 in https://eprint.iacr.org/2019/142.pdf) is a similar construction. They do not have a proof of knowledge accompanying the commitment because they are considering the case where there are no public inputs. However, they claim that their scheme is zero-knowledge, and the crucial difference for this is that their commitment has an extra blinding term as is usual for Pedersen commitments. Concretely, it is of the form:\n```\nc_new = sum_i w_i * b_i + v*[η/γ]₁\n```\nwhere `[η/γ]₁` is a new element of G1 that is part of the proving key, with `η` a new toxic waste field element. The value of `v` is randomly chosen by the prover.\n\nWhen adding this additional term to `c`, then to make the proof verification still succeeds, the proof point `Krs` is changed accordingly:\n```\nKrs_new = Krs_old - v*[η/δ]₁\n```\nwhere `[η/δ]₁` is another new element of G1 that is part of the proving key. As `e([η/γ]₁, -[γ]₂) = e([η/δ]₁, -[δ]₂)`, the contributions from the new terms cancel each other in the proof verification pairing check.\n\nThis modification should ensure that the commitment is hiding.\n\nThe proof of knowledge would also need to be adapted accordingly, with\n```\npok = sum_i w_i * b'_i + v*[σ*η/γ]₁\n```\nwhere `[σ*η/γ]₁` is another point of G1 to add to the proving key.\n\n\n### Impact\n\nThe vulnerability affects only Groth16 proofs with commitments. Notably, PLONK proofs are not affected.\n\nThe vulnerability affects the zero-knowledge property of the proofs - in case the witness (secret or internal) values are small, then the attacker may be able to enumerate all possible choices to deduce the actual value. If the possible choices for the variables to be committed is large or there are many values committed, then it would be computationally infeasible to enumerate all valid choices.\n\nIt doesn't affect the completeness/soundness of the proofs.\n\n### Patches\n\nThe vulnerability has been fixed in https://github.com/Consensys/gnark/pull/1245. Corresponding commit on the master branch https://github.com/Consensys/gnark/commit/afda68a38acca37becb8ba6d8982d03fee9559a0.\n\nThe patch to fix the issue is to add additional randomized value to the list of committed value at proving time to mask the rest of the values which were committed.\n\n### Workarounds\n\nThe user can manually commit to a randomized value.\n", + "severity": [ + { + "type": "CVSS_V3", + "score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N" + }, + { + "type": "CVSS_V4", + "score": "CVSS:4.0/AV:N/AC:H/AT:N/PR:N/UI:N/VC:H/VI:N/VA:N/SC:N/SI:N/SA:N" + } + ], + "affected": [ + { + "package": { + "ecosystem": "Go", + "name": "github.com/consensys/gnark" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "0.11.0" + } + ] + } + ], + "database_specific": { + "last_known_affected_version_range": "<= 0.10.0" + } + } + ], + "references": [ + { + "type": "WEB", + "url": "https://github.com/Consensys/gnark/security/advisories/GHSA-9xcg-3q8v-7fq6" + }, + { + "type": "ADVISORY", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-45040" + }, + { + "type": "WEB", + "url": "https://github.com/Consensys/gnark/pull/1245" + }, + { + "type": "WEB", + "url": "https://github.com/Consensys/gnark/commit/afda68a38acca37becb8ba6d8982d03fee9559a0" + }, + { + "type": "PACKAGE", + "url": "https://github.com/Consensys/gnark" + } + ], + "database_specific": { + "cwe_ids": [ + "CWE-200" + ], + "severity": "MODERATE", + "github_reviewed": true, + "github_reviewed_at": "2024-09-06T19:40:01Z", + "nvd_published_at": "2024-09-06T13:15:04Z" + } +} \ No newline at end of file