Ethersniper Token Logo

ETS [Ethersniper] Token

About ETS

Listings

Token 3 years
white paper

Ethsniper is the next generation gaming NFT platform.

Ethsniper is the first blockchain powered shooting game with Ethereum reflection.

Hold Ets tokens and get rewarded in Ethereum on every transaction.

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...)

Ethersniper.swapBack() (#689-737) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#720)
- (tmpSuccess,None) = address(BuyBackReceiver).call{gas: 30000,value: amountBNBDev}() (#721)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in Ethersniper._transferFrom(address,address,uint256) (#534-587):
External calls:
- swapBack() (#566)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#702-708)
- distributor.deposit{value: amountBNBReflection}() (#719)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#720)
- (tmpSuccess,None) = address(BuyBackReceiver).call{gas: 30000,value: amountBNBDev}() (#721)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#727-734)
External calls sending eth:
- swapBack() (#566)
- distributor.deposit{value: amountBNBReflection}() (#719)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#720)
- (tmpSuccess,None) = address(BuyBackReceiver).call{gas: 30000,value: amountBNBDev}() (#721)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#727-734)
State variables written after the call(s):
- _rBalance[sender] = _rBalance[sender].sub(rAmount,Insufficient Balance) (#569)
- _rBalance[recipient] = _rBalance[recipient].add(amountReceived) (#572)
- amountReceived = takeFee(sender,rAmount,(recipient == pair)) (#571)
- _rBalance[address(this)] = _rBalance[address(this)].add(feeAmount) (#621)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#332-343) ignores return value by RWRD.transfer(shareholder,amount) (#338)
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.

Ethersniper.swapBack().tmpSuccess (#720) is written in both
(tmpSuccess,None) = address(BuyBackReceiver).call{gas: 30000,value: amountBNBDev}() (#721)
tmpSuccess = false (#724)
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.

Ethersniper.slitherConstructorVariables() (#376-935) performs a multiplication on the result of a division:
-_maxWalletToken = rSupply.div(100).mul(3) (#458)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in DividendDistributor.setShare(address,uint256) (#265-279):
External calls:
- distributeDividend(shareholder) (#267)
- RWRD.transfer(shareholder,amount) (#338)
State variables written after the call(s):
- shares[shareholder].amount = amount (#277)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#278)
Apply the check-effects-interactions pattern.

Additional information: link

Ethersniper.manage_houseguests(address[],bool).i (#678) 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

Ethersniper.swapBack() (#689-737) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#727-734)
Ensure that all the return values of the function calls are used.

Additional information: link

Ethersniper.setMaster(address) (#804-806) should emit an event for:
- master = _master (#805)
Emit an event for critical parameter changes.

Additional information: link

Ethersniper.setMaxTxPercent_base1000(uint256) (#866-868) should emit an event for:
- _maxTxAmount = rSupply.div(1000).mul(maxTXPercentage_base1000) (#867)
Emit an event for critical parameter changes.

Additional information: link

Ethersniper.setMaster(address)._master (#804) lacks a zero-check on :
- master = _master (#805)
Check that the address is not zero.

Additional information: link

Ethersniper.rebase_updatebalance(address[]) (#921-930) has external calls inside a loop: distributor.setShare(addresses[i],balanceOf(addresses[i])) (#927)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in DividendDistributor.setShare(address,uint256) (#265-279):
External calls:
- distributeDividend(shareholder) (#267)
- RWRD.transfer(shareholder,amount) (#338)
State variables written after the call(s):
- addShareholder(shareholder) (#271)
- shareholderIndexes[shareholder] = shareholders.length (#365)
- removeShareholder(shareholder) (#273)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#371)
- addShareholder(shareholder) (#271)
- shareholders.push(shareholder) (#366)
- removeShareholder(shareholder) (#273)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#370)
- shareholders.pop() (#372)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#276)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Ethersniper.swapBack() (#689-737):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#702-708)
- distributor.deposit{value: amountBNBReflection}() (#719)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#720)
- (tmpSuccess,None) = address(BuyBackReceiver).call{gas: 30000,value: amountBNBDev}() (#721)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#727-734)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#719)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#720)
- (tmpSuccess,None) = address(BuyBackReceiver).call{gas: 30000,value: amountBNBDev}() (#721)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#727-734)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify.div(rate)) (#735)
Apply the check-effects-interactions pattern.

Additional information: link

Ethersniper._transferFrom(address,address,uint256) (#534-587) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,buy Cooldown exists) (#550)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#301-325) has costly operations inside a loop:
- currentIndex ++ (#322)
Use a local variable to hold the loop computation result.

Additional information: link

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

Additional information: link

Ethersniper.totalFee (#402) is set pre-construction with a non-constant function or state variable:
- marketingFee + reflectionFee + liquidityFee + BuyBack
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

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 Ethersniper.swapBack() (#689-737):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#720)
- (tmpSuccess,None) = address(BuyBackReceiver).call{gas: 30000,value: amountBNBDev}() (#721)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable Ethersniper._maxWalletToken (#458) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

Ethersniper.slitherConstructorVariables() (#376-935) uses literals with too many digits:
- distributorGas = 500000 (#429)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ethersniper.MAX_SUPPLY (#453) is never used in Ethersniper (#376-935)
Remove unused state variables.

Additional information: link

Ethersniper.ZERO (#382) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

rescueToken(address,uint256) should be declared external:
- Ethersniper.rescueToken(address,uint256) (#834-836)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


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 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 contract audit


Unable to verify token contract address on the website


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find Telegram link on the website


Unable to find Twitter 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 price dump / death


Young tokens have high risks of scam / price dump / death


Young tokens have high risks of scam / price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for ETS