Hold4Busd Token Logo

HOB [Hold4Busd] Token

About HOB

Listings

Not Found
Token 23 months

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 16 August 2022

report
Token seems to be anonymous. As long as we are unable to find website score is limited.

Reentrancy in Hold4BUSD._transfer(address,address,uint256) (#499-554):
External calls:
- swapAndLiquify(contractTokenBalance) (#535)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Lp_Reciever,block.timestamp) (#613-620)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#600-606)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#535)
- wallet.transfer(amount) (#557)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Lp_Reciever,block.timestamp) (#613-620)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#552)
- _tOwned[sender] = _tOwned[sender] - tAmount (#637)
- _tOwned[recipient] = _tOwned[recipient] + tAmount (#638)
- _tOwned[sender] = _tOwned[sender] - tAmount (#649)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount (#650)
- _tOwned[address(this)] = _tOwned[address(this)] + buyFEE (#651)
- _tOwned[sender] = _tOwned[sender] - tAmount (#662)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount_scope_0 (#663)
- _tOwned[address(this)] = _tOwned[address(this)] + sellFEE (#664)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#552)
- _tTotal = _tTotal - tAmount (#642)
- _tTotal = _tTotal - tTransferAmount (#655)
- _tTotal = _tTotal - tTransferAmount_scope_0 (#668)
- txCount ++ (#548)
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)

Hold4BUSD.swapAndLiquify(uint256) (#562-592) performs a multiplication on the result of a division:
-split_M = Percent_Marketing * 100 / (Percent_AutoLP + Percent_Marketing + Percent_Dev) (#577)
-BNB_M = BNB_Total * split_M / 100 (#578)
Hold4BUSD.swapAndLiquify(uint256) (#562-592) performs a multiplication on the result of a division:
-split_D = Percent_Dev * 100 / (Percent_AutoLP + Percent_Marketing + Percent_Dev) (#580)
-BNB_D = BNB_Total * split_D / 100 (#581)
Consider ordering multiplication before division.

Additional information: link

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

Hold4BUSD.addLiquidity(uint256,uint256) (#610-621) ignores return value by uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Lp_Reciever,block.timestamp) (#613-620)
Ensure that all the return values of the function calls are used.

Additional information: link

Reentrancy in Hold4BUSD.constructor() (#409-431):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#419-420)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#423)
- _isExcludedFromFee[address(this)] = true (#424)
- _isExcludedFromFee[Wallet_Marketing] = true (#425)
- _isExcludedFromFee[Wallet_Burn] = true (#426)
- _isExcludedFromFee[Lp_Reciever] = true (#427)
- uniswapV2Router = _uniswapV2Router (#421)
Reentrancy in Hold4BUSD.swapAndLiquify(uint256) (#562-592):
External calls:
- swapTokensForBNB(tokens_to_LP_Half + tokens_to_M + tokens_to_D) (#574)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#600-606)
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#584)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Lp_Reciever,block.timestamp) (#613-620)
External calls sending eth:
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#584)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Lp_Reciever,block.timestamp) (#613-620)
State variables written after the call(s):
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#584)
- _allowances[theOwner][theSpender] = amount (#494)
Reentrancy in Hold4BUSD.transferFrom(address,address,uint256) (#467-471):
External calls:
- _transfer(sender,recipient,amount) (#468)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Lp_Reciever,block.timestamp) (#613-620)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#600-606)
External calls sending eth:
- _transfer(sender,recipient,amount) (#468)
- wallet.transfer(amount) (#557)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Lp_Reciever,block.timestamp) (#613-620)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#469)
- _allowances[theOwner][theSpender] = amount (#494)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Hold4BUSD._transfer(address,address,uint256) (#499-554):
External calls:
- swapAndLiquify(contractTokenBalance) (#535)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Lp_Reciever,block.timestamp) (#613-620)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#600-606)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#535)
- wallet.transfer(amount) (#557)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Lp_Reciever,block.timestamp) (#613-620)
Event emitted after the call(s):
- Transfer(sender,recipient,tAmount) (#639)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#552)
- Transfer(sender,recipient,tTransferAmount) (#652)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#552)
- Transfer(sender,recipient,tTransferAmount_scope_0) (#665)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#552)
Reentrancy in Hold4BUSD.constructor() (#409-431):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#419-420)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#429)
Reentrancy in Hold4BUSD.swapAndLiquify(uint256) (#562-592):
External calls:
- swapTokensForBNB(tokens_to_LP_Half + tokens_to_M + tokens_to_D) (#574)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#600-606)
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#584)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Lp_Reciever,block.timestamp) (#613-620)
External calls sending eth:
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#584)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Lp_Reciever,block.timestamp) (#613-620)
Event emitted after the call(s):
- Approval(theOwner,theSpender,amount) (#495)
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#584)
- SwapAndLiquify(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D),tokens_to_LP_Half) (#585)
Reentrancy in Hold4BUSD.transferFrom(address,address,uint256) (#467-471):
External calls:
- _transfer(sender,recipient,amount) (#468)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Lp_Reciever,block.timestamp) (#613-620)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#600-606)
External calls sending eth:
- _transfer(sender,recipient,amount) (#468)
- wallet.transfer(amount) (#557)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Lp_Reciever,block.timestamp) (#613-620)
Event emitted after the call(s):
- Approval(theOwner,theSpender,amount) (#495)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#469)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#74-78) uses assembly
- INLINE ASM (#76)
Address._verifyCallResult(bool,bytes,string) (#126-139) uses assembly
- INLINE ASM (#131-134)
Do not use evm assembly.

Additional information: link

Address._verifyCallResult(bool,bytes,string) (#126-139) is never used and should be removed
Address.functionCall(address,bytes) (#86-88) is never used and should be removed
Address.functionCall(address,bytes,string) (#90-92) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#94-96) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#98-103) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#116-118) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#120-124) is never used and should be removed
Address.functionStaticCall(address,bytes) (#105-107) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#109-113) is never used and should be removed
Address.isContract(address) (#74-78) is never used and should be removed
Address.sendValue(address,uint256) (#80-84) is never used and should be removed
Context._msgData() (#65-68) is never used and should be removed
Hold4BUSD._getCurrentSupply() (#485-487) is never used and should be removed
SafeMath.div(uint256,uint256) (#39-41) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#50-55) is never used and should be removed
SafeMath.mul(uint256,uint256) (#35-37) is never used and should be removed
SafeMath.sub(uint256,uint256) (#31-33) is never used and should be removed
Remove unused functions.

Additional information: link

Hold4BUSD._maxWalletToken (#383) is set pre-construction with a non-constant function or state variable:
- _tTotal * 100 / 100
Hold4BUSD._previousMaxWalletToken (#384) is set pre-construction with a non-constant function or state variable:
- _maxWalletToken
Hold4BUSD._maxTxAmount (#386) is set pre-construction with a non-constant function or state variable:
- _tTotal * 3 / 100
Hold4BUSD._previousMaxTxAmount (#387) 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 (#10) 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) (#80-84):
- (success) = recipient.call{value: amount}() (#82)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#98-103):
- (success,returndata) = target.call{value: value}(data) (#101)
Low level call in Address.functionStaticCall(address,bytes,string) (#109-113):
- (success,returndata) = target.staticcall(data) (#111)
Low level call in Address.functionDelegateCall(address,bytes,string) (#120-124):
- (success,returndata) = target.delegatecall(data) (#122)
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() (#168) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#169) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#182) is not in mixedCase
Function IUniswapV2Router01.WETH() (#199) is not in mixedCase
Parameter Hold4BUSD.addLiquidity(uint256,uint256).BNBAmount (#610) is not in mixedCase
Function Hold4BUSD.remove_Random_Tokens(address,uint256) (#623-629) is not in mixedCase
Parameter Hold4BUSD.remove_Random_Tokens(address,uint256).random_Token_Address (#623) is not in mixedCase
Parameter Hold4BUSD.remove_Random_Tokens(address,uint256).percent_of_Tokens (#623) is not in mixedCase
Variable Hold4BUSD._isExcludedFromFee (#357) is not in mixedCase
Variable Hold4BUSD.Wallet_Marketing (#359) is not in mixedCase
Variable Hold4BUSD.Wallet_Dev (#360) is not in mixedCase
Constant Hold4BUSD.Wallet_Burn (#361) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Hold4BUSD.Lp_Reciever (#362) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Hold4BUSD._decimals (#367) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Hold4BUSD._name (#369) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Hold4BUSD._symbol (#370) is not in UPPER_CASE_WITH_UNDERSCORES
Variable Hold4BUSD._Tax_On_Buy (#375) is not in mixedCase
Variable Hold4BUSD._Tax_On_Sell (#376) is not in mixedCase
Variable Hold4BUSD.Percent_Marketing (#378) is not in mixedCase
Variable Hold4BUSD.Percent_Dev (#379) is not in mixedCase
Variable Hold4BUSD.Percent_Burn (#380) is not in mixedCase
Variable Hold4BUSD.Percent_AutoLP (#381) is not in mixedCase
Variable Hold4BUSD._maxWalletToken (#383) is not in mixedCase
Variable Hold4BUSD._maxTxAmount (#386) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#66)" inContext (#60-69)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in Hold4BUSD._transfer(address,address,uint256) (#499-554):
External calls:
- swapAndLiquify(contractTokenBalance) (#535)
- wallet.transfer(amount) (#557)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#535)
- wallet.transfer(amount) (#557)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Lp_Reciever,block.timestamp) (#613-620)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#552)
- _tOwned[sender] = _tOwned[sender] - tAmount (#637)
- _tOwned[recipient] = _tOwned[recipient] + tAmount (#638)
- _tOwned[sender] = _tOwned[sender] - tAmount (#649)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount (#650)
- _tOwned[address(this)] = _tOwned[address(this)] + buyFEE (#651)
- _tOwned[sender] = _tOwned[sender] - tAmount (#662)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount_scope_0 (#663)
- _tOwned[address(this)] = _tOwned[address(this)] + sellFEE (#664)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#552)
- _tTotal = _tTotal - tAmount (#642)
- _tTotal = _tTotal - tTransferAmount (#655)
- _tTotal = _tTotal - tTransferAmount_scope_0 (#668)
- txCount ++ (#548)
Event emitted after the call(s):
- Transfer(sender,recipient,tAmount) (#639)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#552)
- Transfer(sender,recipient,tTransferAmount) (#652)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#552)
- Transfer(sender,recipient,tTransferAmount_scope_0) (#665)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#552)
Reentrancy in Hold4BUSD.transferFrom(address,address,uint256) (#467-471):
External calls:
- _transfer(sender,recipient,amount) (#468)
- wallet.transfer(amount) (#557)
External calls sending eth:
- _transfer(sender,recipient,amount) (#468)
- wallet.transfer(amount) (#557)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Lp_Reciever,block.timestamp) (#613-620)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#469)
- _allowances[theOwner][theSpender] = amount (#494)
Event emitted after the call(s):
- Approval(theOwner,theSpender,amount) (#495)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#469)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#203) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#204)
Variable Hold4BUSD.swapAndLiquify(uint256).tokens_to_D (#570) is too similar to Hold4BUSD.swapAndLiquify(uint256).tokens_to_M (#569)
Prevent variables from having similar names.

Additional information: link

Hold4BUSD.slitherConstructorConstantVariables() (#333-677) uses literals with too many digits:
- Wallet_Burn = address(0x000000000000000000000000000000000000dEaD) (#361)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Hold4BUSD.MAX (#366) is never used in Hold4BUSD (#333-677)
Hold4BUSD._previousMaxWalletToken (#384) is never used in Hold4BUSD (#333-677)
Hold4BUSD._previousMaxTxAmount (#387) is never used in Hold4BUSD (#333-677)
Remove unused state variables.

Additional information: link

Hold4BUSD.Percent_AutoLP (#381) should be constant
Hold4BUSD.Percent_Burn (#380) should be constant
Hold4BUSD.Percent_Dev (#379) should be constant
Hold4BUSD.Percent_Marketing (#378) should be constant
Hold4BUSD.Wallet_Dev (#360) should be constant
Hold4BUSD.Wallet_Marketing (#359) should be constant
Hold4BUSD._Tax_On_Buy (#375) should be constant
Hold4BUSD._Tax_On_Sell (#376) should be constant
Hold4BUSD.swapAndLiquifyEnabled (#393) should be constant
Hold4BUSD.swapTrigger (#373) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Hold4BUSD.renounceOwnership() (#350-353)
name() should be declared external:
- Hold4BUSD.name() (#433-435)
symbol() should be declared external:
- Hold4BUSD.symbol() (#437-439)
decimals() should be declared external:
- Hold4BUSD.decimals() (#441-443)
totalSupply() should be declared external:
- Hold4BUSD.totalSupply() (#445-447)
transfer(address,uint256) should be declared external:
- Hold4BUSD.transfer(address,uint256) (#453-456)
allowance(address,address) should be declared external:
- Hold4BUSD.allowance(address,address) (#458-460)
approve(address,uint256) should be declared external:
- Hold4BUSD.approve(address,uint256) (#462-465)
transferFrom(address,address,uint256) should be declared external:
- Hold4BUSD.transferFrom(address,address,uint256) (#467-471)
increaseAllowance(address,uint256) should be declared external:
- Hold4BUSD.increaseAllowance(address,uint256) (#473-476)
decreaseAllowance(address,uint256) should be declared external:
- Hold4BUSD.decreaseAllowance(address,uint256) (#478-481)
remove_Random_Tokens(address,uint256) should be declared external:
- Hold4BUSD.remove_Random_Tokens(address,uint256) (#623-629)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

Contract has 17% buy tax and 16% sell tax.
Taxes are suspiciously high (over 10%) and contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Average 30d PancakeSwap liquidity is low.


Average 30d PancakeSwap volume is low.


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 Telegram and Twitter accounts


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


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 HOB