BabyMoonForce Token Logo

BMF [BabyMoonForce] Token

ALERT: dead

About BMF

Listings

Not Found
Token 2 years

If you have
Telegram
, you can contact
@BabyMoonForceBSC
right away.

Social

Laser Scorebeta Last Audit: 4 May 2022

report
Token seems to be unmaintained (no trading, inactive website, inactive socials, etc.).

BabyMoonForce.swapBack() (#467-493) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingAmountReceiver).call{value: amountBNBMarketing}() (#484-486)
- (tmpSuccess2) = address(projectMaintenanceReceiver).call{value: amountBNB.sub(amountBNBMarketing)}() (#487-489)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in BabyMoonForce._transferFrom(address,address,uint256) (#362-406):
External calls:
- swapBack() (#385)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(swapThreshold,0,path,address(this),block.timestamp) (#472-478)
- (tmpSuccess) = address(marketingAmountReceiver).call{value: amountBNBMarketing}() (#484-486)
- (tmpSuccess2) = address(projectMaintenanceReceiver).call{value: amountBNB.sub(amountBNBMarketing)}() (#487-489)
External calls sending eth:
- swapBack() (#385)
- (tmpSuccess) = address(marketingAmountReceiver).call{value: amountBNBMarketing}() (#484-486)
- (tmpSuccess2) = address(projectMaintenanceReceiver).call{value: amountBNB.sub(amountBNBMarketing)}() (#487-489)
State variables written after the call(s):
- _basicTransfer(address(this),DEAD,taxBurnAmount) (#389)
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#413-416)
- _balances[recipient] = _balances[recipient].add(amount) (#417)
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#394-397)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#402)
- amountReceived = takeFee(sender,amount,recipient) (#399-401)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#446)
Apply the check-effects-interactions pattern.

Additional information: link

BabyMoonForce.swapBack().tmpSuccess2 (#487) is written in both
(tmpSuccess2) = address(projectMaintenanceReceiver).call{value: amountBNB.sub(amountBNBMarketing)}() (#487-489)
tmpSuccess2 = false (#491)
BabyMoonForce.swapBack().tmpSuccess (#484) is written in both
(tmpSuccess) = address(marketingAmountReceiver).call{value: amountBNBMarketing}() (#484-486)
tmpSuccess = false (#492)
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.


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


Contract ownership is not renounced (belongs to a wallet)

BabyMoonForce.setSwapBackSettings(bool,uint256,uint256) (#525-537) should emit an event for:
- swapThreshold = _amount * 10 ** 9 (#535)
BabyMoonForce.setFees(uint256,uint256,uint256) (#553-564) should emit an event for:
- totalFee = _totalFee (#561)
- totalSellFee = _totalSellFee (#562)
- totalTransferFee = _totalTransferFee (#563)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#168) lacks a zero-check on :
- owner = adr (#169)
BabyMoonForce.setFeeReceivers(address,address)._marketingAmountReceiver (#514) lacks a zero-check on :
- marketingAmountReceiver = _marketingAmountReceiver (#517)
BabyMoonForce.setFeeReceivers(address,address)._projectMaintenanceReceiver (#515) lacks a zero-check on :
- projectMaintenanceReceiver = _projectMaintenanceReceiver (#518)
Check that the address is not zero.

Additional information: link

Reentrancy in BabyMoonForce.constructor() (#263-295):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#272)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = type()(uint256).max (#273)
- _balances[msg.sender] = _totalSupply (#293)
- isFeeExempt[msg.sender] = true (#276)
- isFeeExempt[marketingAmountReceiver] = true (#277)
- isFeeExempt[projectMaintenanceReceiver] = true (#278)
- isFeeExempt[DEAD] = true (#279)
- isFeeExempt[address(this)] = true (#280)
- isMaxWalletExempt[msg.sender] = true (#283)
- isMaxWalletExempt[marketingAmountReceiver] = true (#284)
- isMaxWalletExempt[projectMaintenanceReceiver] = true (#285)
- isMaxWalletExempt[DEAD] = true (#286)
- isMaxWalletExempt[address(this)] = true (#287)
- isMaxWalletExempt[pair] = true (#288)
- pairs[pair] = true (#291)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BabyMoonForce._transferFrom(address,address,uint256) (#362-406):
External calls:
- swapBack() (#385)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(swapThreshold,0,path,address(this),block.timestamp) (#472-478)
- (tmpSuccess) = address(marketingAmountReceiver).call{value: amountBNBMarketing}() (#484-486)
- (tmpSuccess2) = address(projectMaintenanceReceiver).call{value: amountBNB.sub(amountBNBMarketing)}() (#487-489)
External calls sending eth:
- swapBack() (#385)
- (tmpSuccess) = address(marketingAmountReceiver).call{value: amountBNBMarketing}() (#484-486)
- (tmpSuccess2) = address(projectMaintenanceReceiver).call{value: amountBNB.sub(amountBNBMarketing)}() (#487-489)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#418)
- _basicTransfer(address(this),DEAD,taxBurnAmount) (#389)
- Transfer(sender,address(this),feeAmount) (#447)
- amountReceived = takeFee(sender,amount,recipient) (#399-401)
- Transfer(sender,recipient,amountReceived) (#404)
Reentrancy in BabyMoonForce.constructor() (#263-295):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#272)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#294)
Apply the check-effects-interactions pattern.

Additional information: link

BabyMoonForce._maxWalletToken (#217) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 1) / 100
BabyMoonForce.swapThreshold (#252) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 2) / 1000
BabyMoonForce.taxBurnAmount (#254) is set pre-construction with a non-constant function or state variable:
- swapThreshold.div(10)
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.10 (#14) 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 BabyMoonForce.swapBack() (#467-493):
- (tmpSuccess) = address(marketingAmountReceiver).call{value: amountBNBMarketing}() (#484-486)
- (tmpSuccess2) = address(projectMaintenanceReceiver).call{value: amountBNB.sub(amountBNBMarketing)}() (#487-489)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Parameter BabyMoonForce.setFeeReceivers(address,address)._marketingAmountReceiver (#514) is not in mixedCase
Parameter BabyMoonForce.setFeeReceivers(address,address)._projectMaintenanceReceiver (#515) is not in mixedCase
Parameter BabyMoonForce.setSwapBackSettings(bool,uint256,uint256)._enabled (#526) is not in mixedCase
Parameter BabyMoonForce.setSwapBackSettings(bool,uint256,uint256)._amount (#527) is not in mixedCase
Parameter BabyMoonForce.setSwapBackSettings(bool,uint256,uint256)._taxBurnAmount (#528) is not in mixedCase
Parameter BabyMoonForce.setFeesOn(bool)._feesOn (#549) is not in mixedCase
Parameter BabyMoonForce.setFees(uint256,uint256,uint256)._totalFee (#554) is not in mixedCase
Parameter BabyMoonForce.setFees(uint256,uint256,uint256)._totalSellFee (#555) is not in mixedCase
Parameter BabyMoonForce.setFees(uint256,uint256,uint256)._totalTransferFee (#556) is not in mixedCase
Variable BabyMoonForce.WBNB (#205) is not in mixedCase
Variable BabyMoonForce.DEAD (#206) is not in mixedCase
Variable BabyMoonForce.ZERO (#207) is not in mixedCase
Variable BabyMoonForce.BUSD (#208) is not in mixedCase
Constant BabyMoonForce._name (#210) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BabyMoonForce._symbol (#211) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BabyMoonForce._decimals (#212) is not in UPPER_CASE_WITH_UNDERSCORES
Variable BabyMoonForce._totalSupply (#214) is not in mixedCase
Variable BabyMoonForce._maxWalletToken (#217) is not in mixedCase
Variable BabyMoonForce._balances (#219) is not in mixedCase
Variable BabyMoonForce._allowances (#220) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

BabyMoonForce.slitherConstructorVariables() (#202-574) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#206)
BabyMoonForce.slitherConstructorVariables() (#202-574) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#207)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

BabyMoonForce.BUSD (#208) is never used in BabyMoonForce (#202-574)
Remove unused state variables.

Additional information: link

BabyMoonForce.BUSD (#208) should be constant
BabyMoonForce.DEAD (#206) should be constant
BabyMoonForce.WBNB (#205) should be constant
BabyMoonForce.ZERO (#207) should be constant
BabyMoonForce._totalSupply (#214) should be constant
BabyMoonForce.devAmount (#230) should be constant
BabyMoonForce.feeDenominator (#241) should be constant
BabyMoonForce.marketingAmount (#229) should be constant
BabyMoonForce.totalAmountDivider (#231) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

authorize(address) should be declared external:
- Auth.authorize(address) (#140-142)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#147-149)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#168-172)
approve(address,uint256) should be declared external:
- BabyMoonForce.approve(address,uint256) (#332-340)
getCirculatingSupply() should be declared external:
- BabyMoonForce.getCirculatingSupply() (#539-541)
Use the external attribute for functions never called from the contract.

Additional information: link


Not a direct threat, but may indicate unreliable intentions of developer. Both name and ticker of current token are widespread, i.e. common across multiple tokens. This is slightly suspicious


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.

Holders:

Contract has 15% buy tax and 18% 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 less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


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.


Average 30d PancakeSwap liquidity is low.


Token is deployed only at one blockchain


Token has only one trading pair


Telegram account link seems to be invalid


Twitter account has relatively few followers


Last post in Twitter was more than 30 days ago


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


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/project description on the website or on BscScan, CoinMarketCap


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 is marked as risky (blacklisted creator, fake name, dead project, 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


Young tokens have high risks of price dump / death

Price for BMF

News for BMF