Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
CarOwners.swapBack() (#784-825) sends eth to arbitrary user
Dangerous calls:
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#812)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in CarOwners._transferFrom(address,address,uint256) (#701-728):
External calls:
- swapBack() (#711)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#795-801)
- distributor.deposit{value: amountBNBReflection}() (#811)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#812)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#815-822)
- triggerAutoBuyback() (#712)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#864-869)
External calls sending eth:
- swapBack() (#711)
- distributor.deposit{value: amountBNBReflection}() (#811)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#812)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#815-822)
- triggerAutoBuyback() (#712)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#864-869)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#716)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#719)
- amountReceived = takeFee(sender,recipient,amount) (#718)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#771)
- triggerAutoBuyback() (#712)
- inSwap = true (#644)
- inSwap = false (#644)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.distributeDividend(address) (#537-548) ignores return value by CAKE.transfer(shareholder,amount) (#543)
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.
Reentrancy in DividendDistributor.setShare(address,uint256) (#470-484):
External calls:
- distributeDividend(shareholder) (#472)
- CAKE.transfer(shareholder,amount) (#543)
State variables written after the call(s):
- shares[shareholder].amount = amount (#482)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#483)
Apply the check-effects-interactions pattern.
Additional information: link
CarOwners.swapBack() (#784-825) ignores return value by address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#812)
Ensure that the return value of a low-level call is checked or logged.
Additional information: link
CarOwners.manage_blacklist(address[],bool).i (#736) 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
CarOwners.swapBack() (#784-825) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#815-822)
Ensure that all the return values of the function calls are used.
Additional information: link
CarOwners.setTargetLiquidity(uint256,uint256) (#936-939) should emit an event for:
- targetLiquidity = _target (#937)
- targetLiquidityDenominator = _denominator (#938)
Emit an event for critical parameter changes.
Additional information: link
CarOwners.setFeeReceivers(address,address)._marketingFeeReceiver (#926) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#928)
Check that the address is not zero.
Additional information: link
Reentrancy in CarOwners.triggerManualBuyback(uint256,bool) (#840-846):
External calls:
- buyTokens(amount,DEAD) (#841)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#864-869)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#843)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in CarOwners.triggerManualBuyback(uint256,bool) (#840-846):
External calls:
- buyTokens(amount,DEAD) (#841)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#864-869)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#844)
Apply the check-effects-interactions pattern.
Additional information: link
CarOwners.isOverLiquified(uint256,uint256) (#958-960) uses timestamp for comparisons
Dangerous comparisons:
- getLiquidityBacking(accuracy) > target (#959)
Avoid relying on block.timestamp.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#144-165) uses assembly
- INLINE ASM (#157-160)
Do not use evm assembly.
Additional information: link
DividendDistributor.process(uint256) (#506-530) has costly operations inside a loop:
- currentIndex ++ (#527)
Use a local variable to hold the loop computation result.
Additional information: link
Context._msgData() (#173-176) is never used and should be removed
Remove unused functions.
Additional information: link
CarOwners.swapThreshold (#642) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 2000
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.4 (#30) allows old versions
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 CarOwners.swapBack() (#784-825):
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#812)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable CarOwners._allowances (#599) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#174)" inContext (#168-177)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#367) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#368)
Prevent variables from having similar names.
Additional information: link
CarOwners.slitherConstructorVariables() (#581-966) uses literals with too many digits:
- distributorGas = 500000 (#639)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
CarOwners.CAKE (#584) is never used in CarOwners (#581-966)
Remove unused state variables.
Additional information: link
DividendDistributor.dividendsPerShareAccuracyFactor (#440) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
manage_blacklist(address[],bool) should be declared external:
- CarOwners.manage_blacklist(address[],bool) (#735-739)
Use the external attribute for functions never called from the contract.
Additional information: link
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 website, listings and other project-related information
Young tokens have high risks of price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Telegram and Twitter accounts