BomberBabes Token Logo

$BABES [BomberBabes] Token

About $BABES

Listings

Token 20 months
white paper

Play to Earn, Free to Play, NFT’s and 633,360% High APY Auto-stacking + Auto-Compounding! Game is already in development - release shortly after launch. Well known Marketer on board which pushed previous projects beyond 180M Marketcap. Trusted and vetted team - DYOR and join us!

Social

Laser Scorebeta Last Audit: 3 June 2022

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

BomberBabes._name (#511) shadows:
- ERC20Detailed._name (#478)
BomberBabes._symbol (#512) shadows:
- ERC20Detailed._symbol (#479)
BomberBabes._decimals (#513) shadows:
- ERC20Detailed._decimals (#480)
Remove the state variable shadowing.

Additional information: link


Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.

BomberBabes.addLiquidity() (#726-763) sends eth to arbitrary user
Dangerous calls:
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#753-760)
BomberBabes.swapBack() (#765-795) sends eth to arbitrary user
Dangerous calls:
- (success) = address(marketingReceiver).call{gas: 30000,value: amountETHToTreasuryAndSIF.mul(marketingFee).div(marketingFee.add(developmentFee))}() (#787-790)
- (success,None) = address(developmentReceiver).call{gas: 30000,value: amountETHToTreasuryAndSIF.mul(developmentFee).div(marketingFee.add(developmentFee))}() (#791-794)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in BomberBabes._transferFrom(address,address,uint256) (#666-697):
External calls:
- rebase() (#677)
- pairContract.sync() (#630)
- addLiquidity() (#681)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#742-748)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#753-760)
- swapBack() (#685)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#777-783)
- (success) = address(marketingReceiver).call{gas: 30000,value: amountETHToTreasuryAndSIF.mul(marketingFee).div(marketingFee.add(developmentFee))}() (#787-790)
- (success,None) = address(developmentReceiver).call{gas: 30000,value: amountETHToTreasuryAndSIF.mul(developmentFee).div(marketingFee.add(developmentFee))}() (#791-794)
External calls sending eth:
- addLiquidity() (#681)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#753-760)
- swapBack() (#685)
- (success) = address(marketingReceiver).call{gas: 30000,value: amountETHToTreasuryAndSIF.mul(marketingFee).div(marketingFee.add(developmentFee))}() (#787-790)
- (success,None) = address(developmentReceiver).call{gas: 30000,value: amountETHToTreasuryAndSIF.mul(developmentFee).div(marketingFee.add(developmentFee))}() (#791-794)
State variables written after the call(s):
- _gonBalances[sender] = _gonBalances[sender].sub(gonAmount) (#689)
- _gonBalances[recipient] = _gonBalances[recipient].add(gonAmountReceived) (#693)
- gonAmountReceived = takeFee(sender,recipient,gonAmount) (#690-692)
- _gonBalances[vault] = _gonBalances[vault].add(gonAmount.div(feeDenominator).mul(vaultFee)) (#714)
- _gonBalances[address(this)] = _gonBalances[address(this)].add(gonAmount.div(feeDenominator).mul(_marketingFee.add(developmentFee))) (#715-717)
- _gonBalances[autoLiquidityReceiver] = _gonBalances[autoLiquidityReceiver].add(gonAmount.div(feeDenominator).mul(liquidityFee)) (#718-720)
- swapBack() (#685)
- inSwap = true (#550)
- inSwap = false (#552)
Apply the check-effects-interactions pattern.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains


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.

BomberBabes.swapBack().success (#787) is written in both
(success) = address(marketingReceiver).call{gas: 30000,value: amountETHToTreasuryAndSIF.mul(marketingFee).div(marketingFee.add(developmentFee))}() (#787-790)
(success,None) = address(developmentReceiver).call{gas: 30000,value: amountETHToTreasuryAndSIF.mul(developmentFee).div(marketingFee.add(developmentFee))}() (#791-794)
Fix or remove the writes.

Additional information: link

Low level call in BomberBabes.swapBack() (#765-795):
- (success) = address(marketingReceiver).call{gas: 30000,value: amountETHToTreasuryAndSIF.mul(marketingFee).div(marketingFee.add(developmentFee))}() (#787-790)
- (success,None) = address(developmentReceiver).call{gas: 30000,value: amountETHToTreasuryAndSIF.mul(developmentFee).div(marketingFee.add(developmentFee))}() (#791-794)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

BomberBabes.isContract(address) (#960-966) uses assembly
- INLINE ASM (#962-964)
Do not use evm assembly.

Additional information: link

SafeMath.mod(uint256,uint256) (#96-99) is never used and should be removed
SafeMathInt.abs(int256) (#41-44) is never used and should be removed
SafeMathInt.add(int256,int256) (#35-39) is never used and should be removed
SafeMathInt.div(int256,int256) (#23-27) is never used and should be removed
SafeMathInt.mul(int256,int256) (#15-21) is never used and should be removed
SafeMathInt.sub(int256,int256) (#29-33) is never used and should be removed
Remove unused functions.

Additional information: link

Variable IPancakeSwapRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#227) is too similar to IPancakeSwapRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#228)
Prevent variables from having similar names.

Additional information: link

Contract ticker ($BABES) 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.

SafeMathInt.MAX_INT256 (#13) is never used in SafeMathInt (#11-45)
Remove unused state variables.

Additional information: link

BomberBabes.rebase()._rebaseRate (#607) 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

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

Function IPancakeSwapPair.DOMAIN_SEPARATOR() (#150) is not in mixedCase
Function IPancakeSwapPair.PERMIT_TYPEHASH() (#152) is not in mixedCase
Function IPancakeSwapPair.MINIMUM_LIQUIDITY() (#178) is not in mixedCase
Function IPancakeSwapRouter.WETH() (#222) is not in mixedCase
Parameter BomberBabes.setAutoRebase(bool)._flag (#834) is not in mixedCase
Parameter BomberBabes.setAutoAddLiquidity(bool)._flag (#843) is not in mixedCase
Parameter BomberBabes.checkFeeExempt(address)._addr (#879) is not in mixedCase
Parameter BomberBabes.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#896) is not in mixedCase
Parameter BomberBabes.setFeeReceivers(address,address,address,address)._marketingReceiver (#897) is not in mixedCase
Parameter BomberBabes.setFeeReceivers(address,address,address,address)._developmentReceiver (#898) is not in mixedCase
Parameter BomberBabes.setFeeReceivers(address,address,address,address)._vault (#899) is not in mixedCase
Parameter BomberBabes.setFeeStructure(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#913) is not in mixedCase
Parameter BomberBabes.setFeeStructure(uint256,uint256,uint256,uint256,uint256)._marketingFee (#914) is not in mixedCase
Parameter BomberBabes.setFeeStructure(uint256,uint256,uint256,uint256,uint256)._developmentFee (#915) is not in mixedCase
Parameter BomberBabes.setFeeStructure(uint256,uint256,uint256,uint256,uint256)._sellFee (#916) is not in mixedCase
Parameter BomberBabes.setFeeStructure(uint256,uint256,uint256,uint256,uint256)._vaultFee (#917) is not in mixedCase
Parameter BomberBabes.setWhitelist(address)._addr (#935) is not in mixedCase
Parameter BomberBabes.setBotBlacklist(address,bool)._botAddress (#939) is not in mixedCase
Parameter BomberBabes.setBotBlacklist(address,bool)._flag (#939) is not in mixedCase
Parameter BomberBabes.setPairAddress(address)._pairAddress (#944) is not in mixedCase
Parameter BomberBabes.setLP(address)._address (#948) is not in mixedCase
Variable BomberBabes._name (#511) is not in mixedCase
Variable BomberBabes._symbol (#512) is not in mixedCase
Variable BomberBabes._decimals (#513) is not in mixedCase
Variable BomberBabes._isFeeExempt (#516) is not in mixedCase
Variable BomberBabes.DEAD (#537) is not in mixedCase
Variable BomberBabes.ZERO (#538) is not in mixedCase
Variable BomberBabes._autoRebase (#559) is not in mixedCase
Variable BomberBabes._autoAddLiquidity (#560) is not in mixedCase
Variable BomberBabes._initRebaseStartTime (#561) is not in mixedCase
Variable BomberBabes._lastRebasedTime (#562) is not in mixedCase
Variable BomberBabes._lastAddLiquidityTime (#563) is not in mixedCase
Variable BomberBabes._totalSupply (#564) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

BomberBabes.slitherConstructorVariables() (#505-970) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#537)
BomberBabes.slitherConstructorVariables() (#505-970) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#538)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

BomberBabes.DEAD (#537) should be constant
BomberBabes.ZERO (#538) should be constant
BomberBabes._decimals (#513) should be constant
BomberBabes._name (#511) should be constant
BomberBabes._symbol (#512) should be constant
BomberBabes.feeDenominator (#533) should be constant
BomberBabes.rebaseInterval (#534) should be constant
BomberBabes.swapEnabled (#545) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

owner() should be declared external:
- Ownable.owner() (#448-450)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#461-464)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#466-468)
name() should be declared external:
- ERC20Detailed.name() (#492-494)
symbol() should be declared external:
- ERC20Detailed.symbol() (#496-498)
decimals() should be declared external:
- ERC20Detailed.decimals() (#500-502)
getLiquidityBacking(uint256) should be declared external:
- BomberBabes.getLiquidityBacking(uint256) (#907-910)
setPairAddress(address) should be declared external:
- BomberBabes.setPairAddress(address) (#944-946)
Use the external attribute for functions never called from the contract.

Additional information: link

BomberBabes.constructor(address,address,address,address,address,address)._owner (#573) shadows:
- Ownable._owner (#438) (state variable)
Rename the local variables that shadow another component.

Additional information: link

BomberBabes.setFeeStructure(uint256,uint256,uint256,uint256,uint256) (#912-925) should emit an event for:
- liquidityFee = _liquidityFee (#919)
- marketingFee = _marketingFee (#920)
- developmentFee = _developmentFee (#921)
- sellFee = _sellFee (#922)
- vaultFee = _vaultFee (#923)
- totalFee = liquidityFee.add(marketingFee).add(developmentFee).add(vaultFee) (#924)
BomberBabes.setRebaseRate(uint256) (#931-933) should emit an event for:
- rebaseRate = rate (#932)
Emit an event for critical parameter changes.

Additional information: link

BomberBabes.constructor(address,address,address,address,address,address)._autoLiquidityReceiver (#574) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#582)
BomberBabes.constructor(address,address,address,address,address,address)._marketingReceiver (#575) lacks a zero-check on :
- marketingReceiver = _marketingReceiver (#583)
BomberBabes.constructor(address,address,address,address,address,address)._developmentReceiver (#576) lacks a zero-check on :
- developmentReceiver = _developmentReceiver (#584)
BomberBabes.constructor(address,address,address,address,address,address)._vault (#577) lacks a zero-check on :
- vault = _vault (#585)
BomberBabes.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#896) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#901)
BomberBabes.setFeeReceivers(address,address,address,address)._marketingReceiver (#897) lacks a zero-check on :
- marketingReceiver = _marketingReceiver (#902)
BomberBabes.setFeeReceivers(address,address,address,address)._developmentReceiver (#898) lacks a zero-check on :
- developmentReceiver = _developmentReceiver (#903)
BomberBabes.setFeeReceivers(address,address,address,address)._vault (#899) lacks a zero-check on :
- vault = _vault (#904)
BomberBabes.setPairAddress(address)._pairAddress (#944) lacks a zero-check on :
- pairAddress = _pairAddress (#945)
Check that the address is not zero.

Additional information: link

Reentrancy in BomberBabes.addLiquidity() (#726-763):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#742-748)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#753-760)
External calls sending eth:
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#753-760)
State variables written after the call(s):
- _lastAddLiquidityTime = block.timestamp (#762)
Reentrancy in BomberBabes.constructor(address,address,address,address,address,address) (#571-603):
External calls:
- pair = IPancakeSwapFactory(router.factory()).createPair(router.WETH(),address(this)) (#580)
State variables written after the call(s):
- _allowedFragments[address(this)][address(router)] = uint256(- 1) (#587)
- _autoAddLiquidity = false (#597)
- _autoRebase = false (#596)
- _gonBalances[_owner] = TOTAL_GONS (#592)
- _gonsPerFragment = TOTAL_GONS.div(_totalSupply) (#593)
- _initRebaseStartTime = block.timestamp (#594)
- _isFeeExempt[_owner] = true (#598)
- _isFeeExempt[address(this)] = true (#599)
- _lastRebasedTime = block.timestamp (#595)
- _transferOwnership(_owner) (#601)
- _owner = newOwner (#473)
- _totalSupply = INITIAL_FRAGMENTS_SUPPLY (#591)
- autoLiquidityReceiver = _autoLiquidityReceiver (#582)
- developmentReceiver = _developmentReceiver (#584)
- marketingReceiver = _marketingReceiver (#583)
- pairAddress = pair (#588)
- pairContract = IPancakeSwapPair(pair) (#589)
- vault = _vault (#585)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BomberBabes._transferFrom(address,address,uint256) (#666-697):
External calls:
- rebase() (#677)
- pairContract.sync() (#630)
- addLiquidity() (#681)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#742-748)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#753-760)
- swapBack() (#685)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#777-783)
- (success) = address(marketingReceiver).call{gas: 30000,value: amountETHToTreasuryAndSIF.mul(marketingFee).div(marketingFee.add(developmentFee))}() (#787-790)
- (success,None) = address(developmentReceiver).call{gas: 30000,value: amountETHToTreasuryAndSIF.mul(developmentFee).div(marketingFee.add(developmentFee))}() (#791-794)
External calls sending eth:
- addLiquidity() (#681)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#753-760)
- swapBack() (#685)
- (success) = address(marketingReceiver).call{gas: 30000,value: amountETHToTreasuryAndSIF.mul(marketingFee).div(marketingFee.add(developmentFee))}() (#787-790)
- (success,None) = address(developmentReceiver).call{gas: 30000,value: amountETHToTreasuryAndSIF.mul(developmentFee).div(marketingFee.add(developmentFee))}() (#791-794)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount.div(_gonsPerFragment)) (#722)
- gonAmountReceived = takeFee(sender,recipient,gonAmount) (#690-692)
- Transfer(sender,recipient,gonAmountReceived.div(_gonsPerFragment)) (#695)
Reentrancy in BomberBabes.constructor(address,address,address,address,address,address) (#571-603):
External calls:
- pair = IPancakeSwapFactory(router.factory()).createPair(router.WETH(),address(this)) (#580)
Event emitted after the call(s):
- OwnershipTransferred(_owner,newOwner) (#472)
- _transferOwnership(_owner) (#601)
- Transfer(address(0x0),_owner,_totalSupply) (#602)
Reentrancy in BomberBabes.rebase() (#605-633):
External calls:
- pairContract.sync() (#630)
Event emitted after the call(s):
- LogRebase(epoch,_totalSupply) (#632)
Apply the check-effects-interactions pattern.

Additional information: link

BomberBabes.rebase() (#605-633) uses timestamp for comparisons
Dangerous comparisons:
- deltaTimeFromInit < (31536000) (#613)
- deltaTimeFromInit >= (31536000) (#615)
- deltaTimeFromInit >= ((15 * 31536000) / 10) (#617)
- deltaTimeFromInit >= (7 * 31536000) (#619)
- i < times (#623)
BomberBabes.shouldRebase() (#816-823) uses timestamp for comparisons
Dangerous comparisons:
- _autoRebase && (_totalSupply < maxSupply) && msg.sender != pair && ! inSwap && block.timestamp >= (_lastRebasedTime + rebaseInterval) (#817-822)
BomberBabes.shouldAddLiquidity() (#825-828) uses timestamp for comparisons
Dangerous comparisons:
- _autoAddLiquidity && ! inSwap && msg.sender != pair && block.timestamp >= (_lastAddLiquidityTime + 172800) (#826-827)
Avoid relying on block.timestamp.

Additional information: link

BomberBabes.rebase() (#605-633) performs a multiplication on the result of a division:
-times = deltaTime.div(rebaseInterval) (#610)
-epoch = times.mul(60) (#611)
BomberBabes.rebase() (#605-633) performs a multiplication on the result of a division:
-times = deltaTime.div(rebaseInterval) (#610)
-_lastRebasedTime = _lastRebasedTime.add(times.mul(rebaseInterval)) (#628)
BomberBabes.takeFee(address,address,uint256) (#699-724) performs a multiplication on the result of a division:
-feeAmount = gonAmount.div(feeDenominator).mul(_totalFee) (#712)
BomberBabes.takeFee(address,address,uint256) (#699-724) performs a multiplication on the result of a division:
-_gonBalances[vault] = _gonBalances[vault].add(gonAmount.div(feeDenominator).mul(vaultFee)) (#714)
BomberBabes.takeFee(address,address,uint256) (#699-724) performs a multiplication on the result of a division:
-_gonBalances[address(this)] = _gonBalances[address(this)].add(gonAmount.div(feeDenominator).mul(_marketingFee.add(developmentFee))) (#715-717)
BomberBabes.takeFee(address,address,uint256) (#699-724) performs a multiplication on the result of a division:
-_gonBalances[autoLiquidityReceiver] = _gonBalances[autoLiquidityReceiver].add(gonAmount.div(feeDenominator).mul(liquidityFee)) (#718-720)
BomberBabes.getLiquidityBacking(uint256) (#907-910) performs a multiplication on the result of a division:
-liquidityBalance = _gonBalances[pair].div(_gonsPerFragment) (#908)
-accuracy.mul(liquidityBalance.mul(2)).div(getCirculatingSupply()) (#909)
Consider ordering multiplication before division.

Additional information: link

BomberBabes.addLiquidity() (#726-763) ignores return value by router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#753-760)
Ensure that all the return values of the function calls are used.

Additional information: link

BomberBabes.totalFee (#532) is set pre-construction with a non-constant function or state variable:
- liquidityFee.add(marketingFee).add(developmentFee).add(vaultFee)
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

Holders:

Contract has 12% buy tax and 12% 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 volume is low.


Average 30d number of PancakeSwap swaps is low.


Number of Binance Smart Chain (BSC) token holders is low.


Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


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 find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Token is not listed at Mobula.Finance

Additional information: link


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


Young tokens have high risks of price dump / death

Price for $BABES

News for $BABES