IS A MIXED BETWEEN THE MOST FAVORITE DOG IN THE CRYPTOVERSE SHIBA AND PIKACHU THE MOST ICONIC POKEMON THAT IS ON A MISSION TO PROVE TO HIS PARENTS “SHIBA” & “PIKACHU” THAT HE WILL CARRY ON WITH THEIR LEGACIES AND THAT HIS NAME IS DESTINED FOR GREATNESS AS WELL.
HOW IS HE PLANNING ON DOING SO? HE BUILT A TEAM AROUND HIM WHICH CONSISTED OF A SOLIDITY DEVELOPER, A HARD WORKING CO-FOUNDER, AND A CREATIVE DESIGNER. THE TEAM PUT A PLAN TO LEAD THE COMMUNITY AND ACHIEVE SHIBACHU’S GOALS.
SHIBACHU.swapBack() (#581-627) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#610)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#611)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in SHIBACHU._transferFrom(address,address,uint256) (#465-513):
External calls:
- swapBack() (#492)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#592-598)
- distributor.deposit{value: amountBNBReflection}() (#609)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#610)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#611)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#617-624)
External calls sending eth:
- swapBack() (#492)
- distributor.deposit{value: amountBNBReflection}() (#609)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#610)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#611)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#617-624)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#495)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#498)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#497)
- _balances[address(this)] = _balances[address(this)].add(contractTokens) (#538)
- _balances[burnFeeReceiver] = _balances[burnFeeReceiver].add(burnTokens) (#539)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.distributeDividend(address) (#287-298) ignores return value by RWRD.transfer(shareholder,amount) (#293)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
SHIBACHU.swapBack().tmpSuccess (#610) is written in both
(tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#611)
tmpSuccess = false (#614)
Fix or remove the writes.
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.
SHIBACHU.takeFee(address,uint256,bool) (#530-547) performs a multiplication on the result of a division:
-feeAmount = amount.mul(totalFee).mul(multiplier).div(feeDenominator * 100) (#533)
-burnTokens = feeAmount.mul(burnFee).div(totalFee) (#535)
Consider ordering multiplication before division.
Additional information: link
Reentrancy in DividendDistributor.setShare(address,uint256) (#220-234):
External calls:
- distributeDividend(shareholder) (#222)
- RWRD.transfer(shareholder,amount) (#293)
State variables written after the call(s):
- shares[shareholder].amount = amount (#232)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#233)
Apply the check-effects-interactions pattern.
Additional information: link
SHIBACHU.manage_blacklist(address[],bool).i (#645) 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
SHIBACHU.swapBack() (#581-627) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#617-624)
Ensure that all the return values of the function calls are used.
Additional information: link
SHIBACHU.setTargetLiquidity(uint256,uint256) (#686-689) should emit an event for:
- targetLiquidity = _target (#687)
- targetLiquidityDenominator = _denominator (#688)
Emit an event for critical parameter changes.
Additional information: link
SHIBACHU.setFeeReceivers(address,address,address,address)._burnFeeReceiver (#674) lacks a zero-check on :
- burnFeeReceiver = _burnFeeReceiver (#678)
Check that the address is not zero.
Additional information: link
SHIBACHU.multiTransfer_fixed(address,address[],uint256) (#741-760) has external calls inside a loop: distributor.setShare(addresses[i],_balances[addresses[i]]) (#752)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in DividendDistributor.setShare(address,uint256) (#220-234):
External calls:
- distributeDividend(shareholder) (#222)
- RWRD.transfer(shareholder,amount) (#293)
State variables written after the call(s):
- addShareholder(shareholder) (#226)
- shareholderIndexes[shareholder] = shareholders.length (#320)
- removeShareholder(shareholder) (#228)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#326)
- addShareholder(shareholder) (#226)
- shareholders.push(shareholder) (#321)
- removeShareholder(shareholder) (#228)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#325)
- shareholders.pop() (#327)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#231)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in SHIBACHU.swapBack() (#581-627):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#592-598)
- distributor.deposit{value: amountBNBReflection}() (#609)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#610)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#611)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#617-624)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#609)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#610)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#611)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#617-624)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#625)
Apply the check-effects-interactions pattern.
Additional information: link
SHIBACHU._transferFrom(address,address,uint256) (#465-513) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait for 1min between two buys) (#485)
Avoid relying on block.timestamp.
Additional information: link
DividendDistributor.process(uint256) (#256-280) has costly operations inside a loop:
- currentIndex ++ (#277)
Use a local variable to hold the loop computation result.
Additional information: link
SHIBACHU.swapThreshold (#390) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 10 / 10000
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.7.4 (#7) 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
Low level call in SHIBACHU.swapBack() (#581-627):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#610)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#611)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable SHIBACHU._allowances (#348) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#117) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#118)
Prevent variables from having similar names.
Additional information: link
SHIBACHU.slitherConstructorVariables() (#331-764) uses literals with too many digits:
- distributorGas = 500000 (#383)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
SHIBACHU._totalSupply (#342) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
manage_blacklist(address[],bool) should be declared external:
- SHIBACHU.manage_blacklist(address[],bool) (#644-648)
Use the external attribute for functions never called from the contract.
Additional information: link
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.
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 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
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