Community driven at heart, $NOFUD was founded after a previous project was abandoned, which led the new team to pull together and found $NOFUD to combat FUD creating a true community focused token. We believe that the growing NFT industry has only tapped into a small proportion of its market potential and the FUD associated with the industry is misunderstood. With No FUD Token’s unique offering, community holders get the chance to gain access and win giveaways to the most undervalued NFTs that have a large potential for multiple future growth and also earn royalties from our future NFT Marketplace
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
NOFUDTOKEN.swapBack() (#571-617) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#600)
- (tmpSuccess,None) = address(nftFeeReceiver).call{gas: 30000,value: amountBNBNft}() (#601)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in NOFUDTOKEN._transferFrom(address,address,uint256) (#467-510):
External calls:
- swapBack() (#489)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#582-588)
- distributor.deposit{value: amountBNBReflection}() (#599)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#600)
- (tmpSuccess,None) = address(nftFeeReceiver).call{gas: 30000,value: amountBNBNft}() (#601)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#607-614)
External calls sending eth:
- swapBack() (#489)
- distributor.deposit{value: amountBNBReflection}() (#599)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#600)
- (tmpSuccess,None) = address(nftFeeReceiver).call{gas: 30000,value: amountBNBNft}() (#601)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#607-614)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#492)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#495)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#494)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#533)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.distributeDividend(address) (#296-307) ignores return value by RWRD.transfer(shareholder,amount) (#302)
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.
NOFUDTOKEN.swapBack().tmpSuccess (#600) is written in both
(tmpSuccess,None) = address(nftFeeReceiver).call{gas: 30000,value: amountBNBNft}() (#601)
tmpSuccess = false (#604)
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.
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 ticker ($NOFUD) 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.
Reentrancy in DividendDistributor.setShare(address,uint256) (#229-243):
External calls:
- distributeDividend(shareholder) (#231)
- RWRD.transfer(shareholder,amount) (#302)
State variables written after the call(s):
- shares[shareholder].amount = amount (#241)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#242)
Apply the check-effects-interactions pattern.
Additional information: link
NOFUDTOKEN.swapBack() (#571-617) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#607-614)
Ensure that all the return values of the function calls are used.
Additional information: link
NOFUDTOKEN.setTargetLiquidity(uint256,uint256) (#663-666) should emit an event for:
- targetLiquidity = _target (#664)
- targetLiquidityDenominator = _denominator (#665)
Emit an event for critical parameter changes.
Additional information: link
NOFUDTOKEN.setFeeReceivers(address,address,address)._nftFeeReceiver (#652) lacks a zero-check on :
- nftFeeReceiver = _nftFeeReceiver (#655)
Check that the address is not zero.
Additional information: link
NOFUDTOKEN.multiTransfer(address,address[],uint256[]) (#692-716) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],_balances[addresses[i_scope_0]]) (#708)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in DividendDistributor.setShare(address,uint256) (#229-243):
External calls:
- distributeDividend(shareholder) (#231)
- RWRD.transfer(shareholder,amount) (#302)
State variables written after the call(s):
- addShareholder(shareholder) (#235)
- shareholderIndexes[shareholder] = shareholders.length (#329)
- removeShareholder(shareholder) (#237)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#335)
- addShareholder(shareholder) (#235)
- shareholders.push(shareholder) (#330)
- removeShareholder(shareholder) (#237)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#334)
- shareholders.pop() (#336)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#240)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in NOFUDTOKEN.swapBack() (#571-617):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#582-588)
- distributor.deposit{value: amountBNBReflection}() (#599)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#600)
- (tmpSuccess,None) = address(nftFeeReceiver).call{gas: 30000,value: amountBNBNft}() (#601)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#607-614)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#599)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#600)
- (tmpSuccess,None) = address(nftFeeReceiver).call{gas: 30000,value: amountBNBNft}() (#601)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#607-614)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#615)
Apply the check-effects-interactions pattern.
Additional information: link
NOFUDTOKEN._transferFrom(address,address,uint256) (#467-510) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait for 1min between two buys) (#482)
Avoid relying on block.timestamp.
Additional information: link
DividendDistributor.process(uint256) (#265-289) has costly operations inside a loop:
- currentIndex ++ (#286)
Use a local variable to hold the loop computation result.
Additional information: link
NOFUDTOKEN.swapThreshold (#393) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 10 / 10000
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 (#16) 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 NOFUDTOKEN.swapBack() (#571-617):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#600)
- (tmpSuccess,None) = address(nftFeeReceiver).call{gas: 30000,value: amountBNBNft}() (#601)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable NOFUDTOKEN._allowances (#357) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#126) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#127)
Prevent variables from having similar names.
Additional information: link
NOFUDTOKEN.slitherConstructorVariables() (#340-720) uses literals with too many digits:
- distributorGas = 500000 (#386)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
NOFUDTOKEN._totalSupply (#351) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
cooldownEnabled(bool,uint8) should be declared external:
- NOFUDTOKEN.cooldownEnabled(bool,uint8) (#566-569)
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.
Number of Binance Smart Chain (BSC) token holders is low.
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
Unable to find token on CoinGecko
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 token contract audit
Unable to find audit link on the website
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 scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Twitter account link seems to be invalid
Telegram account has relatively few subscribers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account