ABOUT SHINJI THE ZOMBIE SLAYER
Shinji the Zombie Slayer is a P2E Game-Fi project on Binace Smart Chain. We want to create an action packed P2E NFT zombie game with immersive combat effects, to give players a great gaming experience. By combining Evangelion, Elon and in a full P2E game where players can earn $SHINJIZ.
General description
Shinji the Zombie Slayer is a PC/MAC as well as Google Play and Apple game released on the basis of Binance Smart Chain platform and fully comply with BEP-20 standard.
Our token distribution is adopting the distribution model of Fair Launch and sharing one main goal: to allow all our beloved participants to buy SHINJIZ tokens with the same price in private sale and IDO.
PLAY TO EARN
Choose one of several Evangeleon characters you can use to slay the Zombie horde. The Marketplace will be the place that helps Shinji the Zombie Slayer players buy, sell and trade using $SHINJIZ tokens.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
SHINJIZ.swapBnbForTokens(uint256) (#814-831) sends eth to arbitrary user
Dangerous calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#821-828)
SHINJIZ.swapBack() (#900-936) sends eth to arbitrary user
Dangerous calls:
- distributor.deposit{value: amountBNBReflection}() (#924)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#925)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in SHINJIZ._transferFrom(address,address,uint256) (#725-768):
External calls:
- swapBack() (#740)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(swapThreshold,0,path,address(this),block.timestamp.add(300)) (#907-935)
- distributor.deposit{value: amountBNBReflection}() (#924)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#925)
- buyBackTokens() (#743)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#821-828)
External calls sending eth:
- swapBack() (#740)
- distributor.deposit{value: amountBNBReflection}() (#924)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#925)
- buyBackTokens() (#743)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#821-828)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#747-750)
- amountReceived = takeFee(sender,recipient,amount) (#752)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#793)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#753)
- buyBackTokens() (#743)
- inSwap = true (#679)
- inSwap = false (#681)
Apply the check-effects-interactions pattern.
Additional information: link
SafeToken.withdraw(address,uint256) (#254-256) ignores return value by IBEP20(_token).transfer(owner(),_amount) (#255)
DividendDistributor.distributeDividend(address) (#430-447) ignores return value by ETH.transfer(shareholder,amount) (#438)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
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.
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.
BASEToken._transferFrom(address,address,uint256) (#583-589) is never used and should be removed
Context._msgData() (#65-68) is never used and should be removed
Remove unused functions.
Additional information: link
SHINJIZ.totalFee (#666) is set pre-construction with a non-constant function or state variable:
- burnFee.add(reflectionFee).add(marketingFee)
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
Low level call in SHINJIZ.swapBack() (#900-936):
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#925)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Reentrancy in DividendDistributor.distributeDividend(address) (#430-447):
External calls:
- ETH.transfer(shareholder,amount) (#438)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#440-442)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#443-445)
Reentrancy in DividendDistributor.process(uint256) (#392-418):
External calls:
- distributeDividend(shareholders[currentIndex]) (#410)
- ETH.transfer(shareholder,amount) (#438)
State variables written after the call(s):
- currentIndex ++ (#415)
Reentrancy in DividendDistributor.setShare(address,uint256) (#323-349):
External calls:
- distributeDividend(shareholder) (#329)
- ETH.transfer(shareholder,amount) (#438)
State variables written after the call(s):
- shares[shareholder].amount = amount (#345)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#346-348)
Apply the check-effects-interactions pattern.
Additional information: link
SHINJIZ.swapBack() (#900-936) ignores return value by address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#925)
Ensure that the return value of a low-level call is checked or logged.
Additional information: link
SHINJIZ.swapBack().e (#927) 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
DividendDistributor.constructor(address).owner (#307) shadows:
- Ownable.owner() (#91-93) (function)
Rename the local variables that shadow another component.
Additional information: link
DividendDistributor.setDistributionCriteria(uint256,uint256,uint256) (#313-321) should emit an event for:
- minPeriod = _minPeriod (#318)
- minDistribution = _minDistribution (#319)
SHINJIZ.setDistributorSettings(uint256) (#720-723) should emit an event for:
- distributorGas = gas (#722)
SHINJIZ.setTxLimit(uint256) (#833-835) should emit an event for:
- _maxTxAmount = amount (#834)
SHINJIZ.setFees(uint256,uint256,uint256,uint256) (#858-870) should emit an event for:
- burnFee = _burnFee (#864)
- reflectionFee = _reflectionFee (#865)
- marketingFee = _marketingFee (#866)
- totalFee = _burnFee.add(_reflectionFee).add(_marketingFee) (#867)
- feeDenominator = _feeDenominator (#868)
SHINJIZ.setSwapBackSettings(bool,uint256) (#876-882) should emit an event for:
- swapThreshold = _amount (#881)
SHINJIZ.setBuyBackEnable(uint256,bool) (#938-944) should emit an event for:
- buyBackUpperLimit = _buyBackUpperLimit (#942)
Emit an event for critical parameter changes.
Additional information: link
Ownable.constructor().msgSender (#83) lacks a zero-check on :
- _owner = msgSender (#84)
SHINJIZ.constructor().owner_ (#692) lacks a zero-check on :
- marketing = owner_ (#702)
SHINJIZ.setMarketingWallet(address)._marketing (#872) lacks a zero-check on :
- marketing = _marketing (#873)
Check that the address is not zero.
Additional information: link
DividendDistributor.distributeDividend(address) (#430-447) has external calls inside a loop: ETH.transfer(shareholder,amount) (#438)
Favor pull over push strategy for external calls.
Additional information: link
Variable 'SHINJIZ.swapBack().e (#927)' in SHINJIZ.swapBack() (#900-936) potentially used before declaration: SwapBackFailed(string(abi.encodePacked(SwapBack failed with error ,e))) (#928-930)
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 SHINJIZ.constructor() (#684-709):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#686)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = ~ uint256(0) (#687)
- _balances[owner_] = _totalSupply (#704)
- _maxTxAmount = _totalSupply (#708)
- distributor = new DividendDistributor(msg.sender) (#690)
- excludeDividend[pair] = true (#696)
- excludeDividend[address(this)] = true (#697)
- excludeDividend[DEAD] = true (#700)
- excludeFee[owner_] = true (#694)
- excludeFee[address(this)] = true (#698)
- excludeMaxTxn[owner_] = true (#695)
- excludeMaxTxn[address(this)] = true (#699)
- marketing = owner_ (#702)
- pairs[pair] = true (#688)
- swapThreshold = _totalSupply / 5000 (#707)
Reentrancy in DividendDistributor.deposit() (#373-390):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#380-382)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#387-389)
- totalDividends = totalDividends.add(amount) (#386)
Reentrancy in DividendDistributor.distributeDividend(address) (#430-447):
External calls:
- ETH.transfer(shareholder,amount) (#438)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#439)
Reentrancy in DividendDistributor.setShare(address,uint256) (#323-349):
External calls:
- distributeDividend(shareholder) (#329)
- ETH.transfer(shareholder,amount) (#438)
State variables written after the call(s):
- addShareholder(shareholder) (#336)
- shareholderIndexes[shareholder] = shareholders.length (#484)
- removeShareholder(shareholder) (#341)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#492-494)
- addShareholder(shareholder) (#336)
- shareholders.push(shareholder) (#485)
- removeShareholder(shareholder) (#341)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#489-491)
- shareholders.pop() (#495)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#344)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in SHINJIZ._transferFrom(address,address,uint256) (#725-768):
External calls:
- swapBack() (#740)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(swapThreshold,0,path,address(this),block.timestamp.add(300)) (#907-935)
- distributor.deposit{value: amountBNBReflection}() (#924)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#925)
- buyBackTokens() (#743)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#821-828)
External calls sending eth:
- swapBack() (#740)
- distributor.deposit{value: amountBNBReflection}() (#924)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#925)
- buyBackTokens() (#743)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#821-828)
Event emitted after the call(s):
- SwapBNBForTokens(amount,path) (#830)
- buyBackTokens() (#743)
- Transfer(sender,address(this),feeAmount) (#794)
- amountReceived = takeFee(sender,recipient,amount) (#752)
Reentrancy in SHINJIZ._transferFrom(address,address,uint256) (#725-768):
External calls:
- swapBack() (#740)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(swapThreshold,0,path,address(this),block.timestamp.add(300)) (#907-935)
- distributor.deposit{value: amountBNBReflection}() (#924)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#925)
- buyBackTokens() (#743)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#821-828)
- distributor.setShare(sender,_balances[sender]) (#756)
- distributor.setShare(recipient,_balances[recipient]) (#759-761)
- distributor.process(distributorGas) (#764)
External calls sending eth:
- swapBack() (#740)
- distributor.deposit{value: amountBNBReflection}() (#924)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#925)
- buyBackTokens() (#743)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#821-828)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#766)
Reentrancy in SHINJIZ.constructor() (#684-709):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#686)
Event emitted after the call(s):
- Transfer(address(0),owner_,_totalSupply) (#705)
Reentrancy in SHINJIZ.swapBack() (#900-936):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(swapThreshold,0,path,address(this),block.timestamp.add(300)) (#907-935)
- distributor.deposit{value: amountBNBReflection}() (#924)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#925)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#924)
- address(marketing).call{gas: 30000,value: amountBNBMarketing}() (#925)
Event emitted after the call(s):
- SwapBackSuccess(swapThreshold) (#926)
Reentrancy in SHINJIZ.swapBack() (#900-936):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(swapThreshold,0,path,address(this),block.timestamp.add(300)) (#907-935)
Event emitted after the call(s):
- SwapBackFailed(string(abi.encodePacked(SwapBack failed with error ,e))) (#928-930)
- SwapBackFailed(SwapBack failed without an error message from pancakeSwap) (#932-934)
Reentrancy in SHINJIZ.swapBnbForTokens(uint256) (#814-831):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,DEAD,block.timestamp.add(300)) (#821-828)
Event emitted after the call(s):
- SwapBNBForTokens(amount,path) (#830)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.getAccount(address) (#351-371) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#368-370)
DividendDistributor.shouldDistribute(address) (#420-428) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#425-427)
Avoid relying on block.timestamp.
Additional information: link
DividendDistributor.process(uint256) (#392-418) has costly operations inside a loop:
- currentIndex = 0 (#406)
DividendDistributor.distributeDividend(address) (#430-447) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#437)
DividendDistributor.process(uint256) (#392-418) has costly operations inside a loop:
- currentIndex ++ (#415)
Use a local variable to hold the loop computation result.
Additional information: link
Function IDEXRouter.WETH() (#177) is not in mixedCase
Parameter SafeToken.withdraw(address,uint256)._token (#254) is not in mixedCase
Parameter SafeToken.withdraw(address,uint256)._amount (#254) is not in mixedCase
Parameter SafeToken.withdrawBNB(uint256)._amount (#258) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256,uint256)._minPeriod (#314) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256,uint256)._minDistribution (#315) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256,uint256)._minimumTokenBalanceForDividends (#316) is not in mixedCase
Parameter DividendDistributor.getAccount(address)._account (#351) is not in mixedCase
Variable DividendDistributor._token (#265) is not in mixedCase
Variable DividendDistributor.ETH (#273) is not in mixedCase
Variable DividendDistributor.WBNB (#274) is not in mixedCase
Parameter LockToken.includeToWhiteList(address[])._users (#516) is not in mixedCase
Variable BASEToken.WBNB (#526) is not in mixedCase
Variable BASEToken.DEAD (#527) is not in mixedCase
Variable BASEToken.ZERO (#528) is not in mixedCase
Variable BASEToken._balances (#530) is not in mixedCase
Variable BASEToken._allowances (#531) is not in mixedCase
Variable BASEToken._name (#533) is not in mixedCase
Variable BASEToken._symbol (#534) is not in mixedCase
Variable BASEToken._decimals (#535) is not in mixedCase
Variable BASEToken._totalSupply (#536) is not in mixedCase
Parameter SHINJIZ.changeDex(address)._dex (#711) is not in mixedCase
Parameter SHINJIZ.setDex(address,bool)._dex (#715) is not in mixedCase
Parameter SHINJIZ.setFees(uint256,uint256,uint256,uint256)._burnFee (#859) is not in mixedCase
Parameter SHINJIZ.setFees(uint256,uint256,uint256,uint256)._reflectionFee (#860) is not in mixedCase
Parameter SHINJIZ.setFees(uint256,uint256,uint256,uint256)._marketingFee (#861) is not in mixedCase
Parameter SHINJIZ.setFees(uint256,uint256,uint256,uint256)._feeDenominator (#862) is not in mixedCase
Parameter SHINJIZ.setMarketingWallet(address)._marketing (#872) is not in mixedCase
Parameter SHINJIZ.setSwapBackSettings(bool,uint256)._enabled (#876) is not in mixedCase
Parameter SHINJIZ.setSwapBackSettings(bool,uint256)._amount (#876) is not in mixedCase
Parameter SHINJIZ.setDistributionCriteria(uint256,uint256,uint256)._minPeriod (#885) is not in mixedCase
Parameter SHINJIZ.setDistributionCriteria(uint256,uint256,uint256)._minDistribution (#886) is not in mixedCase
Parameter SHINJIZ.setDistributionCriteria(uint256,uint256,uint256)._minimumTokenBalanceForDividends (#887) is not in mixedCase
Parameter SHINJIZ.setBuyBackEnable(uint256,bool)._buyBackUpperLimit (#938) is not in mixedCase
Variable SHINJIZ._maxTxAmount (#651) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#66)" inContext (#60-69)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#182) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#183)
Variable BASEToken._totalSupply (#536) is too similar to BASEToken.constructor(string,string,uint256,uint8).totalSupply_ (#541)
Prevent variables from having similar names.
Additional information: link
DividendDistributor.slitherConstructorVariables() (#263-497) uses literals with too many digits:
- minimumTokenBalanceForDividends = 20000000 * (10 ** 9) (#291)
SHINJIZ.setDistributorSettings(uint256) (#720-723) uses literals with too many digits:
- require(bool)(gas <= 1000000) (#721)
SHINJIZ.slitherConstructorVariables() (#639-947) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#527)
SHINJIZ.slitherConstructorVariables() (#639-947) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#528)
SHINJIZ.slitherConstructorVariables() (#639-947) uses literals with too many digits:
- distributorGas = 500000 (#661)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
BASEToken.DEAD (#527) should be constant
BASEToken.WBNB (#526) should be constant
BASEToken.ZERO (#528) should be constant
DividendDistributor.WBNB (#274) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#287) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#110-113)
getAccount(address) should be declared external:
- DividendDistributor.getAccount(address) (#351-371)
approve(address,uint256) should be declared external:
- BASEToken.approve(address,uint256) (#552-560)
getCirculatingSupply() should be declared external:
- BASEToken.getCirculatingSupply() (#591-593)
changeDex(address) should be declared external:
- SHINJIZ.changeDex(address) (#711-713)
setDex(address,bool) should be declared external:
- SHINJIZ.setDex(address,bool) (#715-718)
setBuyBackEnable(uint256,bool) should be declared external:
- SHINJIZ.setBuyBackEnable(uint256,bool) (#938-944)
Use the external attribute for functions never called from the contract.
Additional information: link
Contract has 12% buy tax and 12% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.
Swap operations require suspiciously high gas. Contract logic is complex and may disguise some form of scam.
Average 30d PancakeSwap liquidity is low.
Number of Binance Smart Chain (BSC) token holders is low.
Token is deployed only at one blockchain
Token has only one trading pair
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 scam / price dump / death
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Alexa traffic rank is relatively low
Additional information: link
Token has relatively low CoinMarketCap rank
Twitter account has relatively few followers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts