AASSX stands for Alternative Asset Safe Storage Exchange. A utility token to facilitate the exchange of real world Alternative Assets Investments in the digital world. AASSX Token is built on the Binance Blockchain.
Alternative assets are non traditional investment assets. Examples of these assets are NFT's,'s, Pokémon Cards, NBA, NHL, NFL, UFC Cards, Yu Gi Oh cards, Magic the Gathering cards, Pop! Vinyls, Vintage Video Games & Consoles, Collectible Shoes and Apparel and much more.
Our Mission is to bridge the gap between Digital and Physical Assets. To develop an Alt Asset ecosystem that ranges from Asset Exchange Platforms, Asset Marketplaces, Safe Asset Storage, Asset Financial Services, Asset Grading and Appraisal Services.
Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.
AASSX.swapBack() (#616-665) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#647)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#648)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in AASSX._transferFrom(address,address,uint256) (#551-592):
External calls:
- swapBack() (#561)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#626-632)
- dividendDistributor.deposit{value: amountBNBReflection}() (#642)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#647)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#648)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#655-662)
External calls sending eth:
- swapBack() (#561)
- dividendDistributor.deposit{value: amountBNBReflection}() (#642)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#647)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#648)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#655-662)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#569)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#577)
- finalAmount = takeFee(sender,recipient,amount) (#576)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#606)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.distributeDividend(address) (#239-250) ignores return value by RewardToken.transfer(shareholder,amount) (#245)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
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.
Contract ownership is not renounced (belongs to a wallet)
AASSX.swapBack().tmpSuccess (#647) is written in both
(tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#647)
tmpSuccess = false (#651)
AASSX.swapBack().tmpSuccess1 (#648) is written in both
(tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#648)
tmpSuccess1 = false (#652)
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.
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.
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
Low level call in AASSX.swapBack() (#616-665):
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#647)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#648)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
AASSX.DEAD (#356) should be constant
AASSX.RewardToken (#359) should be constant
AASSX.ZERO (#357) should be constant
AASSX._totalSupply (#361) should be constant
AASSX.routerAddress (#358) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#145) should be constant
DividendDistributor.routerAddress (#133) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
Function IDEXRouter.WETH() (#68) is not in mixedCase
Variable DividendDistributor._token (#124) is not in mixedCase
Variable DividendDistributor.RewardToken (#134) is not in mixedCase
Constant AASSX._name (#352) is not in UPPER_CASE_WITH_UNDERSCORES
Constant AASSX._symbol (#353) is not in UPPER_CASE_WITH_UNDERSCORES
Constant AASSX._decimals (#354) is not in UPPER_CASE_WITH_UNDERSCORES
Variable AASSX.DEAD (#356) is not in mixedCase
Variable AASSX.ZERO (#357) is not in mixedCase
Variable AASSX.RewardToken (#359) is not in mixedCase
Variable AASSX._totalSupply (#361) is not in mixedCase
Variable AASSX._maxTxAmount (#362) is not in mixedCase
Variable AASSX._walletMax (#363) is not in mixedCase
Variable AASSX._balances (#367) is not in mixedCase
Variable AASSX._allowances (#368) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#73) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#74)
Prevent variables from having similar names.
Additional information: link
AASSX.slitherConstructorVariables() (#348-670) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#356)
AASSX.slitherConstructorVariables() (#348-670) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#357)
AASSX.slitherConstructorVariables() (#348-670) uses literals with too many digits:
- distributorGas = 500000 (#393)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
AASSX.RewardToken (#359) is never used in AASSX (#348-670)
Remove unused state variables.
Additional information: link
Contract ticker ($AASSX) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.
DividendDistributor.setDistributionCriteria(uint256,uint256) (#168-171) should emit an event for:
- minPeriod = newMinPeriod (#169)
- minDistribution = newMinDistribution (#170)
AASSX.changeFees(uint256,uint256,uint256,uint256) (#503-511) should emit an event for:
- liquidityFee = newLiqFee (#504)
- rewardsFee = newRewardFee (#505)
- totalFee = liquidityFee.add(marketingFee).add(rewardsFee) (#509)
- totalFeeIfSelling = totalFee.add(extraFeeOnSell) (#510)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in DividendDistributor.distributeDividend(address) (#239-250):
External calls:
- RewardToken.transfer(shareholder,amount) (#245)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#247)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#248)
Reentrancy in DividendDistributor.process(uint256) (#210-232):
External calls:
- distributeDividend(shareholders[currentIndex]) (#224)
- RewardToken.transfer(shareholder,amount) (#245)
State variables written after the call(s):
- currentIndex ++ (#229)
Reentrancy in DividendDistributor.setShare(address,uint256) (#173-188):
External calls:
- distributeDividend(shareholder) (#176)
- RewardToken.transfer(shareholder,amount) (#245)
State variables written after the call(s):
- shares[shareholder].amount = amount (#186)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#187)
Apply the check-effects-interactions pattern.
Additional information: link
AASSX.swapBack() (#616-665) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#655-662)
Ensure that all the return values of the function calls are used.
Additional information: link
Auth.transferOwnership(address).adr (#339) lacks a zero-check on :
- owner = adr (#340)
AASSX.changeFeeReceivers(address,address,address).newLiquidityReceiver (#513) lacks a zero-check on :
- autoLiquidityReceiver = newLiquidityReceiver (#514)
AASSX.changeFeeReceivers(address,address,address).newMarketingWallet (#513) lacks a zero-check on :
- marketingWallet = newMarketingWallet (#515)
AASSX.changeFeeReceivers(address,address,address).newDevWallet (#513) lacks a zero-check on :
- devWallet = newDevWallet (#516)
Check that the address is not zero.
Additional information: link
DividendDistributor.distributeDividend(address) (#239-250) has external calls inside a loop: RewardToken.transfer(shareholder,amount) (#245)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in AASSX._transferFrom(address,address,uint256) (#551-592):
External calls:
- swapBack() (#561)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#626-632)
- dividendDistributor.deposit{value: amountBNBReflection}() (#642)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#647)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#648)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#655-662)
External calls sending eth:
- swapBack() (#561)
- dividendDistributor.deposit{value: amountBNBReflection}() (#642)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#647)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#648)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#655-662)
State variables written after the call(s):
- launch() (#565)
- launchedAt = block.number (#469)
Reentrancy in AASSX.constructor() (#407-437):
External calls:
- pair = IDEXFactory(router.factory()).createPair(router.WETH(),address(this)) (#410)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#411)
- _balances[msg.sender] = _totalSupply (#435)
- autoLiquidityReceiver = 0x1f043Ce54cEE32e08CEE1a8358C713FB3A3042F5 (#428)
- devWallet = 0x954dCA1c15F16034fF633061Fc9b0e9af04a94b0 (#430)
- dividendDistributor = new DividendDistributor(address(router)) (#413)
- isDividendExempt[pair] = true (#421)
- isDividendExempt[msg.sender] = true (#422)
- isDividendExempt[address(this)] = true (#423)
- isDividendExempt[DEAD] = true (#424)
- isDividendExempt[ZERO] = true (#425)
- isFeeExempt[msg.sender] = true (#415)
- isFeeExempt[address(this)] = true (#416)
- isTxLimitExempt[msg.sender] = true (#418)
- isTxLimitExempt[pair] = true (#419)
- marketingWallet = 0x573C4E088A1DC16FaD5F7803e7C6bfA18Ad1bD65 (#429)
- totalFee = liquidityFee.add(marketingFee).add(rewardsFee) (#432)
- totalFeeIfSelling = totalFee.add(extraFeeOnSell) (#433)
Reentrancy in DividendDistributor.deposit() (#190-208):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#198-203)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#207)
- totalDividends = totalDividends.add(amount) (#206)
Reentrancy in DividendDistributor.distributeDividend(address) (#239-250):
External calls:
- RewardToken.transfer(shareholder,amount) (#245)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#246)
Reentrancy in DividendDistributor.setShare(address,uint256) (#173-188):
External calls:
- distributeDividend(shareholder) (#176)
- RewardToken.transfer(shareholder,amount) (#245)
State variables written after the call(s):
- addShareholder(shareholder) (#180)
- shareholderIndexes[shareholder] = shareholders.length (#274)
- removeShareholder(shareholder) (#182)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#280)
- addShareholder(shareholder) (#180)
- shareholders.push(shareholder) (#275)
- removeShareholder(shareholder) (#182)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#279)
- shareholders.pop() (#281)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#185)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in AASSX._transferFrom(address,address,uint256) (#551-592):
External calls:
- swapBack() (#561)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#626-632)
- dividendDistributor.deposit{value: amountBNBReflection}() (#642)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#647)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#648)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#655-662)
- dividendDistributor.setShare(sender,_balances[sender]) (#581)
- dividendDistributor.setShare(recipient,_balances[recipient]) (#585)
- dividendDistributor.process(distributorGas) (#588)
External calls sending eth:
- swapBack() (#561)
- dividendDistributor.deposit{value: amountBNBReflection}() (#642)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#647)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#648)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#655-662)
Event emitted after the call(s):
- Transfer(sender,recipient,finalAmount) (#590)
Reentrancy in AASSX._transferFrom(address,address,uint256) (#551-592):
External calls:
- swapBack() (#561)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#626-632)
- dividendDistributor.deposit{value: amountBNBReflection}() (#642)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#647)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#648)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#655-662)
External calls sending eth:
- swapBack() (#561)
- dividendDistributor.deposit{value: amountBNBReflection}() (#642)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#647)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#648)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#655-662)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#607)
- finalAmount = takeFee(sender,recipient,amount) (#576)
Reentrancy in AASSX.constructor() (#407-437):
External calls:
- pair = IDEXFactory(router.factory()).createPair(router.WETH(),address(this)) (#410)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#436)
Reentrancy in AASSX.swapBack() (#616-665):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#626-632)
- dividendDistributor.deposit{value: amountBNBReflection}() (#642)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#647)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#648)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#655-662)
External calls sending eth:
- dividendDistributor.deposit{value: amountBNBReflection}() (#642)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#647)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#648)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#655-662)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#663)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.shouldDistribute(address) (#234-237) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#235-236)
Avoid relying on block.timestamp.
Additional information: link
DividendDistributor.process(uint256) (#210-232) has costly operations inside a loop:
- currentIndex = 0 (#221)
DividendDistributor.distributeDividend(address) (#239-250) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#244)
DividendDistributor.process(uint256) (#210-232) has costly operations inside a loop:
- currentIndex ++ (#229)
Use a local variable to hold the loop computation result.
Additional information: link
Pragma version^0.7.4 (#9) allows old versions
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
authorize(address) should be declared external:
- Auth.authorize(address) (#311-313)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#318-320)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#339-343)
getCirculatingSupply() should be declared external:
- AASSX.getCirculatingSupply() (#447-449)
increaseAllowanc(address,uint256) should be declared external:
- AASSX.increaseAllowanc(address,uint256) (#538-541)
tradingStatus(bool) should be declared external:
- AASSX.tradingStatus(bool) (#612-614)
Use the external attribute for functions never called from the contract.
Additional information: link
Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam
Additional information: link
Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.
Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.
Average 30d PancakeSwap liquidity is low.
Average 30d number of PancakeSwap swaps is low.
Token is deployed only at one blockchain
Token has only one trading pair
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)
Unable to verify token contract address on the website
Unable to find audit link on the website
Unable to find whitepaper link on the website
Unable to find Telegram link on the website
Unable to find Twitter link on the website
Token is not listed at Mobula.Finance
Additional information: link
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
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
Telegram account link seems to be invalid
Twitter account has less than 100 followers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts