Zoe Finance Token Logo

ZF [Zoe Finance] Token

ALERT: phishing / airdrop scam

About ZF

Listings

Token 4 years
white paper

Auto Staking & Auto Compounding with highest Fixed APY 488,622.7%, paid every 10 minutes. No Team & Private Sale Token, Liquidity Locked For 100 Years!

Social

Laser Scorebeta Last Audit: 29 April 2022

report
Token seems to be a scam (type: phishing / airdrop scam).

Anti-Scam

Links

ZoeFinance.swapBack() (#691-729) sends eth to arbitrary user
Dangerous calls:
- (success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndIF.mul(treasuryFee).div(treasuryFee.add(insuranceFundFee))}() (#717-722)
- (success,None) = address(insuranceFundReceiver).call{gas: 30000,value: amountETHToTreasuryAndIF.mul(insuranceFundFee).div(treasuryFee.add(insuranceFundFee))}() (#723-728)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in ZoeFinance._transferFrom(address,address,uint256) (#577-616):
External calls:
- rebase() (#589)
- pairContract.sync() (#534)
- addLiquidity() (#593)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#668-674)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#679-686)
- swapBack() (#597)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#705-711)
- (success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndIF.mul(treasuryFee).div(treasuryFee.add(insuranceFundFee))}() (#717-722)
- (success,None) = address(insuranceFundReceiver).call{gas: 30000,value: amountETHToTreasuryAndIF.mul(insuranceFundFee).div(treasuryFee.add(insuranceFundFee))}() (#723-728)
External calls sending eth:
- addLiquidity() (#593)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#679-686)
- swapBack() (#597)
- (success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndIF.mul(treasuryFee).div(treasuryFee.add(insuranceFundFee))}() (#717-722)
- (success,None) = address(insuranceFundReceiver).call{gas: 30000,value: amountETHToTreasuryAndIF.mul(insuranceFundFee).div(treasuryFee.add(insuranceFundFee))}() (#723-728)
State variables written after the call(s):
- _gonBalances[sender] = _gonBalances[sender].sub(gonAmount) (#601)
- _gonBalances[recipient] = _gonBalances[recipient].add(gonAmountReceived) (#605-607)
- gonAmountReceived = takeFee(sender,recipient,gonAmount) (#602-604)
- _gonBalances[blackHole] = _gonBalances[blackHole].add(gonAmount.div(feeDenominator).mul(blackHoleFee)) (#633-635)
- _gonBalances[address(this)] = _gonBalances[address(this)].add(gonAmount.div(feeDenominator).mul(_treasuryFee.add(insuranceFundFee))) (#636-638)
- _gonBalances[autoLiquidityReceiver] = _gonBalances[autoLiquidityReceiver].add(gonAmount.div(feeDenominator).mul(liquidityFee)) (#639-641)
- swapBack() (#597)
- inSwap = true (#447)
- inSwap = false (#449)
Apply the check-effects-interactions pattern.

Additional information: link

ZoeFinance._name (#404) shadows:
- ERC20Detailed._name (#370)
ZoeFinance._symbol (#405) shadows:
- ERC20Detailed._symbol (#371)
ZoeFinance._decimals (#406) shadows:
- ERC20Detailed._decimals (#372)
Remove the state variable shadowing.

Additional information: link


Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)

ZoeFinance.rebase() (#505-537) uses a dangerous strict equality:
- _initRebaseStartTime == MAX_UINT256 (#508)
Don't use strict equality to determine if an account has enough Ether or tokens.

Additional information: link

ZoeFinance.swapBack().success (#717) is written in both
(success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndIF.mul(treasuryFee).div(treasuryFee.add(insuranceFundFee))}() (#717-722)
(success,None) = address(insuranceFundReceiver).call{gas: 30000,value: amountETHToTreasuryAndIF.mul(insuranceFundFee).div(treasuryFee.add(insuranceFundFee))}() (#723-728)
Fix or remove the writes.

Additional information: link


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Contract ownership is not renounced (belongs to a wallet)

ZoeFinance.rebase() (#505-537) performs a multiplication on the result of a division:
-times = deltaTime.div(600) (#512)
-epoch = times.mul(10) (#513)
ZoeFinance.rebase() (#505-537) performs a multiplication on the result of a division:
-times = deltaTime.div(600) (#512)
-_lastRebasedTime = _lastRebasedTime.add(times.mul(600)) (#532)
ZoeFinance.takeFee(address,address,uint256) (#618-645) performs a multiplication on the result of a division:
-feeAmount = gonAmount.div(feeDenominator).mul(_totalFee) (#631)
ZoeFinance.takeFee(address,address,uint256) (#618-645) performs a multiplication on the result of a division:
-_gonBalances[blackHole] = _gonBalances[blackHole].add(gonAmount.div(feeDenominator).mul(blackHoleFee)) (#633-635)
ZoeFinance.takeFee(address,address,uint256) (#618-645) performs a multiplication on the result of a division:
-_gonBalances[address(this)] = _gonBalances[address(this)].add(gonAmount.div(feeDenominator).mul(_treasuryFee.add(insuranceFundFee))) (#636-638)
ZoeFinance.takeFee(address,address,uint256) (#618-645) performs a multiplication on the result of a division:
-_gonBalances[autoLiquidityReceiver] = _gonBalances[autoLiquidityReceiver].add(gonAmount.div(feeDenominator).mul(liquidityFee)) (#639-641)
ZoeFinance.getLiquidityBacking(uint256) (#883-891) performs a multiplication on the result of a division:
-liquidityBalance = _gonBalances[pair].div(_gonsPerFragment) (#888)
-accuracy.mul(liquidityBalance.mul(2)).div(getCirculatingSupply()) (#889-890)
Consider ordering multiplication before division.

Additional information: link

ZoeFinance.rebase().rebaseRate (#509) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

ZoeFinance.addLiquidity() (#647-689) ignores return value by router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#679-686)
Ensure that all the return values of the function calls are used.

Additional information: link

ZoeFinance.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#872) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#877)
ZoeFinance.setFeeReceivers(address,address,address,address)._treasuryReceiver (#873) lacks a zero-check on :
- treasuryReceiver = _treasuryReceiver (#878)
ZoeFinance.setFeeReceivers(address,address,address,address)._insuranceFundReceiver (#874) lacks a zero-check on :
- insuranceFundReceiver = _insuranceFundReceiver (#879)
ZoeFinance.setFeeReceivers(address,address,address,address)._blackHole (#875) lacks a zero-check on :
- blackHole = _blackHole (#880)
ZoeFinance.setPairAddress(address)._pairAddress (#902) lacks a zero-check on :
- pairAddress = _pairAddress (#903)
Check that the address is not zero.

Additional information: link

Reentrancy in ZoeFinance.addLiquidity() (#647-689):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#668-674)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#679-686)
External calls sending eth:
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#679-686)
State variables written after the call(s):
- _lastAddLiquidityTime = block.timestamp (#688)
Reentrancy in ZoeFinance.constructor() (#469-498):
External calls:
- pair = IPancakeSwapFactory(router.factory()).createPair(router.WETH(),address(this)) (#472-475)
State variables written after the call(s):
- _allowedFragments[address(this)][address(router)] = type()(uint128).max (#482)
- _autoAddLiquidity = true (#492)
- _autoRebase = true (#491)
- _gonBalances[treasuryReceiver] = TOTAL_GONS (#487)
- _gonsPerFragment = TOTAL_GONS.div(_totalSupply) (#488)
- _initRebaseStartTime = MAX_UINT256 (#489)
- _isFeeExempt[treasuryReceiver] = true (#493)
- _isFeeExempt[address(this)] = true (#494)
- _lastRebasedTime = MAX_UINT256 (#490)
- _transferOwnership(treasuryReceiver) (#496)
- _owner = newOwner (#365)
- _totalSupply = INITIAL_FRAGMENTS_SUPPLY (#486)
- autoLiquidityReceiver = 0x83F02e515B7c680D392735b10Bdfc366d115db75 (#477)
- blackHole = 0x390a305f21Efc430Ba02320Bd77D586aC2230f1a (#480)
- insuranceFundReceiver = 0xaB99129EC34cb551a52EFd589e26adCa7f994d01 (#479)
- pairAddress = pair (#483)
- pairContract = IPancakeSwapPair(pair) (#484)
- treasuryReceiver = 0x6ACE933A6a008e6C1a752322f968001284b34CE4 (#478)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ZoeFinance._transferFrom(address,address,uint256) (#577-616):
External calls:
- rebase() (#589)
- pairContract.sync() (#534)
- addLiquidity() (#593)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#668-674)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#679-686)
- swapBack() (#597)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#705-711)
- (success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndIF.mul(treasuryFee).div(treasuryFee.add(insuranceFundFee))}() (#717-722)
- (success,None) = address(insuranceFundReceiver).call{gas: 30000,value: amountETHToTreasuryAndIF.mul(insuranceFundFee).div(treasuryFee.add(insuranceFundFee))}() (#723-728)
External calls sending eth:
- addLiquidity() (#593)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#679-686)
- swapBack() (#597)
- (success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndIF.mul(treasuryFee).div(treasuryFee.add(insuranceFundFee))}() (#717-722)
- (success,None) = address(insuranceFundReceiver).call{gas: 30000,value: amountETHToTreasuryAndIF.mul(insuranceFundFee).div(treasuryFee.add(insuranceFundFee))}() (#723-728)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount.div(_gonsPerFragment)) (#643)
- gonAmountReceived = takeFee(sender,recipient,gonAmount) (#602-604)
- Transfer(sender,recipient,gonAmountReceived.div(_gonsPerFragment)) (#610-614)
Reentrancy in ZoeFinance.constructor() (#469-498):
External calls:
- pair = IPancakeSwapFactory(router.factory()).createPair(router.WETH(),address(this)) (#472-475)
Event emitted after the call(s):
- OwnershipTransferred(_owner,newOwner) (#364)
- _transferOwnership(treasuryReceiver) (#496)
- Transfer(address(0x0),treasuryReceiver,_totalSupply) (#497)
Reentrancy in ZoeFinance.rebase() (#505-537):
External calls:
- pairContract.sync() (#534)
Event emitted after the call(s):
- LogRebase(epoch,_totalSupply) (#536)
Apply the check-effects-interactions pattern.

Additional information: link

ZoeFinance.rebase() (#505-537) uses timestamp for comparisons
Dangerous comparisons:
- _initRebaseStartTime == MAX_UINT256 (#508)
- deltaTimeFromInit >= (7 * 31536000) (#515)
- deltaTimeFromInit >= ((15 * 31536000) / 10) (#517)
- deltaTimeFromInit >= (31536000) (#519)
- deltaTimeFromInit < (31536000) (#521)
- i < times (#525)
ZoeFinance.shouldRebase() (#757-764) uses timestamp for comparisons
Dangerous comparisons:
- _autoRebase && (_totalSupply < MAX_SUPPLY) && msg.sender != pair && ! inSwap && block.timestamp >= (_lastRebasedTime + 600) (#758-763)
ZoeFinance.shouldAddLiquidity() (#766-772) uses timestamp for comparisons
Dangerous comparisons:
- _autoAddLiquidity && ! inSwap && msg.sender != pair && block.timestamp >= (_lastAddLiquidityTime + 172800) (#767-771)
Avoid relying on block.timestamp.

Additional information: link

ZoeFinance.isContract(address) (#918-922) uses assembly
- INLINE ASM (#920)
Do not use evm assembly.

Additional information: link

SafeMath.mod(uint256,uint256) (#92-95) is never used and should be removed
SafeMathInt.abs(int256) (#37-40) is never used and should be removed
SafeMathInt.add(int256,int256) (#31-35) is never used and should be removed
SafeMathInt.div(int256,int256) (#19-23) is never used and should be removed
SafeMathInt.mul(int256,int256) (#11-17) is never used and should be removed
SafeMathInt.sub(int256,int256) (#25-29) is never used and should be removed
Remove unused functions.

Additional information: link

ZoeFinance.totalFee (#428-431) is set pre-construction with a non-constant function or state variable:
- liquidityFee.add(treasuryFee).add(insuranceFundFee).add(blackHoleFee)
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

Pragma version>=0.7.3 (#5) allows old versions
solc-0.7.3 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Low level call in ZoeFinance.swapBack() (#691-729):
- (success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndIF.mul(treasuryFee).div(treasuryFee.add(insuranceFundFee))}() (#717-722)
- (success,None) = address(insuranceFundReceiver).call{gas: 30000,value: amountETHToTreasuryAndIF.mul(insuranceFundFee).div(treasuryFee.add(insuranceFundFee))}() (#723-728)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IPancakeSwapPair.DOMAIN_SEPARATOR() (#142) is not in mixedCase
Function IPancakeSwapPair.PERMIT_TYPEHASH() (#143) is not in mixedCase
Function IPancakeSwapPair.MINIMUM_LIQUIDITY() (#160) is not in mixedCase
Function IPancakeSwapRouter.WETH() (#180) is not in mixedCase
Parameter ZoeFinance.setAutoRebase(bool)._flag (#780) is not in mixedCase
Parameter ZoeFinance.setAutoAddLiquidity(bool)._flag (#789) is not in mixedCase
Parameter ZoeFinance.checkFeeExempt(address)._addr (#852) is not in mixedCase
Parameter ZoeFinance.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#872) is not in mixedCase
Parameter ZoeFinance.setFeeReceivers(address,address,address,address)._treasuryReceiver (#873) is not in mixedCase
Parameter ZoeFinance.setFeeReceivers(address,address,address,address)._insuranceFundReceiver (#874) is not in mixedCase
Parameter ZoeFinance.setFeeReceivers(address,address,address,address)._blackHole (#875) is not in mixedCase
Parameter ZoeFinance.setWhitelist(address)._addr (#893) is not in mixedCase
Parameter ZoeFinance.setBotBlacklist(address,bool)._botAddress (#897) is not in mixedCase
Parameter ZoeFinance.setBotBlacklist(address,bool)._flag (#897) is not in mixedCase
Parameter ZoeFinance.setPairAddress(address)._pairAddress (#902) is not in mixedCase
Parameter ZoeFinance.setLP(address)._address (#906) is not in mixedCase
Variable ZoeFinance._name (#404) is not in mixedCase
Variable ZoeFinance._symbol (#405) is not in mixedCase
Variable ZoeFinance._decimals (#406) is not in mixedCase
Variable ZoeFinance._isFeeExempt (#409) is not in mixedCase
Variable ZoeFinance.DEAD (#434) is not in mixedCase
Variable ZoeFinance.ZERO (#435) is not in mixedCase
Variable ZoeFinance._autoRebase (#457) is not in mixedCase
Variable ZoeFinance._autoAddLiquidity (#458) is not in mixedCase
Variable ZoeFinance._initRebaseStartTime (#459) is not in mixedCase
Variable ZoeFinance._lastRebasedTime (#460) is not in mixedCase
Variable ZoeFinance._lastAddLiquidityTime (#461) is not in mixedCase
Variable ZoeFinance._totalSupply (#462) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IPancakeSwapRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#185) is too similar to IPancakeSwapRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#186)
Prevent variables from having similar names.

Additional information: link

ZoeFinance.slitherConstructorVariables() (#397-926) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#434)
ZoeFinance.slitherConstructorVariables() (#397-926) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#435)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#9) is never used in SafeMathInt (#7-41)
Remove unused state variables.

Additional information: link

ZoeFinance.DEAD (#434) should be constant
ZoeFinance.ZERO (#435) should be constant
ZoeFinance._decimals (#406) should be constant
ZoeFinance._name (#404) should be constant
ZoeFinance._symbol (#405) should be constant
ZoeFinance.blackHoleFee (#427) should be constant
ZoeFinance.feeDenominator (#432) should be constant
ZoeFinance.insuranceFundFee (#425) should be constant
ZoeFinance.liquidityFee (#423) should be constant
ZoeFinance.sellFee (#426) should be constant
ZoeFinance.swapEnabled (#442) should be constant
ZoeFinance.treasuryFee (#424) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

owner() should be declared external:
- Ownable.owner() (#340-342)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#353-356)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#358-360)
name() should be declared external:
- ERC20Detailed.name() (#384-386)
symbol() should be declared external:
- ERC20Detailed.symbol() (#388-390)
decimals() should be declared external:
- ERC20Detailed.decimals() (#392-394)
startRebase() should be declared external:
- ZoeFinance.startRebase() (#500-503)
getLiquidityBacking(uint256) should be declared external:
- ZoeFinance.getLiquidityBacking(uint256) (#883-891)
setPairAddress(address) should be declared external:
- ZoeFinance.setPairAddress(address) (#902-904)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


Unable to find Blog account (Reddit or Medium)


Unable to find Discord account


Twitter account has few posts


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to find token contract audit


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Young tokens have high risks of scam / price dump / death


Young tokens have high risks of scam / price dump / death


Young tokens have high risks of scam / price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for ZF

News for ZF