Prepared by:
HALBORN
Last Updated 05/10/2024
Date of Engagement by: February 23rd, 2024 - March 8th, 2024
100% of all REPORTED Findings have been addressed
All findings
2
Critical
0
High
0
Medium
0
Low
1
Informational
1
The Rarimo team engaged Halborn to conduct a security assessment on their zero knowledge circuits and the verifier, beginning on 23/02/2024 and ending on 08/03/2024. The security assessment was scoped to the circuits provided to the Halborn team.
The team at Halborn was provided two weeks for the engagement and assigned a full-time security engineer to verify the security of the zero knowledge circuits and the verifier. The security engineer is a blockchain, smart-contract, and ZK security expert with advanced penetration testing, smart-contract hacking, and deep knowledge of multiple blockchain protocols.
The purpose of this assessment is to achieve the following :
- Ensure that the circuits operate as intended.
- Identify potential security issues within the circuits.
- Ensure that the verifier operate as intended.
- Identify potential security issues within the verifier contracts.
In summary, Halborn identified some security risks that were successfully addressed by the Rarimo team.
Halborn performed a combination of manual and automated security testing to balance efficiency, timeliness, practicality, and accuracy in regard to the scope of this assessment. While manual testing is recommended to uncover flaws in logic, process, and implementation; automated testing techniques help enhance coverage of the code and can quickly identify items that do not follow the security best practices. The following phases and associated tools were used during the assessment:
Research into architecture and purpose.
Manual code review and walkthrough.
Graphing out functionality and contract logic/connectivity/functions.
Manual testing by custom scripts.
Used circomspect, a static analyzer and linter.
Used Picus, which checks for under-constrained bugs.
External libraries and financial-related attacks.
New features/implementations after/with the remediation commit IDs.
EXPLOITABILIY METRIC () | METRIC VALUE | NUMERICAL VALUE |
---|---|---|
Attack Origin (AO) | Arbitrary (AO:A) Specific (AO:S) | 1 0.2 |
Attack Cost (AC) | Low (AC:L) Medium (AC:M) High (AC:H) | 1 0.67 0.33 |
Attack Complexity (AX) | Low (AX:L) Medium (AX:M) High (AX:H) | 1 0.67 0.33 |
IMPACT METRIC () | METRIC VALUE | NUMERICAL VALUE |
---|---|---|
Confidentiality (C) | None (I:N) Low (I:L) Medium (I:M) High (I:H) Critical (I:C) | 0 0.25 0.5 0.75 1 |
Integrity (I) | None (I:N) Low (I:L) Medium (I:M) High (I:H) Critical (I:C) | 0 0.25 0.5 0.75 1 |
Availability (A) | None (A:N) Low (A:L) Medium (A:M) High (A:H) Critical (A:C) | 0 0.25 0.5 0.75 1 |
Deposit (D) | None (D:N) Low (D:L) Medium (D:M) High (D:H) Critical (D:C) | 0 0.25 0.5 0.75 1 |
Yield (Y) | None (Y:N) Low (Y:L) Medium (Y:M) High (Y:H) Critical (Y:C) | 0 0.25 0.5 0.75 1 |
SEVERITY COEFFICIENT () | COEFFICIENT VALUE | NUMERICAL VALUE |
---|---|---|
Reversibility () | None (R:N) Partial (R:P) Full (R:F) | 1 0.5 0.25 |
Scope () | Changed (S:C) Unchanged (S:U) | 1.25 1 |
Severity | Score Value Range |
---|---|
Critical | 9 - 10 |
High | 7 - 8.9 |
Medium | 4.5 - 6.9 |
Low | 2 - 4.4 |
Informational | 0 - 1.9 |
Critical
0
High
0
Medium
0
Low
1
Informational
1
Security analysis | Risk level | Remediation Date |
---|---|---|
Missing constraint in the output of `passportVerificationSHA1` circuit | Low | Solved - 03/15/2024 |
Different Circom versions used along the project | Informational | Solved - 03/14/2024 |
// Low
The output signal of the passportVerificationSHA1
circuit is formed by the following elements:
out[0]
-> SHA1 hash of the in
input signal.
out[1]
-> not used.
out[2]
-> number representation of the passport issuer code.
Both out[0]
and out[2]
are properly constrained, but out[1]
is not constrained in any way. That makes it possible for the prover to put whatever value he wants in there. This may not pose a serious risk, but It is recommended constraining out[1]
to be zero:
passportVerificationSHA1, line 50template PassportVerificationSHA1(N) {
...
out[0] <== bits2NumHash.out;
+ out[1] <== 0;
}
It is recommended to constrain out[1] to be zero: [**passportVerificationSHA1, line 50**](https://github.com/rarimo/passport-zk-circuits/blob/48793f924383cd11d4c3426b4697c2f9b4efa60f/passportVerification/passportVerificationSHA1.circom#L50)
template PassportVerificationSHA1(N) {
...
out[0] <== bits2NumHash.out;
+ out[1] <== 0;
}
SOLVED : The Rarimo team solved the issue by implementing the provided suggestion.
// Informational
During the code review of the one circuit, namely the SMTVerifier
circuit, uses a different version of the Circom compiler (2.0.0.
) instead of the one the whole project uses (2.1.6
). Using the same version for all circuits is recommended, as older compiler versions may have bugs that recent releases may have fixed.
Using the same version for all circuits is recommended, as older compiler versions may have bugs that recent releases may have fixed.
SOLVED : The Rarimo team solved the issue by implementing the provided suggestion.
Halborn used automated testing techniques to enhance coverage of certain areas of the scoped component. Among the tools used were circumspect and picus. After Halborn verified all the code and scoped structures in the repository and could compile them correctly, these tools were leveraged on scoped structures. With these tools, Halborn can statically verify security-related issues across the entire codebase.
Halborn strongly recommends conducting a follow-up assessment of the project either within six months or immediately following any material changes to the codebase, whichever comes first. This approach is crucial for maintaining the project’s integrity and addressing potential vulnerabilities introduced by code modifications.
// Download the full report
* Use Google Chrome for best results
** Check "Background Graphics" in the print settings if needed