SHIBACK Token Logo

SHIBACK Token

About SHIBACK

Listings

Token 2 years

Website

Description

Social

Laser Scorebeta Last Audit: 30 November 2021

report
Token is either risky or in presale. For presale 30+ is a fine score.

Anti-Scam

Links

Shiback.addLiquidity(uint256,uint256) (#1882-1897) sends eth to arbitrary user
Dangerous calls:
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1888-1895)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in Shiback._transfer(address,address,uint256) (#1709-1790):
External calls:
- swapAndLiquify(swapTokens) (#1745)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1888-1895)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1826-1832)
- swapAndSendDividends(sellTokens) (#1748)
- shiba.approve(address(this),dividends) (#1907)
- shiba.transfer(address(dividendTracker),dividends) (#1908)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1847-1853)
- dividendTracker.distributeShibaDividends(dividends.mul(99).div(100)) (#1911)
- pancakeswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: ethAmount}(0,path2,address(this),block.timestamp) (#1864-1869)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1745)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1888-1895)
- swapAndSendDividends(sellTokens) (#1748)
- pancakeswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: ethAmount}(0,path2,address(this),block.timestamp) (#1864-1869)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1772)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#559)
- _balances[recipient] = _balances[recipient].add(amount) (#560)
- super._transfer(from,to,amount) (#1775)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (#559)
- _balances[recipient] = _balances[recipient].add(amount) (#560)
- swapping = false (#1750)
Apply the check-effects-interactions pattern.

Additional information: link

Shiback.withdraw() (#1915-1930) ignores return value by shiba.transfer(msg.sender,allShiba) (#1928)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


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


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 Shiback.updateDividendTracker(address) (#1557-1572):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1564)
- newDividendTracker.excludeFromDividends(address(this)) (#1565)
- newDividendTracker.excludeFromDividends(owner()) (#1566)
- newDividendTracker.excludeFromDividends(address(pancakeswapV2Router)) (#1567)
State variables written after the call(s):
- dividendTracker = newDividendTracker (#1571)
Apply the check-effects-interactions pattern.

Additional information: link

Shiback._transfer(address,address,uint256).iterations (#1783) 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

Shiback.withdraw() (#1915-1930) ignores return value by shiba.approve(address(this),allShiba) (#1927)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.constructor(string,string,uint8)._decimals (#951) shadows:
- BEP20._decimals (#381) (state variable)
Rename the local variables that shadow another component.

Additional information: link

Shiback.setSwapAt(uint256) (#1637-1639) should emit an event for:
- swapTokensAtAmount = swapAmount (#1638)
Emit an event for critical parameter changes.

Additional information: link

Variable 'Shiback._transfer(address,address,uint256).iterations (#1783)' in Shiback._transfer(address,address,uint256) (#1709-1790) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1784)
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 Shiback.swapTokensForShiba(uint256) (#1836-1870):
External calls:
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1847-1853)
State variables written after the call(s):
- _approve(address(this),address(pancakeswapV2Router),ethAmount) (#1862)
- _allowances[owner][spender] = amount (#625)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Shiback.updateDividendTracker(address) (#1557-1572):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1564)
- newDividendTracker.excludeFromDividends(address(this)) (#1565)
- newDividendTracker.excludeFromDividends(owner()) (#1566)
- newDividendTracker.excludeFromDividends(address(pancakeswapV2Router)) (#1567)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (#1569)
Apply the check-effects-interactions pattern.

Additional information: link

ShibackDividendTracker.canAutoClaim(uint256) (#1332-1338) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1333)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1337)
Avoid relying on block.timestamp.

Additional information: link

Shiback.swapAndSendToMarketing(uint256) (#1872-1880) is never used and should be removed
Remove unused functions.

Additional information: link

Shiback.shiba (#1444) is set pre-construction with a non-constant function or state variable:
- BEP20(SHIBA_ADDRESS)
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

Variable Shiback.BNBRewardsFee (#1453) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#123)" inContext (#117-126)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#984) is too similar to ShibackDividendTracker.getAccount(address).withdrawableDividends (#1273)
Prevent variables from having similar names.

Additional information: link

Shiback.slitherConstructorVariables() (#1434-1932) uses literals with too many digits:
- gasForProcessing = 300000 (#1461)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#276) is never used in SafeMathInt (#274-332)
Remove unused state variables.

Additional information: link

Shiback.SHIBA_ADDRESS (#1442) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

withdraw() should be declared external:
- Shiback.withdraw() (#1915-1930)
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.


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


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 token/project description on the website or on BscScan, CoinHunt, CoinGecko, CoinMarketCap


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 SHIBACK