Shinobi Inu Token Logo

SHIN [Shinobi Inu] Token

About SHIN

Listings

Token 2 years

Shinobi Inu ($SHIN) is ShinobiDAO's governance Token, made to unlock access to protocols and join community elections for future expansions. You can earn passive income with Shinobi Inu by simply staking your $SHIN on The Dojo DApp for maximum APY.

Social

Laser Scorebeta Last Audit: 7 January 2022

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

Anti-Scam

Links


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

ShinobiInu.addLiquidity(uint256,uint256) (ShinobiInu.sol#805-816) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (ShinobiInu.sol#807-814)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in ShinobiInu._transfer(address,address,uint256) (ShinobiInu.sol#683-756):
External calls:
- swapAndLiquify(numTokensSellToAddToLiquidity) (ShinobiInu.sol#714)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (ShinobiInu.sol#807-814)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (ShinobiInu.sol#782-788)
- swapForFee() (ShinobiInu.sol#716)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,to,block.timestamp) (ShinobiInu.sol#796-802)
External calls sending eth:
- swapAndLiquify(numTokensSellToAddToLiquidity) (ShinobiInu.sol#714)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (ShinobiInu.sol#807-814)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (ShinobiInu.sol#755)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (ShinobiInu.sol#618)
- _rOwned[_devWalletAddress] = _rOwned[_devWalletAddress].add(rdev) (ShinobiInu.sol#635)
- _rOwned[address(this)] = _rOwned[address(this)].add(rMarket) (ShinobiInu.sol#627)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (ShinobiInu.sol#846)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (ShinobiInu.sol#835)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (ShinobiInu.sol#836)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (ShinobiInu.sol#859)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (ShinobiInu.sol#435)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (ShinobiInu.sol#860)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (ShinobiInu.sol#848)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (ShinobiInu.sol#437)
- _tokenTransfer(from,to,amount,takeFee) (ShinobiInu.sol#755)
- _rTotal = _rTotal.sub(rFee) (ShinobiInu.sol#569)
- _tokenTransfer(from,to,amount,takeFee) (ShinobiInu.sol#755)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (ShinobiInu.sol#620)
- _tOwned[_devWalletAddress] = _tOwned[_devWalletAddress].add(tdev) (ShinobiInu.sol#637)
- _tOwned[address(this)] = _tOwned[address(this)].add(tMarket) (ShinobiInu.sol#629)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (ShinobiInu.sol#434)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (ShinobiInu.sol#858)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (ShinobiInu.sol#847)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (ShinobiInu.sol#436)
- _tokenTransfer(from,to,amount,takeFee) (ShinobiInu.sol#755)
- marketFeesCollected += tMarket (ShinobiInu.sol#626)
Apply the check-effects-interactions pattern.

Additional information: link

ShinobiInu.withdrawalToken(address,uint256,address) (ShinobiInu.sol#883-887) ignores return value by token.transfer(to,_amount) (ShinobiInu.sol#885)
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.

ShinobiInu.addLiquidity(uint256,uint256) (ShinobiInu.sol#805-816) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (ShinobiInu.sol#807-814)
Ensure that all the return values of the function calls are used.

Additional information: link

ShinobiInu.allowance(address,address).owner (ShinobiInu.sol#360) shadows:
- Ownable.owner() (Ownable.sol#34-36) (function)
ShinobiInu._approve(address,address,uint256).owner (ShinobiInu.sol#675) shadows:
- Ownable.owner() (Ownable.sol#34-36) (function)
Rename the local variables that shadow another component.

Additional information: link

ShinobiInu.setBuyTaxFeePercent(uint256) (ShinobiInu.sol#453-456) should emit an event for:
- _buyTaxFee = taxFee (ShinobiInu.sol#454)
ShinobiInu.setBuyDevFeePercent(uint256) (ShinobiInu.sol#458-461) should emit an event for:
- _buyDevFee = devFee (ShinobiInu.sol#459)
ShinobiInu.setBuyLiquidityFeePercent(uint256) (ShinobiInu.sol#463-466) should emit an event for:
- _buyLiquidityFee = liquidityFee (ShinobiInu.sol#464)
ShinobiInu.setBuyMarketFeePercent(uint256) (ShinobiInu.sol#468-471) should emit an event for:
- _buyMarketFee = marketFee (ShinobiInu.sol#469)
ShinobiInu.setSellTaxFeePercent(uint256) (ShinobiInu.sol#473-476) should emit an event for:
- _sellTaxFee = taxFee (ShinobiInu.sol#474)
ShinobiInu.setSellDevFeePercent(uint256) (ShinobiInu.sol#478-481) should emit an event for:
- _sellDevFee = devFee (ShinobiInu.sol#479)
ShinobiInu.setSellLiquidityFeePercent(uint256) (ShinobiInu.sol#483-486) should emit an event for:
- _sellLiquidityFee = liquidityFee (ShinobiInu.sol#484)
ShinobiInu.setSellMarketFeePercent(uint256) (ShinobiInu.sol#488-491) should emit an event for:
- _sellMarketFee = marketFee (ShinobiInu.sol#489)
ShinobiInu.setMaxTxPercent(uint256) (ShinobiInu.sol#493-497) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (ShinobiInu.sol#494-496)
ShinobiInu.setMarketFeesCollected(uint256) (ShinobiInu.sol#879-881) should emit an event for:
- marketFeesCollected = _marketFeesCollected (ShinobiInu.sol#880)
Emit an event for critical parameter changes.

Additional information: link

ShinobiInu.constructor(address,address,address).devWallet (ShinobiInu.sol#315) lacks a zero-check on :
- _devWalletAddress = devWallet (ShinobiInu.sol#321)
ShinobiInu.constructor(address,address,address).liqWallet (ShinobiInu.sol#315) lacks a zero-check on :
- _liqWalletAddress = liqWallet (ShinobiInu.sol#322)
ShinobiInu.constructor(address,address,address).marketWallet (ShinobiInu.sol#315) lacks a zero-check on :
- _marketWalletAddress = marketWallet (ShinobiInu.sol#323)
ShinobiInu.withdrawalBNB(uint256,address).to (ShinobiInu.sol#889) lacks a zero-check on :
- address(to).transfer(_amount) (ShinobiInu.sol#891)
Check that the address is not zero.

Additional information: link

Reentrancy in ShinobiInu._setRouter(address) (ShinobiInu.sol#554-562):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (ShinobiInu.sol#558)
State variables written after the call(s):
- setIsPair(uniswapV2Pair,true) (ShinobiInu.sol#560)
- _isPair[_address] = value (ShinobiInu.sol#869)
- uniswapV2Router = _uniswapV2Router (ShinobiInu.sol#559)
Reentrancy in ShinobiInu._transfer(address,address,uint256) (ShinobiInu.sol#683-756):
External calls:
- swapAndLiquify(numTokensSellToAddToLiquidity) (ShinobiInu.sol#714)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (ShinobiInu.sol#807-814)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (ShinobiInu.sol#782-788)
- swapForFee() (ShinobiInu.sol#716)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,to,block.timestamp) (ShinobiInu.sol#796-802)
External calls sending eth:
- swapAndLiquify(numTokensSellToAddToLiquidity) (ShinobiInu.sol#714)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (ShinobiInu.sol#807-814)
State variables written after the call(s):
- _devFee = _buyDevFee (ShinobiInu.sol#741)
- _devFee = _sellDevFee (ShinobiInu.sol#749)
- _tokenTransfer(from,to,amount,takeFee) (ShinobiInu.sol#755)
- _devFee = 0 (ShinobiInu.sol#666)
- _liquidityFee = _buyLiquidityFee (ShinobiInu.sol#742)
- _liquidityFee = _sellLiquidityFee (ShinobiInu.sol#750)
- _tokenTransfer(from,to,amount,takeFee) (ShinobiInu.sol#755)
- _liquidityFee = 0 (ShinobiInu.sol#667)
- _marketFee = _buyMarketFee (ShinobiInu.sol#743)
- _marketFee = _sellMarketFee (ShinobiInu.sol#751)
- _tokenTransfer(from,to,amount,takeFee) (ShinobiInu.sol#755)
- _marketFee = 0 (ShinobiInu.sol#668)
- _tokenTransfer(from,to,amount,takeFee) (ShinobiInu.sol#755)
- _tFeeTotal = _tFeeTotal.add(tFee) (ShinobiInu.sol#570)
- _taxFee = _buyTaxFee (ShinobiInu.sol#740)
- _taxFee = _sellTaxFee (ShinobiInu.sol#748)
- _tokenTransfer(from,to,amount,takeFee) (ShinobiInu.sol#755)
- _taxFee = 0 (ShinobiInu.sol#665)
Reentrancy in ShinobiInu.constructor(address,address,address) (ShinobiInu.sol#315-332):
External calls:
- _setRouter(0x10ED43C718714eb63d5aA57B78B54704E256024E) (ShinobiInu.sol#318)
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (ShinobiInu.sol#558)
State variables written after the call(s):
- _devWalletAddress = devWallet (ShinobiInu.sol#321)
- _isExcludedFromFee[owner()] = true (ShinobiInu.sol#326)
- _isExcludedFromFee[devWallet] = true (ShinobiInu.sol#327)
- _isExcludedFromFee[liqWallet] = true (ShinobiInu.sol#328)
- _isExcludedFromFee[address(this)] = true (ShinobiInu.sol#329)
- _liqWalletAddress = liqWallet (ShinobiInu.sol#322)
- _marketWalletAddress = marketWallet (ShinobiInu.sol#323)
- _rOwned[owner()] = _rTotal (ShinobiInu.sol#320)
Reentrancy in ShinobiInu.swapAndLiquify(uint256) (ShinobiInu.sol#758-766):
External calls:
- swapTokensForEth(half) (ShinobiInu.sol#762)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (ShinobiInu.sol#782-788)
- addLiquidity(otherHalf,newBalance) (ShinobiInu.sol#764)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (ShinobiInu.sol#807-814)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (ShinobiInu.sol#764)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (ShinobiInu.sol#807-814)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (ShinobiInu.sol#764)
- _allowances[owner][spender] = amount (ShinobiInu.sol#679)
Reentrancy in ShinobiInu.swapForFee() (ShinobiInu.sol#768-775):
External calls:
- swapTokensForTokens(numTokensForMarketSell,_marketWalletAddress) (ShinobiInu.sol#772)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,to,block.timestamp) (ShinobiInu.sol#796-802)
State variables written after the call(s):
- marketFeesCollected = marketFeesCollected.sub(numTokensForMarketSell) (ShinobiInu.sol#774)
Reentrancy in ShinobiInu.transferFrom(address,address,uint256) (ShinobiInu.sol#369-373):
External calls:
- _transfer(sender,recipient,amount) (ShinobiInu.sol#370)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (ShinobiInu.sol#807-814)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,to,block.timestamp) (ShinobiInu.sol#796-802)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (ShinobiInu.sol#782-788)
External calls sending eth:
- _transfer(sender,recipient,amount) (ShinobiInu.sol#370)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (ShinobiInu.sol#807-814)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (ShinobiInu.sol#371)
- _allowances[owner][spender] = amount (ShinobiInu.sol#679)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ShinobiInu._setRouter(address) (ShinobiInu.sol#554-562):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (ShinobiInu.sol#558)
Event emitted after the call(s):
- RouterSet(_router) (ShinobiInu.sol#561)
- SetIsPair(_address,value) (ShinobiInu.sol#870)
- setIsPair(uniswapV2Pair,true) (ShinobiInu.sol#560)
Reentrancy in ShinobiInu._transfer(address,address,uint256) (ShinobiInu.sol#683-756):
External calls:
- swapAndLiquify(numTokensSellToAddToLiquidity) (ShinobiInu.sol#714)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (ShinobiInu.sol#807-814)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (ShinobiInu.sol#782-788)
- swapForFee() (ShinobiInu.sol#716)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,to,block.timestamp) (ShinobiInu.sol#796-802)
External calls sending eth:
- swapAndLiquify(numTokensSellToAddToLiquidity) (ShinobiInu.sol#714)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (ShinobiInu.sol#807-814)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (ShinobiInu.sol#841)
- _tokenTransfer(from,to,amount,takeFee) (ShinobiInu.sol#755)
- Transfer(sender,recipient,tTransferAmount) (ShinobiInu.sol#853)
- _tokenTransfer(from,to,amount,takeFee) (ShinobiInu.sol#755)
- Transfer(sender,recipient,tTransferAmount) (ShinobiInu.sol#865)
- _tokenTransfer(from,to,amount,takeFee) (ShinobiInu.sol#755)
- Transfer(sender,recipient,tTransferAmount) (ShinobiInu.sol#442)
- _tokenTransfer(from,to,amount,takeFee) (ShinobiInu.sol#755)
Reentrancy in ShinobiInu.addLiquidity(uint256,uint256) (ShinobiInu.sol#805-816):
External calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (ShinobiInu.sol#807-814)
Event emitted after the call(s):
- Transfer(address(this),uniswapV2Pair,tokenAmount) (ShinobiInu.sol#815)
Reentrancy in ShinobiInu.constructor(address,address,address) (ShinobiInu.sol#315-332):
External calls:
- _setRouter(0x10ED43C718714eb63d5aA57B78B54704E256024E) (ShinobiInu.sol#318)
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (ShinobiInu.sol#558)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (ShinobiInu.sol#331)
Reentrancy in ShinobiInu.swapAndLiquify(uint256) (ShinobiInu.sol#758-766):
External calls:
- swapTokensForEth(half) (ShinobiInu.sol#762)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (ShinobiInu.sol#782-788)
- addLiquidity(otherHalf,newBalance) (ShinobiInu.sol#764)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (ShinobiInu.sol#807-814)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (ShinobiInu.sol#764)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (ShinobiInu.sol#807-814)
Event emitted after the call(s):
- Approval(owner,spender,amount) (ShinobiInu.sol#680)
- addLiquidity(otherHalf,newBalance) (ShinobiInu.sol#764)
- SwapAndLiquify(half,newBalance,otherHalf) (ShinobiInu.sol#765)
- Transfer(address(this),uniswapV2Pair,tokenAmount) (ShinobiInu.sol#815)
- addLiquidity(otherHalf,newBalance) (ShinobiInu.sol#764)
Reentrancy in ShinobiInu.swapForFee() (ShinobiInu.sol#768-775):
External calls:
- swapTokensForTokens(numTokensForMarketSell,_marketWalletAddress) (ShinobiInu.sol#772)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,to,block.timestamp) (ShinobiInu.sol#796-802)
Event emitted after the call(s):
- SwapForFee(numTokensForMarketSell) (ShinobiInu.sol#773)
Reentrancy in ShinobiInu.transferFrom(address,address,uint256) (ShinobiInu.sol#369-373):
External calls:
- _transfer(sender,recipient,amount) (ShinobiInu.sol#370)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (ShinobiInu.sol#807-814)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,to,block.timestamp) (ShinobiInu.sol#796-802)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (ShinobiInu.sol#782-788)
External calls sending eth:
- _transfer(sender,recipient,amount) (ShinobiInu.sol#370)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liqWalletAddress,block.timestamp) (ShinobiInu.sol#807-814)
Event emitted after the call(s):
- Approval(owner,spender,amount) (ShinobiInu.sol#680)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (ShinobiInu.sol#371)
Reentrancy in ShinobiInu.withdrawalToken(address,uint256,address) (ShinobiInu.sol#883-887):
External calls:
- token.transfer(to,_amount) (ShinobiInu.sol#885)
Event emitted after the call(s):
- WithdrawalToken(_tokenAddr,_amount,to) (ShinobiInu.sol#886)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (Address.sol#26-36) uses assembly
- INLINE ASM (Address.sol#32-34)
Address.verifyCallResult(bool,bytes,string) (Address.sol#195-215) uses assembly
- INLINE ASM (Address.sol#207-210)
Do not use evm assembly.

Additional information: link

ShinobiInu.includeInReward(address) (ShinobiInu.sol#419-430) has costly operations inside a loop:
- _excluded.pop() (ShinobiInu.sol#426)
Use a local variable to hold the loop computation result.

Additional information: link

Address.functionCall(address,bytes) (Address.sol#79-81) is never used and should be removed
Address.functionCall(address,bytes,string) (Address.sol#89-95) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (Address.sol#108-114) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (Address.sol#122-133) is never used and should be removed
Address.functionDelegateCall(address,bytes) (Address.sol#168-170) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (Address.sol#178-187) is never used and should be removed
Address.functionStaticCall(address,bytes) (Address.sol#141-143) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (Address.sol#151-160) is never used and should be removed
Address.sendValue(address,uint256) (Address.sol#54-59) is never used and should be removed
Address.verifyCallResult(bool,bytes,string) (Address.sol#195-215) is never used and should be removed
Context._msgData() (Context.sol#20-22) is never used and should be removed
SafeMath.div(uint256,uint256,string) (SafeMath.sol#190-199) is never used and should be removed
SafeMath.mod(uint256,uint256) (SafeMath.sol#150-152) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (SafeMath.sol#216-225) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (SafeMath.sol#21-27) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (SafeMath.sol#63-68) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (SafeMath.sol#75-80) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (SafeMath.sol#46-56) is never used and should be removed
SafeMath.trySub(uint256,uint256) (SafeMath.sol#34-39) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in Address.sendValue(address,uint256) (Address.sol#54-59):
- (success) = recipient.call{value: amount}() (Address.sol#57)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (Address.sol#122-133):
- (success,returndata) = target.call{value: value}(data) (Address.sol#131)
Low level call in Address.functionStaticCall(address,bytes,string) (Address.sol#151-160):
- (success,returndata) = target.staticcall(data) (Address.sol#158)
Low level call in Address.functionDelegateCall(address,bytes,string) (Address.sol#178-187):
- (success,returndata) = target.delegatecall(data) (Address.sol#185)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (ShinobiInu.sol#42) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (ShinobiInu.sol#43) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (ShinobiInu.sol#60) is not in mixedCase
Function IUniswapV2Router01.WETH() (ShinobiInu.sol#80) is not in mixedCase
Event ShinobiInunumTokensSellToAddToLiquidityUpdated(uint256) (ShinobiInu.sol#286) is not in CapWords
Event ShinobiInunumTokensForMarketSellUpdated(uint256) (ShinobiInu.sol#287) is not in CapWords
Parameter ShinobiInu.setSwapAndLiquifyEnabled(bool)._enabled (ShinobiInu.sol#499) is not in mixedCase
Parameter ShinobiInu.setSwapEnabled(bool)._enabled (ShinobiInu.sol#504) is not in mixedCase
Parameter ShinobiInu.setDevWalletAddress(address)._address (ShinobiInu.sol#509) is not in mixedCase
Parameter ShinobiInu.setLiqWalletAddress(address)._address (ShinobiInu.sol#515) is not in mixedCase
Parameter ShinobiInu.setMarketingWalletAddress(address)._address (ShinobiInu.sol#521) is not in mixedCase
Parameter ShinobiInu.setNumTokensSellToAddToLiquidity(uint256)._amount (ShinobiInu.sol#527) is not in mixedCase
Parameter ShinobiInu.setNumTokensForMarketSell(uint256)._amount (ShinobiInu.sol#533) is not in mixedCase
Parameter ShinobiInu.setContractFeesEnabled(bool)._bool (ShinobiInu.sol#539) is not in mixedCase
Parameter ShinobiInu.setFeeToken(address)._address (ShinobiInu.sol#550) is not in mixedCase
Parameter ShinobiInu.setRouter(address)._router (ShinobiInu.sol#564) is not in mixedCase
Parameter ShinobiInu.calculateTaxFee(uint256)._amount (ShinobiInu.sol#640) is not in mixedCase
Parameter ShinobiInu.calculateDevFee(uint256)._amount (ShinobiInu.sol#646) is not in mixedCase
Parameter ShinobiInu.calculateLiquidityFee(uint256)._amount (ShinobiInu.sol#652) is not in mixedCase
Parameter ShinobiInu.calculateMarketFee(uint256)._amount (ShinobiInu.sol#658) is not in mixedCase
Parameter ShinobiInu.setIsPair(address,bool)._address (ShinobiInu.sol#868) is not in mixedCase
Parameter ShinobiInu.setIsBanned(address,bool)._address (ShinobiInu.sol#873) is not in mixedCase
Parameter ShinobiInu.setMarketFeesCollected(uint256)._marketFeesCollected (ShinobiInu.sol#879) is not in mixedCase
Parameter ShinobiInu.withdrawalToken(address,uint256,address)._tokenAddr (ShinobiInu.sol#883) is not in mixedCase
Parameter ShinobiInu.withdrawalToken(address,uint256,address)._amount (ShinobiInu.sol#883) is not in mixedCase
Parameter ShinobiInu.withdrawalBNB(uint256,address)._amount (ShinobiInu.sol#889) is not in mixedCase
Variable ShinobiInu._isPair (ShinobiInu.sol#226) is not in mixedCase
Variable ShinobiInu._isBanned (ShinobiInu.sol#229) is not in mixedCase
Constant ShinobiInu._tTotal (ShinobiInu.sol#232) is not in UPPER_CASE_WITH_UNDERSCORES
Constant ShinobiInu._name (ShinobiInu.sol#236) is not in UPPER_CASE_WITH_UNDERSCORES
Constant ShinobiInu._symbol (ShinobiInu.sol#237) is not in UPPER_CASE_WITH_UNDERSCORES
Constant ShinobiInu._decimals (ShinobiInu.sol#238) is not in UPPER_CASE_WITH_UNDERSCORES
Variable ShinobiInu._devWalletAddress (ShinobiInu.sol#244) is not in mixedCase
Variable ShinobiInu._liqWalletAddress (ShinobiInu.sol#245) is not in mixedCase
Variable ShinobiInu._marketWalletAddress (ShinobiInu.sol#246) is not in mixedCase
Variable ShinobiInu._buyTaxFee (ShinobiInu.sol#251) is not in mixedCase
Variable ShinobiInu._buyDevFee (ShinobiInu.sol#252) is not in mixedCase
Variable ShinobiInu._buyLiquidityFee (ShinobiInu.sol#253) is not in mixedCase
Variable ShinobiInu._buyMarketFee (ShinobiInu.sol#254) is not in mixedCase
Variable ShinobiInu._sellTaxFee (ShinobiInu.sol#257) is not in mixedCase
Variable ShinobiInu._sellDevFee (ShinobiInu.sol#258) is not in mixedCase
Variable ShinobiInu._sellLiquidityFee (ShinobiInu.sol#259) is not in mixedCase
Variable ShinobiInu._sellMarketFee (ShinobiInu.sol#260) is not in mixedCase
Variable ShinobiInu._contractFeesEnabled (ShinobiInu.sol#271) is not in mixedCase
Variable ShinobiInu._maxTxAmount (ShinobiInu.sol#280) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in ShinobiInu.withdrawalBNB(uint256,address) (ShinobiInu.sol#889-893):
External calls:
- address(to).transfer(_amount) (ShinobiInu.sol#891)
Event emitted after the call(s):
- WithdrawalBNB(_amount,to) (ShinobiInu.sol#892)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (ShinobiInu.sol#85) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (ShinobiInu.sol#86)
Variable ShinobiInu._getValues(uint256).rTransferAmount (ShinobiInu.sol#575) is too similar to ShinobiInu._getTValues(uint256).tTransferAmount (ShinobiInu.sol#584)
Variable ShinobiInu._transferBothExcluded(address,address,uint256).rTransferAmount (ShinobiInu.sol#433) is too similar to ShinobiInu._transferBothExcluded(address,address,uint256).tTransferAmount (ShinobiInu.sol#433)
Variable ShinobiInu._getValues(uint256).rTransferAmount (ShinobiInu.sol#575) is too similar to ShinobiInu._transferToExcluded(address,address,uint256).tTransferAmount (ShinobiInu.sol#845)
Variable ShinobiInu._transferToExcluded(address,address,uint256).rTransferAmount (ShinobiInu.sol#845) is too similar to ShinobiInu._transferToExcluded(address,address,uint256).tTransferAmount (ShinobiInu.sol#845)
Variable ShinobiInu._getValues(uint256).rTransferAmount (ShinobiInu.sol#575) is too similar to ShinobiInu._transferFromExcluded(address,address,uint256).tTransferAmount (ShinobiInu.sol#857)
Variable ShinobiInu._transferToExcluded(address,address,uint256).rTransferAmount (ShinobiInu.sol#845) is too similar to ShinobiInu._transferFromExcluded(address,address,uint256).tTransferAmount (ShinobiInu.sol#857)
Variable ShinobiInu._transferStandard(address,address,uint256).rTransferAmount (ShinobiInu.sol#834) is too similar to ShinobiInu._transferStandard(address,address,uint256).tTransferAmount (ShinobiInu.sol#834)
Variable ShinobiInu._transferBothExcluded(address,address,uint256).rTransferAmount (ShinobiInu.sol#433) is too similar to ShinobiInu._transferStandard(address,address,uint256).tTransferAmount (ShinobiInu.sol#834)
Variable ShinobiInu._getRValues(uint256,uint256,uint256,uint256,uint256,uint256).rTransferAmount (ShinobiInu.sol#594) is too similar to ShinobiInu._transferFromExcluded(address,address,uint256).tTransferAmount (ShinobiInu.sol#857)
Variable ShinobiInu._transferBothExcluded(address,address,uint256).rTransferAmount (ShinobiInu.sol#433) is too similar to ShinobiInu._getTValues(uint256).tTransferAmount (ShinobiInu.sol#584)
Variable ShinobiInu._transferFromExcluded(address,address,uint256).rTransferAmount (ShinobiInu.sol#857) is too similar to ShinobiInu._transferFromExcluded(address,address,uint256).tTransferAmount (ShinobiInu.sol#857)
Variable ShinobiInu.reflectionFromToken(uint256,bool).rTransferAmount (ShinobiInu.sol#399) is too similar to ShinobiInu._transferFromExcluded(address,address,uint256).tTransferAmount (ShinobiInu.sol#857)
Variable ShinobiInu._transferBothExcluded(address,address,uint256).rTransferAmount (ShinobiInu.sol#433) is too similar to ShinobiInu._transferToExcluded(address,address,uint256).tTransferAmount (ShinobiInu.sol#845)
Variable ShinobiInu._transferStandard(address,address,uint256).rTransferAmount (ShinobiInu.sol#834) is too similar to ShinobiInu._transferToExcluded(address,address,uint256).tTransferAmount (ShinobiInu.sol#845)
Variable ShinobiInu._getValues(uint256).rTransferAmount (ShinobiInu.sol#575) is too similar to ShinobiInu._transferStandard(address,address,uint256).tTransferAmount (ShinobiInu.sol#834)
Variable ShinobiInu._transferToExcluded(address,address,uint256).rTransferAmount (ShinobiInu.sol#845) is too similar to ShinobiInu._transferStandard(address,address,uint256).tTransferAmount (ShinobiInu.sol#834)
Variable ShinobiInu._transferStandard(address,address,uint256).rTransferAmount (ShinobiInu.sol#834) is too similar to ShinobiInu._transferFromExcluded(address,address,uint256).tTransferAmount (ShinobiInu.sol#857)
Variable ShinobiInu._transferBothExcluded(address,address,uint256).rTransferAmount (ShinobiInu.sol#433) is too similar to ShinobiInu._transferFromExcluded(address,address,uint256).tTransferAmount (ShinobiInu.sol#857)
Variable ShinobiInu._transferToExcluded(address,address,uint256).rTransferAmount (ShinobiInu.sol#845) is too similar to ShinobiInu._getTValues(uint256).tTransferAmount (ShinobiInu.sol#584)
Variable ShinobiInu._transferFromExcluded(address,address,uint256).rTransferAmount (ShinobiInu.sol#857) is too similar to ShinobiInu._transferStandard(address,address,uint256).tTransferAmount (ShinobiInu.sol#834)
Variable ShinobiInu._transferToExcluded(address,address,uint256).rTransferAmount (ShinobiInu.sol#845) is too similar to ShinobiInu._transferBothExcluded(address,address,uint256).tTransferAmount (ShinobiInu.sol#433)
Variable ShinobiInu._getValues(uint256).rTransferAmount (ShinobiInu.sol#575) is too similar to ShinobiInu._transferBothExcluded(address,address,uint256).tTransferAmount (ShinobiInu.sol#433)
Variable ShinobiInu.reflectionFromToken(uint256,bool).rTransferAmount (ShinobiInu.sol#399) is too similar to ShinobiInu._transferToExcluded(address,address,uint256).tTransferAmount (ShinobiInu.sol#845)
Variable ShinobiInu._getRValues(uint256,uint256,uint256,uint256,uint256,uint256).rTransferAmount (ShinobiInu.sol#594) is too similar to ShinobiInu._transferStandard(address,address,uint256).tTransferAmount (ShinobiInu.sol#834)
Variable ShinobiInu._transferFromExcluded(address,address,uint256).rTransferAmount (ShinobiInu.sol#857) is too similar to ShinobiInu._getTValues(uint256).tTransferAmount (ShinobiInu.sol#584)
Variable ShinobiInu._transferFromExcluded(address,address,uint256).rTransferAmount (ShinobiInu.sol#857) is too similar to ShinobiInu._transferBothExcluded(address,address,uint256).tTransferAmount (ShinobiInu.sol#433)
Variable ShinobiInu._getRValues(uint256,uint256,uint256,uint256,uint256,uint256).rTransferAmount (ShinobiInu.sol#594) is too similar to ShinobiInu._transferBothExcluded(address,address,uint256).tTransferAmount (ShinobiInu.sol#433)
Variable ShinobiInu._getRValues(uint256,uint256,uint256,uint256,uint256,uint256).rTransferAmount (ShinobiInu.sol#594) is too similar to ShinobiInu._getTValues(uint256).tTransferAmount (ShinobiInu.sol#584)
Variable ShinobiInu.reflectionFromToken(uint256,bool).rTransferAmount (ShinobiInu.sol#399) is too similar to ShinobiInu._transferStandard(address,address,uint256).tTransferAmount (ShinobiInu.sol#834)
Variable ShinobiInu._transferFromExcluded(address,address,uint256).rTransferAmount (ShinobiInu.sol#857) is too similar to ShinobiInu._transferToExcluded(address,address,uint256).tTransferAmount (ShinobiInu.sol#845)
Variable ShinobiInu.reflectionFromToken(uint256,bool).rTransferAmount (ShinobiInu.sol#399) is too similar to ShinobiInu._transferBothExcluded(address,address,uint256).tTransferAmount (ShinobiInu.sol#433)
Variable ShinobiInu.reflectionFromToken(uint256,bool).rTransferAmount (ShinobiInu.sol#399) is too similar to ShinobiInu._getTValues(uint256).tTransferAmount (ShinobiInu.sol#584)
Variable ShinobiInu._transferStandard(address,address,uint256).rTransferAmount (ShinobiInu.sol#834) is too similar to ShinobiInu._transferBothExcluded(address,address,uint256).tTransferAmount (ShinobiInu.sol#433)
Variable ShinobiInu._transferStandard(address,address,uint256).rTransferAmount (ShinobiInu.sol#834) is too similar to ShinobiInu._getTValues(uint256).tTransferAmount (ShinobiInu.sol#584)
Variable ShinobiInu._getRValues(uint256,uint256,uint256,uint256,uint256,uint256).rTransferAmount (ShinobiInu.sol#594) is too similar to ShinobiInu._transferToExcluded(address,address,uint256).tTransferAmount (ShinobiInu.sol#845)
Prevent variables from having similar names.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (Ownable.sol#53-55)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (Ownable.sol#61-64)
excludeFromReward(address) should be declared external:
- ShinobiInu.excludeFromReward(address) (ShinobiInu.sol#410-417)
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.


Number of Binance Smart Chain (BSC) token holders is low.


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.


Telegram account link seems to be invalid


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


Unable to crawl data from the website


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


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


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


Token has relatively low CoinMarketCap rank

Price for SHIN