The Shiba XXX (柴野犬xxx) is an experimental wild clone of Shiba Inu, designed by scientists to live on Mars.
After a freak lab accident, all the scientists were found dead and the ShibaXXX dogs are now on the loose.
For some reason, something in its DNA is telling it to hunt down Shiba Inu.
3% Shiba Inu rewards
4% Liquidity Pool
8% Marketing & breeding research
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
shibaxxx.swapBack() (#549-588) sends eth to arbitrary user
Dangerous calls:
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#574)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in shibaxxx._transferFrom(address,address,uint256) (#482-504):
External calls:
- swapBack() (#487)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#560-566)
- distributor.deposit{value: amountBNBReflection}() (#573)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#574)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#578-585)
- triggerAutoBuyback() (#488)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#626-631)
External calls sending eth:
- swapBack() (#487)
- distributor.deposit{value: amountBNBReflection}() (#573)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#574)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#578-585)
- triggerAutoBuyback() (#488)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#626-631)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#492)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#495)
- amountReceived = takeFee(sender,recipient,amount) (#494)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#536)
- triggerAutoBuyback() (#488)
- inSwap = true (#427)
- inSwap = false (#427)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.distributeDividend(address) (#322-333) ignores return value by BETH.transfer(shareholder,amount) (#328)
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 DividendDistributor.setShare(address,uint256) (#255-269):
External calls:
- distributeDividend(shareholder) (#257)
- BETH.transfer(shareholder,amount) (#328)
State variables written after the call(s):
- shares[shareholder].amount = amount (#267)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#268)
Apply the check-effects-interactions pattern.
Additional information: link
shibaxxx.swapBack() (#549-588) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#578-585)
Ensure that all the return values of the function calls are used.
Additional information: link
shibaxxx.setTargetLiquidity(uint256,uint256) (#701-704) should emit an event for:
- targetLiquidity = _target (#702)
- targetLiquidityDenominator = _denominator (#703)
Emit an event for critical parameter changes.
Additional information: link
shibaxxx.setFeeReceivers(address,address)._marketingFeeReceiver (#691) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#693)
Check that the address is not zero.
Additional information: link
Reentrancy in shibaxxx.triggerManualBuyback(uint256,bool) (#598-604):
External calls:
- buyTokens(amount,DEAD) (#599)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#626-631)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#601)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in shibaxxx.triggerManualBuyback(uint256,bool) (#598-604):
External calls:
- buyTokens(amount,DEAD) (#599)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#626-631)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#602)
Apply the check-effects-interactions pattern.
Additional information: link
shibaxxx.isOverLiquified(uint256,uint256) (#736-738) uses timestamp for comparisons
Dangerous comparisons:
- getLiquidityBacking(accuracy) > target (#737)
Avoid relying on block.timestamp.
Additional information: link
DividendDistributor.process(uint256) (#291-315) has costly operations inside a loop:
- currentIndex ++ (#312)
Use a local variable to hold the loop computation result.
Additional information: link
shibaxxx.swapThreshold (#425) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 200
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.5 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
Low level call in shibaxxx.swapBack() (#549-588):
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#574)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable shibaxxx._allowances (#384) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#152) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#153)
Prevent variables from having similar names.
Additional information: link
shibaxxx.slitherConstructorVariables() (#366-743) uses literals with too many digits:
- distributorGas = 500000 (#422)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
shibaxxx.BETH (#369) is never used in shibaxxx (#366-743)
Remove unused state variables.
Additional information: link
shibaxxx._totalSupply (#378) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
getUnpaidEarnings(address) should be declared external:
- shibaxxx.getUnpaidEarnings(address) (#719-721)
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.
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.
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token on CoinGecko
Additional information: link
Unable to find token on 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 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
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / 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