Auto$Matic Up, the premier multi chain, strategic buyback and $MATIC reward token and ecosystem!
AutomaticUp.swapBack() (#875-944) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#921-924)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#925-928)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in AutomaticUp._transferFrom(address,address,uint256) (#672-756):
External calls:
- swapBack() (#726)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#896-902)
- distributor.deposit{value: amountBNBReflection}() (#920)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#921-924)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#925-928)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#934-941)
External calls sending eth:
- swapBack() (#726)
- distributor.deposit{value: amountBNBReflection}() (#920)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#921-924)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#925-928)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#934-941)
State variables written after the call(s):
- _rBalance[sender] = _rBalance[sender].sub(rAmount,Insufficient Balance) (#730-733)
- _rBalance[recipient] = _rBalance[recipient].add(amountReceived) (#739)
- amountReceived = takeFee(sender,rAmount,(recipient == pair)) (#735-738)
- _rBalance[address(this)] = _rBalance[address(this)].add(feeAmount) (#804)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.distributeDividend(address) (#415-432) ignores return value by RWRD.transfer(shareholder,amount) (#423)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.
AutomaticUp.swapBack().tmpSuccess (#921) is written in both
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#925-928)
tmpSuccess = false (#931)
Fix or remove the writes.
Additional information: link
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
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.
AutomaticUp.slitherConstructorVariables() (#484-1175) performs a multiplication on the result of a division:
-_maxWalletToken = rSupply.div(100).mul(3) (#570)
Consider ordering multiplication before division.
Additional information: link
Reentrancy in DividendDistributor.setShare(address,uint256) (#336-356):
External calls:
- distributeDividend(shareholder) (#342)
- RWRD.transfer(shareholder,amount) (#423)
State variables written after the call(s):
- shares[shareholder].amount = amount (#352)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#353-355)
Apply the check-effects-interactions pattern.
Additional information: link
AutomaticUp.manage_houseguests(address[],bool).i (#864) 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
AutomaticUp.swapBack() (#875-944) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#934-941)
Ensure that all the return values of the function calls are used.
Additional information: link
AutomaticUp.setMaster(address) (#1030-1032) should emit an event for:
- master = _master (#1031)
Emit an event for critical parameter changes.
Additional information: link
AutomaticUp.setMaxTxPercent_base1000(uint256) (#1097-1102) should emit an event for:
- _maxTxAmount = rSupply.div(1000).mul(maxTXPercentage_base1000) (#1101)
Emit an event for critical parameter changes.
Additional information: link
AutomaticUp.setMaster(address)._master (#1030) lacks a zero-check on :
- master = _master (#1031)
Check that the address is not zero.
Additional information: link
AutomaticUp.multiTransfer_fixed(address,address[],uint256) (#1143-1170) has external calls inside a loop: distributor.setShare(addresses[i],balanceOf(addresses[i])) (#1160-1162)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in DividendDistributor.setShare(address,uint256) (#336-356):
External calls:
- distributeDividend(shareholder) (#342)
- RWRD.transfer(shareholder,amount) (#423)
State variables written after the call(s):
- addShareholder(shareholder) (#346)
- shareholderIndexes[shareholder] = shareholders.length (#469)
- removeShareholder(shareholder) (#348)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#477-479)
- addShareholder(shareholder) (#346)
- shareholders.push(shareholder) (#470)
- removeShareholder(shareholder) (#348)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#474-476)
- shareholders.pop() (#480)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#351)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in AutomaticUp.swapBack() (#875-944):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#896-902)
- distributor.deposit{value: amountBNBReflection}() (#920)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#921-924)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#925-928)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#934-941)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#920)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#921-924)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#925-928)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#934-941)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify.div(rate)) (#942)
Apply the check-effects-interactions pattern.
Additional information: link
AutomaticUp._transferFrom(address,address,uint256) (#672-756) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,buy Cooldown exists) (#706-709)
Avoid relying on block.timestamp.
Additional information: link
DividendDistributor.process(uint256) (#377-403) has costly operations inside a loop:
- currentIndex ++ (#400)
Use a local variable to hold the loop computation result.
Additional information: link
SafeMathInt.sub(int256,int256) (#89-93) is never used and should be removed
Remove unused functions.
Additional information: link
AutomaticUp.totalFee (#509-510) is set pre-construction with a non-constant function or state variable:
- marketingFee + reflectionFee + liquidityFee + devFee
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
solc-0.7.4 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 AutomaticUp.swapBack() (#875-944):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#921-924)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#925-928)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable AutomaticUp._maxWalletToken (#570) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#210) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#211)
Prevent variables from having similar names.
Additional information: link
AutomaticUp.slitherConstructorVariables() (#484-1175) uses literals with too many digits:
- distributorGas = 500000 (#537)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
AutomaticUp.MAX_SUPPLY (#564) is never used in AutomaticUp (#484-1175)
Remove unused state variables.
Additional information: link
DividendDistributor.dividendsPerShareAccuracyFactor (#302) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
rescueToken(address,uint256) should be declared external:
- AutomaticUp.rescueToken(address,uint256) (#1054-1060)
Use the external attribute for functions never called from the contract.
Additional information: link
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.
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap
Additional information: link
Unable to find token/project description on the website or on BscScan, CoinMarketCap
Unable to find whitepaper link on the website
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Young tokens have high risks of 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 CoinMarketCap listing / rank
Token has relatively low CoinGecko rank
Twitter account link seems to be invalid
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account