Shibosu Token Logo

Shibosu Token

About Shibosu

Listings

Token 2 years
white paper

Shibosu gifting shiba

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


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

Shibosu.swapBack(uint256) (#856-882) sends eth to arbitrary user
Dangerous calls:
- reflector.load{value: amountBNBReflection}() (#873)
- _marketingWallet.transfer(amountBNBMarketing) (#876)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in Shibosu.transferOwner(address) (#472-491):
External calls:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#485)
- reflector.tally(from,_tOwned[from]) (#823)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(numTokensToSwap,0,path,address(this),block.timestamp) (#861-867)
- reflector.initialize() (#896)
- reflector.tally(to,_tOwned[to]) (#826)
- reflector.load{value: amountBNBReflection}() (#873)
- reflector.cashout(reflectorGas) (#829)
External calls sending eth:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#485)
- reflector.load{value: amountBNBReflection}() (#873)
- _marketingWallet.transfer(amountBNBMarketing) (#876)
- _buybackWallet.transfer(address(this).balance) (#880)
State variables written after the call(s):
- _owner = newOwner (#488)
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.

Shibosu.setMaxWalletSize(uint256,uint256) (#681-686) should emit an event for:
- _maxWalletSize = check (#684)
Emit an event for critical parameter changes.

Additional information: link

Shibosu.setWallets(address).marketingWallet (#613) lacks a zero-check on :
- _marketingWallet = address(marketingWallet) (#614)
Check that the address is not zero.

Additional information: link

Reentrancy in Shibosu.setNewRouter(address) (#657-667):
External calls:
- lpPair = IUniswapV2Factory(_newRouter.factory()).createPair(address(this),_newRouter.WETH()) (#661)
State variables written after the call(s):
- dexRouter = _newRouter (#666)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Shibosu.transferOwner(address) (#472-491):
External calls:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#485)
- reflector.tally(from,_tOwned[from]) (#823)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(numTokensToSwap,0,path,address(this),block.timestamp) (#861-867)
- reflector.initialize() (#896)
- reflector.tally(to,_tOwned[to]) (#826)
- reflector.load{value: amountBNBReflection}() (#873)
- reflector.cashout(reflectorGas) (#829)
External calls sending eth:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#485)
- reflector.load{value: amountBNBReflection}() (#873)
- _marketingWallet.transfer(amountBNBMarketing) (#876)
- _buybackWallet.transfer(address(this).balance) (#880)
Event emitted after the call(s):
- OwnershipTransferred(_owner,newOwner) (#489)
Apply the check-effects-interactions pattern.

Additional information: link

Shibosu.setLpPair(address,bool) (#669-679) uses timestamp for comparisons
Dangerous comparisons:
- timeSinceLastPair != 0 (#673)
- require(bool,string)(block.timestamp - timeSinceLastPair > 604800,Cannot set a new pair this week!) (#674)
Avoid relying on block.timestamp.

Additional information: link

Shibosu.setLpPair(address,bool) (#669-679) compares to a boolean constant:
-enabled == false (#670)
Remove the equality to the boolean constant.

Additional information: link

Shibosu._approve(address,address,uint256) (#523-529) is never used and should be removed
Remove unused functions.

Additional information: link

Shibosu.swapAmount (#373) 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 Shibosu._hasLiqBeenAdded (#380) 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 Shibosu.transferOwner(address) (#472-491):
External calls:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#485)
- _marketingWallet.transfer(amountBNBMarketing) (#876)
- _buybackWallet.transfer(address(this).balance) (#880)
External calls sending eth:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#485)
- reflector.load{value: amountBNBReflection}() (#873)
- _marketingWallet.transfer(amountBNBMarketing) (#876)
- _buybackWallet.transfer(address(this).balance) (#880)
State variables written after the call(s):
- _owner = newOwner (#488)
Event emitted after the call(s):
- OwnershipTransferred(_owner,newOwner) (#489)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#168) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#169)
Prevent variables from having similar names.

Additional information: link

Shibosu.slitherConstructorVariables() (#310-905) uses literals with too many digits:
- reflectorGas = 300000 (#368)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Shibosu.maxWalletPercent (#362) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

enableTrading() should be declared external:
- Shibosu.enableTrading() (#717-725)
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


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


Unable to find token contract audit


Unable to find audit 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 Shibosu