EVEREST RISING Token Logo

EVEREST [EVEREST RISING] Token

About EVEREST

Listings

Token 2 years

Description

Not Found

Social

Laser Scorebeta Last Audit: 30 November 2021

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

Anti-Scam

Links


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

EVEREST.addLiquidity(uint256,uint256) (#976-990) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#982-989)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in EVEREST._transfer(address,address,uint256) (#818-853):
External calls:
- swapAndLiquify(numTokensSell) (#840)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#982-989)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp.add(300)) (#950-956)
- buyBackTokens(buybackLimit.div(buybackDivisor)) (#846)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#967-972)
External calls sending eth:
- swapAndLiquify(numTokensSell) (#840)
- recipient.transfer(amount) (#936)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#982-989)
- buyBackTokens(buybackLimit.div(buybackDivisor)) (#846)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#967-972)
State variables written after the call(s):
- _tokenTransfer(from,to,value) (#850)
- _gonBalances[sender] = _gonBalances[sender].sub(gonValue) (#876)
- _gonBalances[address(this)] = _gonBalances[address(this)].add(rFee) (#895)
- _gonBalances[recipient] = _gonBalances[recipient].add(gonValue) (#877)
- _gonBalances[sender] = _gonBalances[sender].sub(gonDeduct) (#868)
- _gonBalances[recipient] = _gonBalances[recipient].add(gonValue) (#869)
- buyBackTokens(buybackLimit.div(buybackDivisor)) (#846)
- inSwapAndLiquify = true (#637)
- inSwapAndLiquify = false (#639)
Apply the check-effects-interactions pattern.

Additional information: link

EVEREST.burnAutoLP() (#1097-1103) ignores return value by uniswapV2Pair.transfer(address(deadBurn),balance) (#1102)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

Ownable._lockTime (#269) is never initialized. It is used in:
- Ownable.getUnlockTime() (#320-322)
- Ownable.unlock() (#333-338)
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


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.

EVEREST.addLiquidity(uint256,uint256) (#976-990) ignores return value by uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#982-989)
Ensure that all the return values of the function calls are used.

Additional information: link

EVEREST._approve(address,address,uint256).owner (#1011) shadows:
- Ownable.owner() (#290-292) (function)
Rename the local variables that shadow another component.

Additional information: link

EVEREST.setdeadBurn(address) (#737-742) should emit an event for:
- deadBurn = _deadBurn (#741)
Emit an event for critical parameter changes.

Additional information: link

EVEREST.settransactionTax(uint256) (#1130-1131) should emit an event for:
- transactionTax = _transactionTax (#1131)
Emit an event for critical parameter changes.

Additional information: link

EVEREST.burnBNB(address).burnAddress (#1133) lacks a zero-check on :
- burnAddress.transfer(address(this).balance) (#1134)
Check that the address is not zero.

Additional information: link

Reentrancy in EVEREST.transferFrom(address,address,uint256) (#802-810):
External calls:
- _transfer(sender,recipient,amount) (#807)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#982-989)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#967-972)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp.add(300)) (#950-956)
External calls sending eth:
- _transfer(sender,recipient,amount) (#807)
- recipient.transfer(amount) (#936)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#982-989)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#967-972)
State variables written after the call(s):
- _approve(sender,msg.sender,_allowedFragments[sender][msg.sender].sub(amount)) (#808)
- _allowedFragments[owner][spender] = value (#1015)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in EVEREST.transferFrom(address,address,uint256) (#802-810):
External calls:
- _transfer(sender,recipient,amount) (#807)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#982-989)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#967-972)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp.add(300)) (#950-956)
External calls sending eth:
- _transfer(sender,recipient,amount) (#807)
- recipient.transfer(amount) (#936)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#982-989)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#967-972)
Event emitted after the call(s):
- Approval(owner,spender,value) (#1016)
- _approve(sender,msg.sender,_allowedFragments[sender][msg.sender].sub(amount)) (#808)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#333-338) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#335)
Avoid relying on block.timestamp.

Additional information: link

SafeMathInt.sub(int256,int256) (#469-477) is never used and should be removed
Remove unused functions.

Additional information: link

Parameter EVEREST.settransactionTax(uint256)._transactionTax (#1130) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in EVEREST.transferFrom(address,address,uint256) (#802-810):
External calls:
- _transfer(sender,recipient,amount) (#807)
- recipient.transfer(amount) (#936)
External calls sending eth:
- _transfer(sender,recipient,amount) (#807)
- recipient.transfer(amount) (#936)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#982-989)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#967-972)
State variables written after the call(s):
- _approve(sender,msg.sender,_allowedFragments[sender][msg.sender].sub(amount)) (#808)
- _allowedFragments[owner][spender] = value (#1015)
Event emitted after the call(s):
- Approval(owner,spender,value) (#1016)
- _approve(sender,msg.sender,_allowedFragments[sender][msg.sender].sub(amount)) (#808)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router02.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#133) is too similar to IUniswapV2Router02.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#134)
Prevent variables from having similar names.

Additional information: link

EVEREST.slitherConstructorVariables() (#560-1138) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#624)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

EVEREST.privateSaleDropCompleted (#634) is never used in EVEREST (#560-1138)
Remove unused state variables.

Additional information: link

Ownable._lockTime (#269) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

settransactionTax(uint256) should be declared external:
- EVEREST.settransactionTax(uint256) (#1130-1131)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute volume.


Unable to find PancakeSwap trading pair to compute number of swaps.


Twitter account link seems to be invalid


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


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinHunt, CoinGecko, CoinMarketCap


Young tokens have high risks of 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

Price for EVEREST