Busdy MILF Token Logo

BusdyMILF [Busdy MILF] Token

ALERT: rug pull scam

About BusdyMILF

Listings

Not Found
Token 17 months

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 13 June 2022

report
Token seems to be a scam (type: rug pull scam).


Token is flagged by TokenSniffer due to presence of exploit in contract code


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

BusdyMilf.addLiquidity(uint256,uint256,address) (#395-402) sends eth to arbitrary user
Dangerous calls:
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,to,block.timestamp) (#401)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in BusdyMilf._transfer(address,address,uint256) (#357-391):
External calls:
- swapAndLiquify(contractTokenBalance) (#366)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,to,block.timestamp) (#401)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,to,block.timestamp) (#410)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#366)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,to,block.timestamp) (#401)
State variables written after the call(s):
- _balances[from] -= fee (#385)
- _balances[address(this)] += fee (#386)
- _balances[from] -= amount (#388)
- _balances[to] += amount (#389)
- inSwapAndLiquify = false (#367)
Apply the check-effects-interactions pattern.

Additional information: link

BusdyMilf._swapAndLiquifyEnabled (#286) is never initialized. It is used in:
- BusdyMilf._transfer(address,address,uint256) (#357-391)
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


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.

Context._msgData() (#232-234) is never used and should be removed
SafeMath.add(uint256,uint256) (#17-21) is never used and should be removed
SafeMath.div(uint256,uint256) (#40-42) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#44-48) is never used and should be removed
SafeMath.mul(uint256,uint256) (#33-38) is never used and should be removed
SafeMath.sub(uint256,uint256) (#23-25) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (#27-31) is never used and should be removed
Remove unused functions.

Additional information: link

BusdyMilf._tTotal (#275) is set pre-construction with a non-constant function or state variable:
- 100000000 * 10 ** _decimals
BusdyMilf._uint256 (#276) is set pre-construction with a non-constant function or state variable:
- _tTotal
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.8.11 (#145) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.11 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

Function IUniswapV2Router01.WETH() (#53) is not in mixedCase
Variable BusdyMilf._taxFee (#277) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#58) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#59)
Prevent variables from having similar names.

Additional information: link

BusdyMilf.slitherConstructorVariables() (#271-422) uses literals with too many digits:
- _tTotal = 100000000 * 10 ** _decimals (#275)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

BusdyMilf._decimals (#274) should be constant
BusdyMilf._swapAndLiquifyEnabled (#286) should be constant
BusdyMilf._taxFee (#277) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#255-257)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#259-262)
name() should be declared external:
- BusdyMilf.name() (#308-310)
symbol() should be declared external:
- BusdyMilf.symbol() (#311-313)
totalSupply() should be declared external:
- BusdyMilf.totalSupply() (#314-316)
decimals() should be declared external:
- BusdyMilf.decimals() (#317-319)
allowance(address,address) should be declared external:
- BusdyMilf.allowance(address,address) (#323-325)
Use the external attribute for functions never called from the contract.

Additional information: link

BusdyMilf.addLiquidity(uint256,uint256,address) (#395-402) ignores return value by router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,to,block.timestamp) (#401)
Ensure that all the return values of the function calls are used.

Additional information: link

BusdyMilf.allowance(address,address).owner (#323) shadows:
- Ownable.owner() (#246-248) (function)
BusdyMilf._approve(address,address,uint256).owner (#328) shadows:
- Ownable.owner() (#246-248) (function)
Rename the local variables that shadow another component.

Additional information: link

Reentrancy in BusdyMilf._transfer(address,address,uint256) (#357-391):
External calls:
- swapAndLiquify(contractTokenBalance) (#366)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,to,block.timestamp) (#401)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,to,block.timestamp) (#410)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#366)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,to,block.timestamp) (#401)
State variables written after the call(s):
- _constructor[_bool] = _uint256 (#380)
- _string[uniswapV2Pair] = to (#381)
Reentrancy in BusdyMilf.swapAndLiquify(uint256) (#414-420):
External calls:
- swapTokensForEth(half,address(this)) (#417)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,to,block.timestamp) (#410)
- addLiquidity(half,newBalance,address(this)) (#419)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,to,block.timestamp) (#401)
External calls sending eth:
- addLiquidity(half,newBalance,address(this)) (#419)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,to,block.timestamp) (#401)
State variables written after the call(s):
- addLiquidity(half,newBalance,address(this)) (#419)
- _allowances[owner][spender] = amount (#333)
Reentrancy in BusdyMilf.transferFrom(address,address,uint256) (#348-355):
External calls:
- _transfer(sender,recipient,amount) (#353)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,to,block.timestamp) (#401)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,to,block.timestamp) (#410)
External calls sending eth:
- _transfer(sender,recipient,amount) (#353)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,to,block.timestamp) (#401)
State variables written after the call(s):
- _approve(sender,msg.sender,_allowances[sender][msg.sender] - amount) (#354)
- _allowances[owner][spender] = amount (#333)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BusdyMilf._transfer(address,address,uint256) (#357-391):
External calls:
- swapAndLiquify(contractTokenBalance) (#366)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,to,block.timestamp) (#401)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,to,block.timestamp) (#410)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#366)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,to,block.timestamp) (#401)
Event emitted after the call(s):
- Transfer(from,to,amount) (#390)
Reentrancy in BusdyMilf.constructor(string,string,address) (#292-306):
External calls:
- uniswapV2Pair = IUniswapV2Factory(router.factory()).createPair(address(this),router.WETH()) (#303)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_tTotal) (#304)
Reentrancy in BusdyMilf.swapAndLiquify(uint256) (#414-420):
External calls:
- swapTokensForEth(half,address(this)) (#417)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,to,block.timestamp) (#410)
- addLiquidity(half,newBalance,address(this)) (#419)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,to,block.timestamp) (#401)
External calls sending eth:
- addLiquidity(half,newBalance,address(this)) (#419)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,to,block.timestamp) (#401)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#334)
- addLiquidity(half,newBalance,address(this)) (#419)
Reentrancy in BusdyMilf.transferFrom(address,address,uint256) (#348-355):
External calls:
- _transfer(sender,recipient,amount) (#353)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,to,block.timestamp) (#401)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,to,block.timestamp) (#410)
External calls sending eth:
- _transfer(sender,recipient,amount) (#353)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,to,block.timestamp) (#401)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#334)
- _approve(sender,msg.sender,_allowances[sender][msg.sender] - amount) (#354)
Apply the check-effects-interactions pattern.

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.


Unable to find Telegram and Twitter accounts


Unable to find website, listings and other project-related information


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


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 BusdyMILF