Shiba Zilla Vikings Token Logo

SHZV [Shiba Zilla Vikings] Token

About SHZV

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 30 November 2021

report
Token seems to be anonymous. As long as we are unable to find website score is limited.


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

ShibaZillaVikings.contractSwap(uint256) (#847-888) sends eth to arbitrary user
Dangerous calls:
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,DEAD,block.timestamp) (#871-878)
- reflector.load{value: amountBNBReflection}() (#882)
- _buybackWallet.transfer((address(this).balance * _ratios.buyback) / (_ratios.buyback + _ratios.marketing)) (#885)
- _marketingWallet.transfer(address(this).balance) (#886)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in ShibaZillaVikings.transferOwner(address) (#472-490):
External calls:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#484)
- reflector.tally(from,_tOwned[from]) (#813)
- reflector.tally(to,_tOwned[to]) (#816)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(numTokensToSwap - amountToLiquify,0,path,address(this),block.timestamp) (#858-864)
- antiSnipe.checkUser(from,to,amount) (#766-770)
- reflector.initialize() (#905)
- reflector.cashout(reflectorGas) (#819)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,DEAD,block.timestamp) (#871-878)
- reflector.load{value: amountBNBReflection}() (#882)
External calls sending eth:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#484)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,DEAD,block.timestamp) (#871-878)
- reflector.load{value: amountBNBReflection}() (#882)
- _buybackWallet.transfer((address(this).balance * _ratios.buyback) / (_ratios.buyback + _ratios.marketing)) (#885)
- _marketingWallet.transfer(address(this).balance) (#886)
State variables written after the call(s):
- _owner = newOwner (#487)
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.


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.

Reentrancy in ShibaZillaVikings.setNewRouter(address) (#668-679):
External calls:
- lpPair = IUniswapV2Factory(_newRouter.factory()).createPair(address(this),_newRouter.WETH()) (#672)
State variables written after the call(s):
- _approve(address(this),address(dexRouter),type()(uint256).max) (#678)
- _allowances[sender][spender] = amount (#522)
- dexRouter = _newRouter (#677)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ShibaZillaVikings.enableTrading() (#582-590):
External calls:
- antiSnipe.setLaunch(lpPair,uint32(block.number),uint64(block.timestamp)) (#588)
State variables written after the call(s):
- tradingEnabled = true (#589)
Apply the check-effects-interactions pattern.

Additional information: link

ShibaZillaVikings._finalizeTransfer(address,address,uint256,bool).check (#766) 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

ShibaZillaVikings.contractSwap(uint256) (#847-888) ignores return value by dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,DEAD,block.timestamp) (#871-878)
Ensure that all the return values of the function calls are used.

Additional information: link

ShibaZillaVikings.setMaxWalletSize(uint256,uint256) (#695-700) should emit an event for:
- _maxWalletSize = check (#698)
Emit an event for critical parameter changes.

Additional information: link

ShibaZillaVikings.setWallets(address,address).buybackWallet (#623) lacks a zero-check on :
- _buybackWallet = address(buybackWallet) (#625)
Check that the address is not zero.

Additional information: link

Variable 'ShibaZillaVikings._finalizeTransfer(address,address,uint256,bool).check (#766)' in ShibaZillaVikings._finalizeTransfer(address,address,uint256,bool) (#756-809) potentially used before declaration: checked = check (#767)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

Reentrancy in ShibaZillaVikings.transferOwner(address) (#472-490):
External calls:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#484)
- reflector.tally(from,_tOwned[from]) (#813)
- reflector.tally(to,_tOwned[to]) (#816)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(numTokensToSwap - amountToLiquify,0,path,address(this),block.timestamp) (#858-864)
- antiSnipe.checkUser(from,to,amount) (#766-770)
- reflector.initialize() (#905)
- reflector.cashout(reflectorGas) (#819)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,DEAD,block.timestamp) (#871-878)
- reflector.load{value: amountBNBReflection}() (#882)
External calls sending eth:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#484)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,DEAD,block.timestamp) (#871-878)
- reflector.load{value: amountBNBReflection}() (#882)
- _buybackWallet.transfer((address(this).balance * _ratios.buyback) / (_ratios.buyback + _ratios.marketing)) (#885)
- _marketingWallet.transfer(address(this).balance) (#886)
Event emitted after the call(s):
- OwnershipTransferred(_owner,newOwner) (#488)
Apply the check-effects-interactions pattern.

Additional information: link

ShibaZillaVikings.setLpPair(address,bool) (#681-693) uses timestamp for comparisons
Dangerous comparisons:
- timeSinceLastPair != 0 (#686)
- require(bool,string)(block.timestamp - timeSinceLastPair > 259200,Cannot set a new pair this week!) (#687)
Avoid relying on block.timestamp.

Additional information: link

ShibaZillaVikings.setLpPair(address,bool) (#681-693) compares to a boolean constant:
-enabled == false (#682)
Remove the equality to the boolean constant.

Additional information: link

Context._msgSender() (#5-7) is never used and should be removed
Remove unused functions.

Additional information: link

ShibaZillaVikings.swapAmount (#414) is set pre-construction with a non-constant function or state variable:
- _tTotal * 5 / 1000
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.8.9 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

Variable ShibaZillaVikings._hasLiqBeenAdded (#419) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#10)" inContext (#4-13)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in ShibaZillaVikings.transferOwner(address) (#472-490):
External calls:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#484)
- _buybackWallet.transfer((address(this).balance * _ratios.buyback) / (_ratios.buyback + _ratios.marketing)) (#885)
- _marketingWallet.transfer(address(this).balance) (#886)
External calls sending eth:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#484)
- dexRouter.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,DEAD,block.timestamp) (#871-878)
- reflector.load{value: amountBNBReflection}() (#882)
- _buybackWallet.transfer((address(this).balance * _ratios.buyback) / (_ratios.buyback + _ratios.marketing)) (#885)
- _marketingWallet.transfer(address(this).balance) (#886)
State variables written after the call(s):
- _owner = newOwner (#487)
Event emitted after the call(s):
- OwnershipTransferred(_owner,newOwner) (#488)
Apply the check-effects-interactions pattern.

Additional information: link

Variable ShibaZillaVikings.setInitializers(address,address).aInitializer (#555) is too similar to ShibaZillaVikings.setInitializers(address,address).cInitializer (#555)
Prevent variables from having similar names.

Additional information: link

ShibaZillaVikings.slitherConstructorVariables() (#322-913) uses literals with too many digits:
- reflectorGas = 300000 (#409)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

ShibaZillaVikings.init (#416) is never used in ShibaZillaVikings (#322-913)
Remove unused state variables.

Additional information: link

ShibaZillaVikings.startingSupply (#337) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

setMaxWalletSize(uint256,uint256) should be declared external:
- ShibaZillaVikings.setMaxWalletSize(uint256,uint256) (#695-700)
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.


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.


Unable to find Telegram and Twitter accounts


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


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for SHZV