ShibaRocket Token Logo

ShibaRocket Token

About ShibaRocket

Listings

Token 2 years

ShibaRocket - Travel with Shiba and its friends in their spectacular journey

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

SHIBAROCKET.swapAndLiquify(uint256) (#951-981) sends eth to arbitrary user
Dangerous calls:
- wallet.transfer(oneThird) (#971)
- rewardsWallet.transfer(oneThird) (#972)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in SHIBAROCKET._transfer(address,address,uint256) (#901-949):
External calls:
- swapAndLiquify(contractTokenBalance) (#936)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1008-1015)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#994-1000)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#936)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1008-1015)
- wallet.transfer(oneThird) (#971)
- rewardsWallet.transfer(oneThird) (#972)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#948)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1125)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1041)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1050)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1042)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1061)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1071)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1052)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1062)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1073)
- _tokenTransfer(from,to,amount,takeFee) (#948)
- _rTotal = _rTotal.sub(rFee) (#1080)
- _tokenTransfer(from,to,amount,takeFee) (#948)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1127)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1060)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1070)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1051)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1072)
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.

SHIBAROCKET.addLiquidity(uint256,uint256) (#1003-1016) ignores return value by pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1008-1015)
Ensure that all the return values of the function calls are used.

Additional information: link

SHIBAROCKET._approve(address,address,uint256).owner (#873) shadows:
- Ownable.owner() (#422-424) (function)
Rename the local variables that shadow another component.

Additional information: link

SHIBAROCKET.setMaxTxPercent(uint256) (#1179-1184) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#1181-1183)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in SHIBAROCKET.transferFrom(address,address,uint256) (#800-804):
External calls:
- _transfer(sender,recipient,amount) (#801)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1008-1015)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#994-1000)
External calls sending eth:
- _transfer(sender,recipient,amount) (#801)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1008-1015)
- wallet.transfer(oneThird) (#971)
- rewardsWallet.transfer(oneThird) (#972)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#802)
- _allowances[owner][spender] = amount (#877)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SHIBAROCKET.transferFrom(address,address,uint256) (#800-804):
External calls:
- _transfer(sender,recipient,amount) (#801)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1008-1015)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#994-1000)
External calls sending eth:
- _transfer(sender,recipient,amount) (#801)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1008-1015)
- wallet.transfer(oneThird) (#971)
- rewardsWallet.transfer(oneThird) (#972)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#878)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#802)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#469-474) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#471)
Avoid relying on block.timestamp.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#367-388) uses assembly
- INLINE ASM (#380-383)
Do not use evm assembly.

Additional information: link

SHIBAROCKET._transfer(address,address,uint256) (#901-949) compares to a boolean constant:
-limit == true && from != owner() && to != owner() (#909)
Remove the equality to the boolean constant.

Additional information: link

SafeMath.mod(uint256,uint256,string) (#247-250) is never used and should be removed
Remove unused functions.

Additional information: link

SHIBAROCKET._maxTxAmount (#722) is set pre-construction with a non-constant function or state variable:
- _tTotal
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 Address._functionCallWithValue(address,bytes,uint256,string) (#367-388):
- (success,returndata) = target.call{value: weiValue}(data) (#371)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable SHIBAROCKET._maxTxAmount (#722) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#14)" inContext (#8-17)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in SHIBAROCKET.transferFrom(address,address,uint256) (#800-804):
External calls:
- _transfer(sender,recipient,amount) (#801)
- wallet.transfer(oneThird) (#971)
- rewardsWallet.transfer(oneThird) (#972)
External calls sending eth:
- _transfer(sender,recipient,amount) (#801)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1008-1015)
- wallet.transfer(oneThird) (#971)
- rewardsWallet.transfer(oneThird) (#972)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#802)
- _allowances[owner][spender] = amount (#877)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#878)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#802)
Apply the check-effects-interactions pattern.

Additional information: link

Variable SHIBAROCKET._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1101) is too similar to SHIBAROCKET._getValues(uint256).tTransferAmount (#1085)
Prevent variables from having similar names.

Additional information: link

SHIBAROCKET.slitherConstructorVariables() (#690-1194) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 18 (#703)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SHIBAROCKET.minTokensBeforeSwap (#730) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

setSwapAndLiquifyEnabled(bool) should be declared external:
- SHIBAROCKET.setSwapAndLiquifyEnabled(bool) (#1186-1189)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap volume is low.


Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.


Token is deployed only at one blockchain


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute number of swaps.


Twitter account link seems to be invalid


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


Unable to find token contract audit


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 scam / price dump / death


Young tokens have high risks of scam / price dump / death


Token has a considerable age, but social accounts / website are missing or have few users


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for ShibaRocket