Muu Pad Inu Token Logo

MUUPAD [Muu Pad Inu] Token

About MUUPAD

Listings

Not Found
Token 3 years

DeFi Meet Cuteness
🐮Launchpad
🐮Staking

Social

Laser Scorebeta Last Audit: 27 June 2022

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links

Reentrancy in MuuPadInu._transfer(address,address,uint256) (#518-569):
External calls:
- swapAndLiquify(contractTokenBalance) (#550)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#628-635)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#615-621)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#550)
- wallet.transfer(amount) (#572)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#628-635)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#567)
- _tOwned[sender] = _tOwned[sender] - tAmount (#652)
- _tOwned[recipient] = _tOwned[recipient] + tAmount (#653)
- _tOwned[sender] = _tOwned[sender] - tAmount (#664)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount (#665)
- _tOwned[address(this)] = _tOwned[address(this)] + buyFEE (#666)
- _tOwned[sender] = _tOwned[sender] - tAmount (#677)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount_scope_0 (#678)
- _tOwned[address(this)] = _tOwned[address(this)] + sellFEE (#679)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#567)
- _tTotal = _tTotal - tAmount (#657)
- _tTotal = _tTotal - tTransferAmount (#670)
- _tTotal = _tTotal - tTransferAmount_scope_0 (#683)
- txCount ++ (#563)
Apply the check-effects-interactions pattern.

Additional information: link


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


Contract ownership is not renounced (belongs to a wallet)

MuuPadInu.swapAndLiquify(uint256) (#577-607) performs a multiplication on the result of a division:
-split_M = Percent_Marketing * 100 / (Percent_AutoLP + Percent_Marketing + Percent_Dev) (#592)
-BNB_M = BNB_Total * split_M / 100 (#593)
MuuPadInu.swapAndLiquify(uint256) (#577-607) performs a multiplication on the result of a division:
-split_D = Percent_Dev * 100 / (Percent_AutoLP + Percent_Marketing + Percent_Dev) (#595)
-BNB_D = BNB_Total * split_D / 100 (#596)
Consider ordering multiplication before division.

Additional information: link

MuuPadInu.addLiquidity(uint256,uint256) (#625-636) ignores return value by uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#628-635)
Ensure that all the return values of the function calls are used.

Additional information: link

Reentrancy in MuuPadInu.constructor() (#429-450):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#439-440)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#443)
- _isExcludedFromFee[address(this)] = true (#444)
- _isExcludedFromFee[Wallet_Marketing] = true (#445)
- _isExcludedFromFee[Wallet_Burn] = true (#446)
- uniswapV2Router = _uniswapV2Router (#441)
Reentrancy in MuuPadInu.swapAndLiquify(uint256) (#577-607):
External calls:
- swapTokensForBNB(tokens_to_LP_Half + tokens_to_M + tokens_to_D) (#589)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#615-621)
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#599)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#628-635)
External calls sending eth:
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#599)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#628-635)
State variables written after the call(s):
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#599)
- _allowances[theOwner][theSpender] = amount (#513)
Reentrancy in MuuPadInu.transferFrom(address,address,uint256) (#486-490):
External calls:
- _transfer(sender,recipient,amount) (#487)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#628-635)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#615-621)
External calls sending eth:
- _transfer(sender,recipient,amount) (#487)
- wallet.transfer(amount) (#572)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#628-635)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#488)
- _allowances[theOwner][theSpender] = amount (#513)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in MuuPadInu._transfer(address,address,uint256) (#518-569):
External calls:
- swapAndLiquify(contractTokenBalance) (#550)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#628-635)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#615-621)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#550)
- wallet.transfer(amount) (#572)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#628-635)
Event emitted after the call(s):
- Transfer(sender,recipient,tAmount) (#654)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#567)
- Transfer(sender,recipient,tTransferAmount) (#667)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#567)
- Transfer(sender,recipient,tTransferAmount_scope_0) (#680)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#567)
Reentrancy in MuuPadInu.constructor() (#429-450):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#439-440)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#448)
Reentrancy in MuuPadInu.swapAndLiquify(uint256) (#577-607):
External calls:
- swapTokensForBNB(tokens_to_LP_Half + tokens_to_M + tokens_to_D) (#589)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#615-621)
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#599)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#628-635)
External calls sending eth:
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#599)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#628-635)
Event emitted after the call(s):
- Approval(theOwner,theSpender,amount) (#514)
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#599)
- SwapAndLiquify(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D),tokens_to_LP_Half) (#600)
Reentrancy in MuuPadInu.transferFrom(address,address,uint256) (#486-490):
External calls:
- _transfer(sender,recipient,amount) (#487)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#628-635)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#615-621)
External calls sending eth:
- _transfer(sender,recipient,amount) (#487)
- wallet.transfer(amount) (#572)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#628-635)
Event emitted after the call(s):
- Approval(theOwner,theSpender,amount) (#514)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#488)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#96-100) uses assembly
- INLINE ASM (#98)
Address._verifyCallResult(bool,bytes,string) (#148-161) uses assembly
- INLINE ASM (#153-156)
Do not use evm assembly.

Additional information: link

Address._verifyCallResult(bool,bytes,string) (#148-161) is never used and should be removed
Address.functionCall(address,bytes) (#108-110) is never used and should be removed
Address.functionCall(address,bytes,string) (#112-114) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#116-118) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#120-125) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#138-140) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#142-146) is never used and should be removed
Address.functionStaticCall(address,bytes) (#127-129) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#131-135) is never used and should be removed
Address.isContract(address) (#96-100) is never used and should be removed
Address.sendValue(address,uint256) (#102-106) is never used and should be removed
Context._msgData() (#87-90) is never used and should be removed
MuuPadInu._getCurrentSupply() (#504-506) is never used and should be removed
SafeMath.div(uint256,uint256) (#61-63) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#72-77) is never used and should be removed
SafeMath.mul(uint256,uint256) (#57-59) is never used and should be removed
SafeMath.sub(uint256,uint256) (#53-55) is never used and should be removed
Remove unused functions.

Additional information: link

MuuPadInu._maxWalletToken (#403) is set pre-construction with a non-constant function or state variable:
- _tTotal * 3 / 100
MuuPadInu._previousMaxWalletToken (#404) is set pre-construction with a non-constant function or state variable:
- _maxWalletToken
MuuPadInu._maxTxAmount (#406) is set pre-construction with a non-constant function or state variable:
- _tTotal * 100 / 100
MuuPadInu._previousMaxTxAmount (#407) is set pre-construction with a non-constant function or state variable:
- _maxTxAmount
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 version0.8.10 (#32) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.10 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 Address.sendValue(address,uint256) (#102-106):
- (success) = recipient.call{value: amount}() (#104)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#120-125):
- (success,returndata) = target.call{value: value}(data) (#123)
Low level call in Address.functionStaticCall(address,bytes,string) (#131-135):
- (success,returndata) = target.staticcall(data) (#133)
Low level call in Address.functionDelegateCall(address,bytes,string) (#142-146):
- (success,returndata) = target.delegatecall(data) (#144)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#190) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#191) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#204) is not in mixedCase
Function IUniswapV2Router01.WETH() (#221) is not in mixedCase
Parameter MuuPadInu.addLiquidity(uint256,uint256).BNBAmount (#625) is not in mixedCase
Function MuuPadInu.remove_Random_Tokens(address,uint256) (#638-644) is not in mixedCase
Parameter MuuPadInu.remove_Random_Tokens(address,uint256).random_Token_Address (#638) is not in mixedCase
Parameter MuuPadInu.remove_Random_Tokens(address,uint256).percent_of_Tokens (#638) is not in mixedCase
Variable MuuPadInu._isExcludedFromFee (#379) is not in mixedCase
Variable MuuPadInu.Wallet_Marketing (#381) is not in mixedCase
Variable MuuPadInu.Wallet_Dev (#382) is not in mixedCase
Constant MuuPadInu.Wallet_Burn (#383) is not in UPPER_CASE_WITH_UNDERSCORES
Constant MuuPadInu._decimals (#387) is not in UPPER_CASE_WITH_UNDERSCORES
Constant MuuPadInu._name (#389) is not in UPPER_CASE_WITH_UNDERSCORES
Constant MuuPadInu._symbol (#390) is not in UPPER_CASE_WITH_UNDERSCORES
Variable MuuPadInu._Tax_On_Buy (#395) is not in mixedCase
Variable MuuPadInu._Tax_On_Sell (#396) is not in mixedCase
Variable MuuPadInu.Percent_Marketing (#398) is not in mixedCase
Variable MuuPadInu.Percent_Dev (#399) is not in mixedCase
Variable MuuPadInu.Percent_Burn (#400) is not in mixedCase
Variable MuuPadInu.Percent_AutoLP (#401) is not in mixedCase
Variable MuuPadInu._maxWalletToken (#403) is not in mixedCase
Variable MuuPadInu._maxTxAmount (#406) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in MuuPadInu._transfer(address,address,uint256) (#518-569):
External calls:
- swapAndLiquify(contractTokenBalance) (#550)
- wallet.transfer(amount) (#572)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#550)
- wallet.transfer(amount) (#572)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#628-635)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#567)
- _tOwned[sender] = _tOwned[sender] - tAmount (#652)
- _tOwned[recipient] = _tOwned[recipient] + tAmount (#653)
- _tOwned[sender] = _tOwned[sender] - tAmount (#664)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount (#665)
- _tOwned[address(this)] = _tOwned[address(this)] + buyFEE (#666)
- _tOwned[sender] = _tOwned[sender] - tAmount (#677)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount_scope_0 (#678)
- _tOwned[address(this)] = _tOwned[address(this)] + sellFEE (#679)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#567)
- _tTotal = _tTotal - tAmount (#657)
- _tTotal = _tTotal - tTransferAmount (#670)
- _tTotal = _tTotal - tTransferAmount_scope_0 (#683)
- txCount ++ (#563)
Event emitted after the call(s):
- Transfer(sender,recipient,tAmount) (#654)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#567)
- Transfer(sender,recipient,tTransferAmount) (#667)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#567)
- Transfer(sender,recipient,tTransferAmount_scope_0) (#680)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#567)
Reentrancy in MuuPadInu.transferFrom(address,address,uint256) (#486-490):
External calls:
- _transfer(sender,recipient,amount) (#487)
- wallet.transfer(amount) (#572)
External calls sending eth:
- _transfer(sender,recipient,amount) (#487)
- wallet.transfer(amount) (#572)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#628-635)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#488)
- _allowances[theOwner][theSpender] = amount (#513)
Event emitted after the call(s):
- Approval(theOwner,theSpender,amount) (#514)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#488)
Apply the check-effects-interactions pattern.

Additional information: link

MuuPadInu.slitherConstructorVariables() (#355-692) uses literals with too many digits:
- _tTotal = 77000000000 * 10 ** _decimals (#388)
MuuPadInu.slitherConstructorConstantVariables() (#355-692) uses literals with too many digits:
- Wallet_Burn = address(0x000000000000000000000000000000000000dEaD) (#383)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

MuuPadInu.MAX (#386) is never used in MuuPadInu (#355-692)
MuuPadInu._previousMaxWalletToken (#404) is never used in MuuPadInu (#355-692)
MuuPadInu._previousMaxTxAmount (#407) is never used in MuuPadInu (#355-692)
Remove unused state variables.

Additional information: link

MuuPadInu.Percent_AutoLP (#401) should be constant
MuuPadInu.Percent_Burn (#400) should be constant
MuuPadInu.Percent_Dev (#399) should be constant
MuuPadInu.Percent_Marketing (#398) should be constant
MuuPadInu.Wallet_Dev (#382) should be constant
MuuPadInu.Wallet_Marketing (#381) should be constant
MuuPadInu._Tax_On_Buy (#395) should be constant
MuuPadInu._Tax_On_Sell (#396) should be constant
MuuPadInu.swapAndLiquifyEnabled (#413) should be constant
MuuPadInu.swapTrigger (#393) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- MuuPadInu.renounceOwnership() (#372-375)
name() should be declared external:
- MuuPadInu.name() (#452-454)
symbol() should be declared external:
- MuuPadInu.symbol() (#456-458)
decimals() should be declared external:
- MuuPadInu.decimals() (#460-462)
totalSupply() should be declared external:
- MuuPadInu.totalSupply() (#464-466)
transfer(address,uint256) should be declared external:
- MuuPadInu.transfer(address,uint256) (#472-475)
allowance(address,address) should be declared external:
- MuuPadInu.allowance(address,address) (#477-479)
approve(address,uint256) should be declared external:
- MuuPadInu.approve(address,uint256) (#481-484)
transferFrom(address,address,uint256) should be declared external:
- MuuPadInu.transferFrom(address,address,uint256) (#486-490)
increaseAllowance(address,uint256) should be declared external:
- MuuPadInu.increaseAllowance(address,uint256) (#492-495)
decreaseAllowance(address,uint256) should be declared external:
- MuuPadInu.decreaseAllowance(address,uint256) (#497-500)
remove_Random_Tokens(address,uint256) should be declared external:
- MuuPadInu.remove_Random_Tokens(address,uint256) (#638-644)
Use the external attribute for functions never called from the contract.

Additional information: link

MuuPadInu._transfer(address,address,uint256).isBuy (#554) 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

Redundant expression "this (#88)" inContext (#82-91)
Remove redundant statements if they congest code but offer no value.

Additional information: link


Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#225) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#226)
Variable MuuPadInu.swapAndLiquify(uint256).tokens_to_D (#585) is too similar to MuuPadInu.swapAndLiquify(uint256).tokens_to_M (#584)
Prevent variables from having similar names.

Additional information: link

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


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


Twitter account has less than 100 followers


Telegram account has relatively few subscribers


Unable to find Youtube account


BscScan page for the token does not contain additional info: website, socials, description, etc.

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 KYC or doxxing proof


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 token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


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


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

Price for MUUPAD

News for MUUPAD