ElonMusk Token Logo

ElonMusk Token

ALERT: honeypot scam

About ElonMusk

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 8 February 2022

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


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

BusdKing.swapBack() (#613-662) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#644)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#645)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in BusdKing._transferFrom(address,address,uint256) (#548-589):
External calls:
- swapBack() (#558)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#623-629)
- dividendDistributor.deposit{value: amountBNBReflection}() (#639)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#644)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#645)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#652-659)
External calls sending eth:
- swapBack() (#558)
- dividendDistributor.deposit{value: amountBNBReflection}() (#639)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#644)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#645)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#652-659)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#566)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#574)
- finalAmount = takeFee(sender,recipient,amount) (#573)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#603)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#239-250) ignores return value by RewardToken.transfer(shareholder,amount) (#245)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


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

BusdKing.swapBack().tmpSuccess (#644) is written in both
(tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#644)
tmpSuccess = false (#648)
BusdKing.swapBack().tmpSuccess1 (#645) is written in both
(tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#645)
tmpSuccess1 = false (#649)
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.


Combination 2: Unchecked transfer + 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.


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

Reentrancy in DividendDistributor.distributeDividend(address) (#239-250):
External calls:
- RewardToken.transfer(shareholder,amount) (#245)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#247)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#248)
Reentrancy in DividendDistributor.process(uint256) (#210-232):
External calls:
- distributeDividend(shareholders[currentIndex]) (#224)
- RewardToken.transfer(shareholder,amount) (#245)
State variables written after the call(s):
- currentIndex ++ (#229)
Reentrancy in DividendDistributor.setShare(address,uint256) (#173-188):
External calls:
- distributeDividend(shareholder) (#176)
- RewardToken.transfer(shareholder,amount) (#245)
State variables written after the call(s):
- shares[shareholder].amount = amount (#186)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#187)
Apply the check-effects-interactions pattern.

Additional information: link

BusdKing.swapBack() (#613-662) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#652-659)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#168-171) should emit an event for:
- minPeriod = newMinPeriod (#169)
- minDistribution = newMinDistribution (#170)
BusdKing.changeFees(uint256,uint256,uint256,uint256) (#505-513) should emit an event for:
- liquidityFee = newLiqFee (#506)
- rewardsFee = newRewardFee (#507)
- totalFee = liquidityFee.add(marketingFee).add(rewardsFee) (#511)
- totalFeeIfSelling = totalFee.add(extraFeeOnSell) (#512)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#339) lacks a zero-check on :
- owner = adr (#340)
BusdKing.changeFeeReceivers(address,address,address).newLiquidityReceiver (#515) lacks a zero-check on :
- autoLiquidityReceiver = newLiquidityReceiver (#516)
BusdKing.changeFeeReceivers(address,address,address).newMarketingWallet (#515) lacks a zero-check on :
- marketingWallet = newMarketingWallet (#517)
BusdKing.changeFeeReceivers(address,address,address).newDevWallet (#515) lacks a zero-check on :
- devWallet = newDevWallet (#518)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#239-250) has external calls inside a loop: RewardToken.transfer(shareholder,amount) (#245)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in BusdKing._transferFrom(address,address,uint256) (#548-589):
External calls:
- swapBack() (#558)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#623-629)
- dividendDistributor.deposit{value: amountBNBReflection}() (#639)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#644)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#645)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#652-659)
External calls sending eth:
- swapBack() (#558)
- dividendDistributor.deposit{value: amountBNBReflection}() (#639)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#644)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#645)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#652-659)
State variables written after the call(s):
- launch() (#562)
- launchedAt = block.number (#471)
Reentrancy in BusdKing.constructor() (#409-439):
External calls:
- pair = IDEXFactory(router.factory()).createPair(router.WETH(),address(this)) (#412)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#413)
- _balances[msg.sender] = _totalSupply (#437)
- autoLiquidityReceiver = DEAD (#430)
- devWallet = 0x76711026CBeE8f6E4ECd8C1cEd75462f80769b2f (#432)
- dividendDistributor = new DividendDistributor(address(router)) (#415)
- isDividendExempt[pair] = true (#423)
- isDividendExempt[msg.sender] = true (#424)
- isDividendExempt[address(this)] = true (#425)
- isDividendExempt[DEAD] = true (#426)
- isDividendExempt[ZERO] = true (#427)
- isFeeExempt[msg.sender] = true (#417)
- isFeeExempt[address(this)] = true (#418)
- isTxLimitExempt[msg.sender] = true (#420)
- isTxLimitExempt[pair] = true (#421)
- marketingWallet = 0x74F0DdcEcc8361D668446bFc40C066B915026505 (#431)
- totalFee = liquidityFee.add(marketingFee).add(rewardsFee) (#434)
- totalFeeIfSelling = totalFee.add(extraFeeOnSell) (#435)
Reentrancy in DividendDistributor.deposit() (#190-208):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#198-203)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#207)
- totalDividends = totalDividends.add(amount) (#206)
Reentrancy in DividendDistributor.distributeDividend(address) (#239-250):
External calls:
- RewardToken.transfer(shareholder,amount) (#245)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#246)
Reentrancy in DividendDistributor.setShare(address,uint256) (#173-188):
External calls:
- distributeDividend(shareholder) (#176)
- RewardToken.transfer(shareholder,amount) (#245)
State variables written after the call(s):
- addShareholder(shareholder) (#180)
- shareholderIndexes[shareholder] = shareholders.length (#274)
- removeShareholder(shareholder) (#182)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#280)
- addShareholder(shareholder) (#180)
- shareholders.push(shareholder) (#275)
- removeShareholder(shareholder) (#182)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#279)
- shareholders.pop() (#281)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#185)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BusdKing._transferFrom(address,address,uint256) (#548-589):
External calls:
- swapBack() (#558)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#623-629)
- dividendDistributor.deposit{value: amountBNBReflection}() (#639)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#644)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#645)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#652-659)
- dividendDistributor.setShare(sender,_balances[sender]) (#578)
- dividendDistributor.setShare(recipient,_balances[recipient]) (#582)
- dividendDistributor.process(distributorGas) (#585)
External calls sending eth:
- swapBack() (#558)
- dividendDistributor.deposit{value: amountBNBReflection}() (#639)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#644)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#645)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#652-659)
Event emitted after the call(s):
- Transfer(sender,recipient,finalAmount) (#587)
Reentrancy in BusdKing._transferFrom(address,address,uint256) (#548-589):
External calls:
- swapBack() (#558)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#623-629)
- dividendDistributor.deposit{value: amountBNBReflection}() (#639)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#644)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#645)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#652-659)
External calls sending eth:
- swapBack() (#558)
- dividendDistributor.deposit{value: amountBNBReflection}() (#639)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#644)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#645)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#652-659)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#604)
- finalAmount = takeFee(sender,recipient,amount) (#573)
Reentrancy in BusdKing.constructor() (#409-439):
External calls:
- pair = IDEXFactory(router.factory()).createPair(router.WETH(),address(this)) (#412)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#438)
Reentrancy in BusdKing.swapBack() (#613-662):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#623-629)
- dividendDistributor.deposit{value: amountBNBReflection}() (#639)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#644)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#645)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#652-659)
External calls sending eth:
- dividendDistributor.deposit{value: amountBNBReflection}() (#639)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#644)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#645)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#652-659)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#660)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#234-237) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#235-236)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#210-232) has costly operations inside a loop:
- currentIndex = 0 (#221)
DividendDistributor.distributeDividend(address) (#239-250) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#244)
DividendDistributor.process(uint256) (#210-232) has costly operations inside a loop:
- currentIndex ++ (#229)
Use a local variable to hold the loop computation result.

Additional information: link

Pragma version^0.7.4 (#6) 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

Low level call in BusdKing.swapBack() (#613-662):
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#644)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#645)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IDEXRouter.WETH() (#68) is not in mixedCase
Variable DividendDistributor._token (#124) is not in mixedCase
Variable DividendDistributor.RewardToken (#134) is not in mixedCase
Constant BusdKing._name (#352) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BusdKing._symbol (#353) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BusdKing._decimals (#354) is not in UPPER_CASE_WITH_UNDERSCORES
Variable BusdKing.DEAD (#356) is not in mixedCase
Variable BusdKing.ZERO (#357) is not in mixedCase
Variable BusdKing.RewardToken (#361) is not in mixedCase
Variable BusdKing._totalSupply (#363) is not in mixedCase
Variable BusdKing._maxTxAmount (#364) is not in mixedCase
Variable BusdKing._walletMax (#365) is not in mixedCase
Variable BusdKing._balances (#369) is not in mixedCase
Variable BusdKing._allowances (#370) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#73) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#74)
Prevent variables from having similar names.

Additional information: link

BusdKing.slitherConstructorVariables() (#348-666) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#356)
BusdKing.slitherConstructorVariables() (#348-666) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#357)
BusdKing.slitherConstructorVariables() (#348-666) uses literals with too many digits:
- distributorGas = 500000 (#395)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

BusdKing.RewardToken (#361) is never used in BusdKing (#348-666)
Remove unused state variables.

Additional information: link

BusdKing.DEAD (#356) should be constant
BusdKing.RewardToken (#361) should be constant
BusdKing.ZERO (#357) should be constant
BusdKing._totalSupply (#363) should be constant
BusdKing.routerAddress (#360) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#145) should be constant
DividendDistributor.routerAddress (#133) 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) (#311-313)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#318-320)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#339-343)
getCirculatingSupply() should be declared external:
- BusdKing.getCirculatingSupply() (#449-451)
tradingStatus(bool) should be declared external:
- BusdKing.tradingStatus(bool) (#609-611)
Use the external attribute for functions never called from the contract.

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 ElonMusk