EverGrow Token Logo

EverGrow Token

About EverGrow

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 30 November 2021

report
Token seems to be anonymous. As long as we are unable to find website score is limited.


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

EverGrow.buyTokens(uint256,address) (#637-648) sends eth to arbitrary user
Dangerous calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#642-647)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in EverGrow._transferFrom(address,address,uint256) (#499-522):
External calls:
- swapBack() (#504)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#578-584)
- distributor.deposit{value: amountBNBReflection}() (#594)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#595)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#598-605)
- triggerAutoBuyback() (#505)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#642-647)
External calls sending eth:
- swapBack() (#504)
- distributor.deposit{value: amountBNBReflection}() (#594)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#595)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#598-605)
- triggerAutoBuyback() (#505)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#642-647)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#509)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#513)
- amountReceived = takeFee(sender,recipient,amount) (#511)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#555)
- triggerAutoBuyback() (#505)
- inSwap = true (#438)
- inSwap = false (#438)
Apply the check-effects-interactions pattern.

Additional information: link

EverGrow.triggerDistributor(uint256) (#740-747) ignores return value by token.transfer(msg.sender,amount) (#745)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

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.


Combination 2: Unchecked transfer + 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.


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

claim() should be declared external:
- EverGrow.claim() (#685-687)
Use the external attribute for functions never called from the contract.

Additional information: link

Reentrancy in DividendDistributor.setShare(address,uint256) (#263-277):
External calls:
- distributeDividend(shareholder) (#265)
- CAKE.transfer(shareholder,amount) (#336)
State variables written after the call(s):
- shares[shareholder].amount = amount (#275)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#276)
Apply the check-effects-interactions pattern.

Additional information: link

EverGrow.swapBack() (#568-608) ignores return value by address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#595)
Ensure that the return value of a low-level call is checked or logged.

Additional information: link

EverGrow.swapBack() (#568-608) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#598-605)
Ensure that all the return values of the function calls are used.

Additional information: link

EverGrow.setTargetLiquidity(uint256,uint256) (#731-734) should emit an event for:
- targetLiquidity = _target (#732)
- targetLiquidityDenominator = _denominator (#733)
Emit an event for critical parameter changes.

Additional information: link

EverGrow.setFeeReceivers(address,address)._marketingFeeReceiver (#721) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#723)
Check that the address is not zero.

Additional information: link

Reentrancy in EverGrow.triggerZeusBuyback(uint256,bool) (#618-624):
External calls:
- buyTokens(amount,DEAD) (#619)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#642-647)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#621)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in EverGrow.triggerZeusBuyback(uint256,bool) (#618-624):
External calls:
- buyTokens(amount,DEAD) (#619)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#642-647)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#622)
Apply the check-effects-interactions pattern.

Additional information: link

EverGrow.isOverLiquified(uint256,uint256) (#762-764) uses timestamp for comparisons
Dangerous comparisons:
- getLiquidityBacking(accuracy) > target (#763)
Avoid relying on block.timestamp.

Additional information: link

EverGrow.onlyBuybacker() (#473) compares to a boolean constant:
-require(bool,string)(buyBacker[msg.sender] == true,) (#473)
Remove the equality to the boolean constant.

Additional information: link

DividendDistributor.process(uint256) (#299-323) has costly operations inside a loop:
- currentIndex ++ (#320)
Use a local variable to hold the loop computation result.

Additional information: link

EverGrow.launched() (#666-668) is never used and should be removed
Remove unused functions.

Additional information: link

EverGrow.swapThreshold (#436) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 20000
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

Low level call in EverGrow.swapBack() (#568-608):
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#595)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable EverGrow._allowances (#392) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#160) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#161)
Prevent variables from having similar names.

Additional information: link

EverGrow.slitherConstructorVariables() (#374-784) uses literals with too many digits:
- distributorGas = 500000 (#433)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

EverGrow.DEAD_NON_CHECKSUM (#382) is never used in EverGrow (#374-784)
Remove unused state variables.

Additional information: link

EverGrow.defaultDistribution (#431) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Holders:


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


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute volume.


Unable to find PancakeSwap trading pair to compute number of swaps.


Unable to find Telegram and Twitter accounts


Unable to find website, listings and other project-related information


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death

Price for EverGrow