EverBased Token Logo

BASED [EverBased] Token

ALERT: unclassified scam

About BASED

Listings

Not Found
Token 2 years

😎Everbase, the most based rebase token there's ever been ! 🔥🚀 title something like that ?

Social

Laser Scorebeta Last Audit: 9 June 2022

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

Anti-Scam

Links


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

EverBased.swapBack() (#439-463) sends eth to arbitrary user
Dangerous calls:
- marketingFeeReceiver.transfer(amountETHMarketing) (#461)
- devFeeReceiver.transfer(amountETHDev) (#462)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in EverBased._transferFrom(address,address,uint256) (#363-410):
External calls:
- swapBack() (#389)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(contractTokenBalance,0,path,address(this),block.timestamp) (#448-454)
External calls sending eth:
- swapBack() (#389)
- marketingFeeReceiver.transfer(amountETHMarketing) (#461)
- devFeeReceiver.transfer(amountETHDev) (#462)
State variables written after the call(s):
- _gonBalances[sender] -= gonAmount (#392)
- _gonBalances[recipient] += gonAmountReceived (#397)
- gonAmountReceived = takeFee(sender,gonAmount) (#394-396)
- _gonBalances[address(this)] += feeAmount (#433)
Apply the check-effects-interactions pattern.

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.


Contract ownership is not renounced (belongs to a wallet)

EverBased.swapBack() (#439-463) has external calls inside a loop: path[1] = router.WETH() (#444)
EverBased.swapBack() (#439-463) has external calls inside a loop: router.swapExactTokensForETHSupportingFeeOnTransferTokens(contractTokenBalance,0,path,address(this),block.timestamp) (#448-454)
EverBased.swapBack() (#439-463) has external calls inside a loop: marketingFeeReceiver.transfer(amountETHMarketing) (#461)
EverBased.swapBack() (#439-463) has external calls inside a loop: devFeeReceiver.transfer(amountETHDev) (#462)
EverBased._transferFrom(address,address,uint256) (#363-410) has external calls inside a loop: rb.rebase() (#401)
Favor pull over push strategy for external calls.

Additional information: link

EverBased.swapping() (#230-234) has costly operations inside a loop:
- inSwap = true (#231)
EverBased.swapping() (#230-234) has costly operations inside a loop:
- inSwap = false (#233)
Use a local variable to hold the loop computation result.

Additional information: link

EverBased.setMaxWalletToken(uint256,uint256) (#532-537) performs a multiplication on the result of a division:
-gonMaxWallet = (TOTAL_GONS / _denom) * _num (#536)
EverBased.setMaxTx(uint256,uint256) (#539-544) performs a multiplication on the result of a division:
-gonMaxTx = (TOTAL_GONS / _denom) * _num (#543)
EverBased.setSwapBackSettings(bool,uint256,uint256) (#573-580) performs a multiplication on the result of a division:
-gonSwapThreshold = (TOTAL_GONS / _denom) * _num (#579)
EverBased.slitherConstructorVariables() (#171-660) performs a multiplication on the result of a division:
-gonMaxWallet = (TOTAL_GONS / 100) * 5 (#207)
EverBased.slitherConstructorVariables() (#171-660) performs a multiplication on the result of a division:
-gonSwapThreshold = (TOTAL_GONS / 10000) * 10 (#228)
Consider ordering multiplication before division.

Additional information: link

EverBased.setMaster(address) (#309-311) should emit an event for:
- master = _master (#310)
Emit an event for critical parameter changes.

Additional information: link

EverBased.setMaxWalletToken(uint256,uint256) (#532-537) should emit an event for:
- gonMaxWallet = (TOTAL_GONS / _denom) * _num (#536)
EverBased.setMaxTx(uint256,uint256) (#539-544) should emit an event for:
- gonMaxTx = (TOTAL_GONS / _denom) * _num (#543)
EverBased.setSwapBackSettings(bool,uint256,uint256) (#573-580) should emit an event for:
- gonSwapThreshold = (TOTAL_GONS / _denom) * _num (#579)
EverBased.setFees(uint256,uint256,uint256,uint256) (#594-606) should emit an event for:
- devFee = _devFee (#600)
- buyBackFee = _buyBackFee (#601)
- marketingFee = _marketingFee (#602)
- totalFee = devFee + marketingFee + buyBackFee (#603)
- feeDenominator = _feeDenominator (#604)
Emit an event for critical parameter changes.

Additional information: link

EverBased.setMaster(address)._master (#309) lacks a zero-check on :
- master = _master (#310)
EverBased.setFeeReceivers(address,address)._devFeeReceiver (#609) lacks a zero-check on :
- devFeeReceiver = address(_devFeeReceiver) (#612)
EverBased.setFeeReceivers(address,address)._marketingFeeReceiver (#610) lacks a zero-check on :
- marketingFeeReceiver = address(_marketingFeeReceiver) (#613)
EverBased.clearStuckBalance(uint256,address).adr (#639) lacks a zero-check on :
- address(adr).transfer((amountETH * amountPercentage) / 100) (#641)
Check that the address is not zero.

Additional information: link

Reentrancy in EverBased.constructor() (#278-307):
External calls:
- pair = IDEXFactory(router.factory()).createPair(router.WETH(),address(this)) (#281-284)
State variables written after the call(s):
- _allowedFragments[address(this)][address(router)] = type()(uint256).max (#286)
- _allowedFragments[msg.sender][address(router)] = type()(uint256).max (#287)
- _gonBalances[msg.sender] = TOTAL_GONS (#291)
- _gonsPerFragment = TOTAL_GONS / _totalSupply (#292)
- _isFeeExempt[msg.sender] = true (#295)
- _isFeeExempt[address(this)] = true (#296)
- _isMaxWalletExempt[pair] = true (#298)
- _isMaxWalletExempt[DEAD] = true (#299)
- _isMaxWalletExempt[address(this)] = true (#300)
- _isMaxWalletExempt[msg.sender] = true (#301)
- _totalSupply = INITIAL_FRAGMENTS_SUPPLY (#290)
- devFeeReceiver = address(msg.sender) (#304)
- initialDistributionFinished = false (#294)
- marketingFeeReceiver = address(0x8CF4A9bE70c08C690488518b36917B58b848c5E9) (#303)
- pairContract = InterfaceLP(pair) (#288)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in EverBased._transferFrom(address,address,uint256) (#363-410):
External calls:
- swapBack() (#389)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(contractTokenBalance,0,path,address(this),block.timestamp) (#448-454)
- rb.rebase() (#401)
External calls sending eth:
- swapBack() (#389)
- marketingFeeReceiver.transfer(amountETHMarketing) (#461)
- devFeeReceiver.transfer(amountETHDev) (#462)
Event emitted after the call(s):
- Transfer(sender,recipient,gonAmountReceived / _gonsPerFragment) (#404-408)
Reentrancy in EverBased._transferFrom(address,address,uint256) (#363-410):
External calls:
- swapBack() (#389)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(contractTokenBalance,0,path,address(this),block.timestamp) (#448-454)
External calls sending eth:
- swapBack() (#389)
- marketingFeeReceiver.transfer(amountETHMarketing) (#461)
- devFeeReceiver.transfer(amountETHDev) (#462)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount / _gonsPerFragment) (#434)
- gonAmountReceived = takeFee(sender,gonAmount) (#394-396)
Reentrancy in EverBased.constructor() (#278-307):
External calls:
- pair = IDEXFactory(router.factory()).createPair(router.WETH(),address(this)) (#281-284)
Event emitted after the call(s):
- Transfer(address(0x0),msg.sender,_totalSupply) (#306)
Reentrancy in EverBased.rebase(uint256,int256) (#250-276):
External calls:
- pairContract.sync() (#272)
Event emitted after the call(s):
- LogRebase(epoch,_totalSupply) (#274)
Apply the check-effects-interactions pattern.

Additional information: link

EverBased._transferFrom(address,address,uint256) (#363-410) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(lastTransaction[recipient] + rateLimit <= block.timestamp,Purchase rate limit exceeded.) (#384)
Avoid relying on block.timestamp.

Additional information: link

EverBased.totalFee (#215) is set pre-construction with a non-constant function or state variable:
- devFee + marketingFee + buyBackFee
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

Function IDEXRouter.WETH() (#149) is not in mixedCase
Parameter EverBased.setMaster(address)._master (#309) is not in mixedCase
Parameter EverBased.setAutoRebase(bool)._auto (#313) is not in mixedCase
Parameter EverBased.setLP(address)._address (#317) is not in mixedCase
Parameter EverBased.enableTransfer(address)._addr (#512) is not in mixedCase
Parameter EverBased.setFeeExempt(address)._addr (#516) is not in mixedCase
Parameter EverBased.checkFeeExempt(address)._addr (#520) is not in mixedCase
Parameter EverBased.setMaxWalletExempt(address)._addr (#524) is not in mixedCase
Parameter EverBased.checkMaxWalletExempt(address)._addr (#528) is not in mixedCase
Parameter EverBased.setMaxWalletToken(uint256,uint256)._num (#532) is not in mixedCase
Parameter EverBased.setMaxWalletToken(uint256,uint256)._denom (#532) is not in mixedCase
Parameter EverBased.setMaxTx(uint256,uint256)._num (#539) is not in mixedCase
Parameter EverBased.setMaxTx(uint256,uint256)._denom (#539) is not in mixedCase
Parameter EverBased.setRateLimit(uint256)._rate (#546) is not in mixedCase
Parameter EverBased.setSwapBackSettings(bool,uint256,uint256)._enabled (#574) is not in mixedCase
Parameter EverBased.setSwapBackSettings(bool,uint256,uint256)._num (#575) is not in mixedCase
Parameter EverBased.setSwapBackSettings(bool,uint256,uint256)._denom (#576) is not in mixedCase
Parameter EverBased.setFees(uint256,uint256,uint256,uint256)._devFee (#595) is not in mixedCase
Parameter EverBased.setFees(uint256,uint256,uint256,uint256)._buyBackFee (#596) is not in mixedCase
Parameter EverBased.setFees(uint256,uint256,uint256,uint256)._marketingFee (#597) is not in mixedCase
Parameter EverBased.setFees(uint256,uint256,uint256,uint256)._feeDenominator (#598) is not in mixedCase
Parameter EverBased.setFeeReceivers(address,address)._devFeeReceiver (#609) is not in mixedCase
Parameter EverBased.setFeeReceivers(address,address)._marketingFeeReceiver (#610) is not in mixedCase
Variable EverBased._isFeeExempt (#186) is not in mixedCase
Variable EverBased._isMaxWalletExempt (#187) is not in mixedCase
Variable EverBased.DEAD (#218) is not in mixedCase
Variable EverBased.ZERO (#219) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in EverBased._transferFrom(address,address,uint256) (#363-410):
External calls:
- swapBack() (#389)
- marketingFeeReceiver.transfer(amountETHMarketing) (#461)
- devFeeReceiver.transfer(amountETHDev) (#462)
State variables written after the call(s):
- _gonBalances[sender] -= gonAmount (#392)
- _gonBalances[recipient] += gonAmountReceived (#397)
- gonAmountReceived = takeFee(sender,gonAmount) (#394-396)
- _gonBalances[address(this)] += feeAmount (#433)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount / _gonsPerFragment) (#434)
- gonAmountReceived = takeFee(sender,gonAmount) (#394-396)
- Transfer(sender,recipient,gonAmountReceived / _gonsPerFragment) (#404-408)
Apply the check-effects-interactions pattern.

Additional information: link

EverBased.slitherConstructorVariables() (#171-660) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#218)
EverBased.slitherConstructorVariables() (#171-660) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#219)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

EverBased.DEAD (#218) should be constant
EverBased.ZERO (#219) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

name() should be declared external:
- ERC20Detailed.name() (#84-86)
symbol() should be declared external:
- ERC20Detailed.symbol() (#88-90)
decimals() should be declared external:
- ERC20Detailed.decimals() (#92-94)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#124-127)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#129-131)
rescueToken(address,uint256) should be declared external:
- EverBased.rescueToken(address,uint256) (#616-622)
getCirculatingSupply() should be declared external:
- EverBased.getCirculatingSupply() (#644-647)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


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


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


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.


Token is deployed only at one blockchain

Contract has 6% buy tax and 5% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Token has only one trading pair


Telegram account link seems to be invalid


Twitter account seems to be suspended

Additional information: link


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


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


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

Additional information: link


Token has a considerable age, but we're still unable to find its website


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Token has a considerable age, but social accounts / website are missing or have few users


Token has a considerable age, but average PancakeSwap 30d trading volume is low


Young tokens have high risks of price dump / death

Price for BASED