## Summary
The updateReferrerInfo function in the SystemConfig contract allows any user to update referral information for any address, including setting arbitrary referrer addresses and rates. This vulnerability can be exploited to disable referral bonuses and authority fees of legitimate referrers, potentially leading to financial losses and undermining the integrity of the referral system.
## Vulnerability Details
The updateReferrerInfo function is externally accessible and updates the `referralInfoMap` for the provided `_referrer` address:
```solidity
function updateReferrerInfo(
address _referrer,
uint256 _referrerRate,
uint256 _authorityRate
) external {
...
ReferralInfo storage referralInfo = referralInfoMap[_referrer]; // @audit should be msg.sender
referralInfo.referrer = _referrer;
referralInfo.referrerRate = _referrerRate;
referralInfo.authorityRate = _authorityRate;
}
```
This allows any caller to set referrerRate and authorityRate to 0, effectively disabling referral bonuses and authority fees of legit referrers
## Impact
Impact: High - Lose of referral bonuses and authority fees of legit referrers
Likelihood: High - anyone can call the function to disable referral bonuses and authority fees of legit referrers
## Tools Used
Manual review
## Recommendations
- Ensure users can only update their own referral information:
```diff
function updateReferrerInfo(
address _referrer,
uint256 _referrerRate,
uint256 _authorityRate
) external {
...
- ReferralInfo storage referralInfo = referralInfoMap[_referrer];
+ ReferralInfo storage referralInfo = referralInfoMap[msg.sender];
referralInfo.referrer = _referrer;
referralInfo.referrerRate = _referrerRate;
referralInfo.authorityRate = _authorityRate;
}
```
- Or only allow admin to config the rates.