Shibonics Token Logo

SNis [Shibonics] Token

About SNis

Listings

Token 3 years

Shibonics is a $SHIB reflection token. We believe $SHIB will change the whole crypto space. That’s why we created Shibonics, the little brother of $SHIB, to help $SHIB conquer the Cryptomarket. Every buy in Shibonics will lead to a 1% burn and a 4% reward in $SHIB which goes to the Shibonics holders automatically.

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

Shibonics.addLiquidity(uint256,uint256) (Shibonics.sol#492-507) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (Shibonics.sol#498-505)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in Shibonics._transfer(address,address,uint256) (Shibonics.sol#316-417):
External calls:
- swapAndSendToFee(marketingTokens) (Shibonics.sol#350)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (Shibonics.sol#463-469)
- swapAndLiquify(swapTokens) (Shibonics.sol#353)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (Shibonics.sol#498-505)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (Shibonics.sol#463-469)
- swapAndSendDividends(sellTokens) (Shibonics.sol#356)
- success = IERC20(ShibaInu).transfer(address(dividendTracker),holdersShare) (Shibonics.sol#514)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (Shibonics.sol#483-489)
- dividendTracker.distributeShibaInuDividends(holdersShare) (Shibonics.sol#517)
- IERC20(ShibaInu).transfer(deadWallet,ShibTokenBalance.div(shibBurnDivisor)) (Shibonics.sol#360)
External calls sending eth:
- swapAndSendToFee(marketingTokens) (Shibonics.sol#350)
- address(_marketingWalletAddress).transfer(newBalance) (Shibonics.sol#425)
- swapAndLiquify(swapTokens) (Shibonics.sol#353)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (Shibonics.sol#498-505)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (Shibonics.sol#384)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
- super._transfer(from,deadWallet,burnShare) (Shibonics.sol#387)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
- super._transfer(from,address(this),fees) (Shibonics.sol#393)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
- super._transfer(from,deadWallet,burnShare) (Shibonics.sol#396)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
- super._transfer(from,to,amount) (Shibonics.sol#402)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
- swapping = false (Shibonics.sol#365)
Apply the check-effects-interactions pattern.

Additional information: link

Shibonics._transfer(address,address,uint256) (Shibonics.sol#316-417) ignores return value by IERC20(ShibaInu).transfer(deadWallet,ShibTokenBalance.div(shibBurnDivisor)) (Shibonics.sol#360)
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.

Reentrancy in Shibonics.updateDividendTracker(address) (Shibonics.sol#134-149):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (Shibonics.sol#141)
- newDividendTracker.excludeFromDividends(address(this)) (Shibonics.sol#142)
- newDividendTracker.excludeFromDividends(owner()) (Shibonics.sol#143)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (Shibonics.sol#144)
State variables written after the call(s):
- dividendTracker = newDividendTracker (Shibonics.sol#148)
Apply the check-effects-interactions pattern.

Additional information: link

Shibonics._transfer(address,address,uint256).lastProcessedIndex (Shibonics.sol#410) 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

Shibonics.addLiquidity(uint256,uint256) (Shibonics.sol#492-507) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (Shibonics.sol#498-505)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.accumulativeDividendOf(address)._owner (DividendPayingToken.sol#122) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
Rename the local variables that shadow another component.

Additional information: link

Shibonics.ShibBurnDivisor(uint256) (Shibonics.sol#215-217) should emit an event for:
- shibBurnDivisor = divisor (Shibonics.sol#216)
Emit an event for critical parameter changes.

Additional information: link

Shibonics.setMarketingWallet(address).wallet (Shibonics.sol#183) lacks a zero-check on :
- _marketingWalletAddress = wallet (Shibonics.sol#184)
Check that the address is not zero.

Additional information: link

Variable 'Shibonics._transfer(address,address,uint256).claims (Shibonics.sol#410)' in Shibonics._transfer(address,address,uint256) (Shibonics.sol#316-417) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (Shibonics.sol#411)
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 Shibonics.updateUniswapV2Router(address) (Shibonics.sol#151-158):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (Shibonics.sol#155-156)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (Shibonics.sol#157)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Shibonics.updateDividendTracker(address) (Shibonics.sol#134-149):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (Shibonics.sol#141)
- newDividendTracker.excludeFromDividends(address(this)) (Shibonics.sol#142)
- newDividendTracker.excludeFromDividends(owner()) (Shibonics.sol#143)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (Shibonics.sol#144)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (Shibonics.sol#146)
Apply the check-effects-interactions pattern.

Additional information: link

ShibonicsDividendTracker.canAutoClaim(uint256) (Shibonics.sol#647-653) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (Shibonics.sol#648)
- block.timestamp.sub(lastClaimTime) >= claimWait (Shibonics.sol#652)
Avoid relying on block.timestamp.

Additional information: link

SafeMathInt.mul(int256,int256) (SafeMathInt.sol#41-48) is never used and should be removed
Remove unused functions.

Additional information: link

Shibonics.totalBuyFees (Shibonics.sol#47) is set pre-construction with a non-constant function or state variable:
- ShibaInuRewardsBuyFee.add(LiquidityBuyFee).add(MarketingBuyFee).add(ShibBurnBuyFee).add(AutoBurnBuyFee)
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

Pragma version^0.6.2 (Shibonics.sol#3) allows old versions
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

Parameter ShibonicsDividendTracker.getAccount(address)._account (Shibonics.sol#583) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (Context.sol#21)" inContext (Context.sol#15-24)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in Shibonics._transfer(address,address,uint256) (Shibonics.sol#316-417):
External calls:
- swapAndSendToFee(marketingTokens) (Shibonics.sol#350)
- address(_marketingWalletAddress).transfer(newBalance) (Shibonics.sol#425)
External calls sending eth:
- swapAndSendToFee(marketingTokens) (Shibonics.sol#350)
- address(_marketingWalletAddress).transfer(newBalance) (Shibonics.sol#425)
- swapAndLiquify(swapTokens) (Shibonics.sol#353)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (Shibonics.sol#498-505)
State variables written after the call(s):
- swapAndLiquify(swapTokens) (Shibonics.sol#353)
- _allowances[owner][spender] = amount (ERC20.sol#287)
- swapAndSendDividends(sellTokens) (Shibonics.sol#356)
- _allowances[owner][spender] = amount (ERC20.sol#287)
- super._transfer(from,address(this),fees) (Shibonics.sol#384)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
- super._transfer(from,deadWallet,burnShare) (Shibonics.sol#387)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
- super._transfer(from,address(this),fees) (Shibonics.sol#393)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
- super._transfer(from,deadWallet,burnShare) (Shibonics.sol#396)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
- super._transfer(from,to,amount) (Shibonics.sol#402)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
- swapping = false (Shibonics.sol#365)
Event emitted after the call(s):
- Approval(owner,spender,amount) (ERC20.sol#288)
- swapAndLiquify(swapTokens) (Shibonics.sol#353)
- Approval(owner,spender,amount) (ERC20.sol#288)
- swapAndSendDividends(sellTokens) (Shibonics.sol#356)
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (Shibonics.sol#411)
- SendDividends(tokens,holdersShare) (Shibonics.sol#518)
- swapAndSendDividends(sellTokens) (Shibonics.sol#356)
- SwapAndLiquify(half,newBalance,otherHalf) (Shibonics.sol#448)
- swapAndLiquify(swapTokens) (Shibonics.sol#353)
- Transfer(sender,recipient,amount) (ERC20.sol#223)
- super._transfer(from,deadWallet,burnShare) (Shibonics.sol#396)
- Transfer(sender,recipient,amount) (ERC20.sol#223)
- super._transfer(from,to,amount) (Shibonics.sol#402)
- Transfer(sender,recipient,amount) (ERC20.sol#223)
- super._transfer(from,address(this),fees) (Shibonics.sol#384)
- Transfer(sender,recipient,amount) (ERC20.sol#223)
- super._transfer(from,deadWallet,burnShare) (Shibonics.sol#387)
- Transfer(sender,recipient,amount) (ERC20.sol#223)
- super._transfer(from,address(this),fees) (Shibonics.sol#393)
Apply the check-effects-interactions pattern.

Additional information: link

Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (DividendPayingToken.sol#77) is too similar to ShibonicsDividendTracker.getAccount(address).withdrawableDividends (Shibonics.sol#588)
Prevent variables from having similar names.

Additional information: link

ShibonicsDividendTracker.getAccountAtIndex(uint256) (Shibonics.sol#628-645) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (Shibonics.sol#639)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (SafeMathInt.sol#36) is never used in SafeMathInt (SafeMathInt.sol#34-92)
Remove unused state variables.

Additional information: link

Shibonics.deadWallet (Shibonics.sol#25) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

process(uint256) should be declared external:
- ShibonicsDividendTracker.process(uint256) (Shibonics.sol#672-717)
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.


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


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


Token has no active CoinMarketCap listing / rank


Token has relatively low CoinGecko rank

Price for SNis