Prepared by:
HALBORN
Last Updated 06/25/2024
Date of Engagement by: June 24th, 2024 - June 24th, 2024
100% of all REPORTED Findings have been addressed
All findings
6
Critical
0
High
0
Medium
0
Low
3
Informational
3
xHype
engaged our security analysis team to conduct a comprehensive security audit of their smart contract ecosystem. The primary aim was to meticulously assess the security architecture of the smart contracts to pinpoint vulnerabilities, evaluate existing security protocols, and offer actionable insights to bolster security and operational efficacy of their smart contract framework. Our assessment was strictly confined to the smart contracts provided, ensuring a focused and exhaustive analysis of their security features.
Our engagement with xHype
spanned a 1 day period, during which we dedicated one full-time security engineer equipped with extensive experience in blockchain security, advanced penetration testing capabilities, and profound knowledge of various blockchain protocols. The objectives of this assessment were to:
- Verify the correct functionality of smart contract operations.
- Identify potential security vulnerabilities within the smart contracts.
To ensure the token contract operates purely as an ERC20 token and avoids any unintended interactions with vesting and dividend features, the following measures are recommended:
1. Disable swapEnabled
: The swapEnabled
feature should be disabled to prevent any swapping functionality.
Important: Call
toggleSwapEnabled
to disableswapEnabled
as it is set to true by default.
2. Adjust buyFee
and sellFee
: Configure these fees as per your requirements.
3. Avoid setVestedWallet
Function: This function should never be called to prevent triggering the internal vesting functionality, which has known issues.
4. Do Not Trust Dividend-Related view
Functions: All view
functions related to dividends and shares are unreliable and should not be used.
5. Set pointsPerShare
to Zero: Ensure this value is zero to prevent users from withdrawing unintended funds via withdrawDividends
.
1. Reverts for Holders Without Vesting ( getLastVestingScheduleForHolder
): This function reverts if the holder does not have any vesting schedules, due to an index out-of-bounds error.
2. Invalid Vesting Schedule Timings: There are no checks to ensure _start
, _start + cliff
, or start + _duration
are in the future relative to block.timestamp
, leading to invalid vesting schedules.
3. Empty Data Return in getVestingSchedule
Functions: These functions may return empty data if the vesting schedule ID does not exist, leading to unintended behavior.
4. Vesting Schedule Removal in revoke
: The revoke
function does not remove the vesting schedule from vestingSchedulesIds
array, potentially leading to issues with iterating over revoked schedules.
5. Unnecessary Payable Declaration in release
: The beneficiary
is unnecessarily declared as payable
in the release
function, despite no Ether transfer being involved.
6. Missing _slicePeriodSeconds
Verification: There is no check to ensure _slicePeriodSeconds
is not greater than the duration, potentially causing all tokens to be released only at the end of the vesting period.
Addressing these issues will significantly enhance the security, functionality, and user trust in XHP's smart contract ecosystem. Implementing the recommended changes will mitigate risks and align operations with the best security practices.
Our testing strategy employed a blend of manual and automated techniques to ensure a thorough evaluation. While manual testing was pivotal for uncovering logical and implementation flaws, automated testing offered broad code coverage and rapid identification of common vulnerabilities. The testing process included:
- A detailed examination of the smart contracts' architecture and intended functionality.
- Comprehensive manual code reviews and walkthroughs.
- Functional and connectivity analysis utilizing tools like Solgraph.
- Customized script-based manual testing and testnet deployment using Foundry.
This executive summary encapsulates the pivotal findings and recommendations from our security assessment of Renzo's smart contract ecosystem. By addressing the identified issues and implementing the recommended fixes, Renzo can significantly boost the security, reliability, and trustworthiness of its smart contract platform.
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
3
Informational
3
Security analysis | Risk level | Remediation Date |
---|---|---|
Getter reverts for holders without vesting | Low | Risk Accepted |
Missing vesting schedule timings checks | Low | Risk Accepted |
Empty data return | Low | Risk Accepted |
Vesting schedule removal | Informational | Acknowledged |
Unnecessary payable declaration | Informational | Acknowledged |
Missing period verification | Informational | Acknowledged |
// Low
The function getLastVestingScheduleForHolder
reverts if the holder does not have any vesting schedules because it attempts to access an index that is out of bounds. This happens due to the computation holdersVestingCount[holder] - 1
, which results in an underflow and reverts the transaction if holdersVestingCount[holder]
is zero.
Before attempting to retrieve the last vesting schedule for a holder, check if the holder has any vesting schedules. If holdersVestingCount[holder]
is zero, the function should revert with a meaningful error message.
function getLastVestingScheduleForHolder(address holder)
public
view
returns(VestingSchedule memory)
{
require(holdersVestingCount[holder] > 0, "XHPVesting: holder has no vesting schedules");
return vestingSchedules[computeVestingScheduleIdForAddressAndIndex(holder, holdersVestingCount[holder] - 1)];
}
RISK ACCEPTED: The XHype team accepted the risk of this finding.
// Low
In the createVestingSchedule
function, there are no checks to ensure that the _start
, _start + cliff
, or start + cliff + duration
values are in the future relative to block.timestamp
. This can result in creating vesting schedules that have already started, have their cliff in the past, or are already fully vested.
Add checks to ensure that _start
, _start + cliff
, or start + cliff + duration
are greater than the current block.timestamp
.
require(_start >= block.timestamp, "XHPVesting: start time must be in the future");
require(_start.add(_cliff) >= block.timestamp, "XHPVesting: cliff time must be in the future");
require(_start.add(_cliff).add(_duration) > block.timestamp, "XHPVesting: end time must be in the future");
RISK ACCEPTED: The XHype team accepted the risk of this finding.
// Low
The functions getVestingSchedule
and getVestingScheduleByAddressAndIndex
may return empty data if the vesting schedule ID does not exist in the mapping. This could lead to unintended behavior if these functions are used without proper validation.
Add checks to ensure that the vesting schedule exists before returning the data. Revert with a meaningful error message if the vesting schedule does not exist.
function getVestingSchedule(bytes32 vestingScheduleId)
public
view
returns(VestingSchedule memory)
{
require(vestingSchedules[vestingScheduleId].beneficiary != address(0), "XHPVesting: vesting schedule does not exist");
return vestingSchedules[vestingScheduleId];
}
RISK ACCEPTED: The XHype team accepted the risk of this finding.
// Informational
The revoke
function currently does not remove the vesting schedule from the vestingSchedulesIds
array, which might be unnecessary if not required by the frontend or any UI.
Consider removing the vesting schedule from the vestingSchedulesIds
array when it is revoked, to keep the array clean and avoid potential issues with iterating over revoked schedules.
ACKNOWLEDGED: The XHype team acknowledged this finding.
// Informational
In the release
function, the beneficiary is unnecessarily declared as payable
, even though there is no Ether transfer involved. This is redundant and can be removed for clarity.
Remove the payable
keyword from the beneficiary declaration in the release
function.
ACKNOWLEDGED: The XHype team acknowledged this finding.
// Informational
In the createVestingSchedule
function, there is no check to ensure that _slicePeriodSeconds
is not greater than the vesting duration. If _slicePeriodSeconds
is greater than the duration, the vestedAmount
will always be zero until the full duration has passed, causing the tokens to be released only at the end of the vesting period. This behavior defeats the purpose of having periodic vesting slices.
Add a check to ensure that _slicePeriodSeconds
is not greater than the duration when creating a vesting schedule. Additionally, consider setting an appropriate maximum value for _slicePeriodSeconds
, such as 1 week or 1 day, depending on the desired vesting frequency.
ACKNOWLEDGED: The XHype team acknowledged this finding.
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