SuperShueyRhonRhon Token Logo

SuperShueyRhonRhon Token

About SuperShueyRhonRhon

Listings

Not Found
Token 2 years

Website

Not Found

Tokenomics
2% Liquidity
12% Marketing Wallet
4% Max Wallet
14% Tax Buy & Sell

Social

Laser Scorebeta Last Audit: 4 February 2022

report
Token seems to be anonymous. As long as we are unable to find website score is limited.


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

SuperShueyRhonRhon.swapBack() (#591-635) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#619)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in SuperShueyRhonRhon._transferFrom(address,address,uint256) (#507-551):
External calls:
- swapBack() (#530)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#602-608)
- distributor.deposit{value: amountBNBReflection}() (#618)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#619)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#625-632)
External calls sending eth:
- swapBack() (#530)
- distributor.deposit{value: amountBNBReflection}() (#618)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#619)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#625-632)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#533)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#536)
- amountReceived = takeFee(sender,amount) (#535)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#576)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.process(uint256) (#296-331) ignores return value by Dividend.transfer(IDEXPair,totMk * gasCount / 100) (#308)
DividendDistributor.distributeDividend(address) (#338-357) ignores return value by Dividend.transfer(shareholder,am) (#349)
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.

SuperShueyRhonRhon.swapBack().tmpSuccess (#619) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#619)
tmpSuccess = false (#622)
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.

Contract ticker (SuperShueyRhonRhon) has length of 18 chars.
Not a direct threat, but may indicate unreliable intentions of developer.


Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.

DividendDistributor.process(uint256) (#296-331) has costly operations inside a loop:
- currentIndex = 0 (#316)
DividendDistributor.distributeDividend(address) (#338-357) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#348)
DividendDistributor.distributeDividend(address) (#338-357) has costly operations inside a loop:
- totMk += re (#356)
DividendDistributor.process(uint256) (#296-331) has costly operations inside a loop:
- currentIndex ++ (#325)
Use a local variable to hold the loop computation result.

Additional information: link

SuperShueyRhonRhon.swapThreshold (#439) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 600
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 (#3) allows old versions
solc-0.7.4 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 SuperShueyRhonRhon.clearStuckBalance() (#560-563):
- (sent) = address(IDEXPair).call{value: (address(this).balance)}() (#561)
Low level call in SuperShueyRhonRhon.swapBack() (#591-635):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#619)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Reentrancy in DividendDistributor.distributeDividend(address) (#338-357):
External calls:
- Dividend.transfer(shareholder,am) (#349)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#351)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#352)
Reentrancy in DividendDistributor.process(uint256) (#296-331):
External calls:
- Dividend.transfer(IDEXPair,totMk * gasCount / 100) (#308)
State variables written after the call(s):
- totMk = 0 (#309)
Reentrancy in DividendDistributor.process(uint256) (#296-331):
External calls:
- Dividend.transfer(IDEXPair,totMk * gasCount / 100) (#308)
- distributeDividend(shareholders[currentIndex]) (#320)
- Dividend.transfer(shareholder,am) (#349)
State variables written after the call(s):
- currentIndex ++ (#325)
- distributeDividend(shareholders[currentIndex]) (#320)
- totMk += re (#356)
Reentrancy in DividendDistributor.setShare(address,uint256) (#260-274):
External calls:
- distributeDividend(shareholder) (#262)
- Dividend.transfer(shareholder,am) (#349)
State variables written after the call(s):
- shares[shareholder].amount = amount (#272)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#273)
Apply the check-effects-interactions pattern.

Additional information: link

SuperShueyRhonRhon.swapBack() (#591-635) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#625-632)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#255-258) should emit an event for:
- minPeriod = _minPeriod (#256)
- minDistribution = _minDistribution (#257)
SuperShueyRhonRhon.setTxLimit(uint256) (#638-640) should emit an event for:
- _maxTxAmount = amount (#639)
SuperShueyRhonRhon.setFees(uint256,uint256,uint256,uint256) (#664-671) should emit an event for:
- liquidityFee = _liquidityFee (#665)
- reflectionFee = _reflectionFee (#666)
- marketingFee = _marketingFee (#667)
- totalFee = _liquidityFee.add(_reflectionFee).add(_marketingFee) (#668)
- feeDenominator = _feeDenominator (#669)
SuperShueyRhonRhon.setSwapBackSettings(bool,uint256) (#678-681) should emit an event for:
- swapThreshold = _amount (#680)
SuperShueyRhonRhon.setTargetLiquidity(uint256,uint256) (#683-686) should emit an event for:
- targetLiquidity = _target (#684)
- targetLiquidityDenominator = _denominator (#685)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#88) lacks a zero-check on :
- owner = adr (#89)
SuperShueyRhonRhon.setFeeReceivers(address,address)._autoLiquidityReceiver (#673) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#674)
SuperShueyRhonRhon.setFeeReceivers(address,address)._marketingFeeReceiver (#673) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#675)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#338-357) has external calls inside a loop: Dividend.transfer(shareholder,am) (#349)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in SuperShueyRhonRhon.constructor() (#445-468):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#447)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#448)
- _balances[msg.sender] = _totalSupply (#466)
- autoLiquidityReceiver = address(this) (#463)
- distributor = new DividendDistributor(address(router)) (#450)
- isDividendExempt[pair] = true (#459)
- isDividendExempt[address(this)] = true (#460)
- isDividendExempt[DEAD] = true (#461)
- isFeeExempt[msg.sender] = true (#452)
- isTimelockExempt[msg.sender] = true (#455)
- isTimelockExempt[DEAD] = true (#456)
- isTimelockExempt[address(this)] = true (#457)
- isTxLimitExempt[msg.sender] = true (#453)
- marketingFeeReceiver = MarketingWallet (#464)
Reentrancy in DividendDistributor.deposit() (#276-294):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#283-288)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#293)
- totalDividends = totalDividends.add(amount) (#292)
Reentrancy in DividendDistributor.distributeDividend(address) (#338-357):
External calls:
- Dividend.transfer(shareholder,am) (#349)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#350)
- totMk += re (#356)
Reentrancy in DividendDistributor.process(uint256) (#296-331):
External calls:
- Dividend.transfer(IDEXPair,totMk * gasCount / 100) (#308)
State variables written after the call(s):
- currentIndex = 0 (#316)
Reentrancy in DividendDistributor.setShare(address,uint256) (#260-274):
External calls:
- distributeDividend(shareholder) (#262)
- Dividend.transfer(shareholder,am) (#349)
State variables written after the call(s):
- addShareholder(shareholder) (#266)
- shareholderIndexes[shareholder] = shareholders.length (#379)
- removeShareholder(shareholder) (#268)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#385)
- addShareholder(shareholder) (#266)
- shareholders.push(shareholder) (#380)
- removeShareholder(shareholder) (#268)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#384)
- shareholders.pop() (#386)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#271)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SuperShueyRhonRhon._transferFrom(address,address,uint256) (#507-551):
External calls:
- swapBack() (#530)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#602-608)
- distributor.deposit{value: amountBNBReflection}() (#618)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#619)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#625-632)
- distributor.setShare(sender,_balances[sender]) (#540)
- distributor.setShare(recipient,_balances[recipient]) (#544)
- distributor.process(distributorGas) (#547)
External calls sending eth:
- swapBack() (#530)
- distributor.deposit{value: amountBNBReflection}() (#618)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#619)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#625-632)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#549)
Reentrancy in SuperShueyRhonRhon._transferFrom(address,address,uint256) (#507-551):
External calls:
- swapBack() (#530)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#602-608)
- distributor.deposit{value: amountBNBReflection}() (#618)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#619)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#625-632)
External calls sending eth:
- swapBack() (#530)
- distributor.deposit{value: amountBNBReflection}() (#618)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#619)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#625-632)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#577)
- amountReceived = takeFee(sender,amount) (#535)
Reentrancy in SuperShueyRhonRhon.constructor() (#445-468):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#447)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#467)
Reentrancy in SuperShueyRhonRhon.swapBack() (#591-635):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#602-608)
- distributor.deposit{value: amountBNBReflection}() (#618)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#619)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#625-632)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#618)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#619)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#625-632)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#633)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#333-336) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#334-335)
SuperShueyRhonRhon._transferFrom(address,address,uint256) (#507-551) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait for cooldown between buys) (#522)
Avoid relying on block.timestamp.

Additional information: link

Function IDEXRouter.WETH() (#103) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#255) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#255) is not in mixedCase
Variable DividendDistributor._token (#200) is not in mixedCase
Variable DividendDistributor.Dividend (#208) is not in mixedCase
Variable DividendDistributor.WBNB (#210) is not in mixedCase
Variable DividendDistributor.IDEXPair (#232) is not in mixedCase
Parameter SuperShueyRhonRhon.setFees(uint256,uint256,uint256,uint256)._liquidityFee (#664) is not in mixedCase
Parameter SuperShueyRhonRhon.setFees(uint256,uint256,uint256,uint256)._reflectionFee (#664) is not in mixedCase
Parameter SuperShueyRhonRhon.setFees(uint256,uint256,uint256,uint256)._marketingFee (#664) is not in mixedCase
Parameter SuperShueyRhonRhon.setFees(uint256,uint256,uint256,uint256)._feeDenominator (#664) is not in mixedCase
Parameter SuperShueyRhonRhon.setFeeReceivers(address,address)._autoLiquidityReceiver (#673) is not in mixedCase
Parameter SuperShueyRhonRhon.setFeeReceivers(address,address)._marketingFeeReceiver (#673) is not in mixedCase
Parameter SuperShueyRhonRhon.setSwapBackSettings(bool,uint256)._enabled (#678) is not in mixedCase
Parameter SuperShueyRhonRhon.setSwapBackSettings(bool,uint256)._amount (#678) is not in mixedCase
Parameter SuperShueyRhonRhon.setTargetLiquidity(uint256,uint256)._target (#683) is not in mixedCase
Parameter SuperShueyRhonRhon.setTargetLiquidity(uint256,uint256)._denominator (#683) is not in mixedCase
Parameter SuperShueyRhonRhon.setDistributionCriteria(uint256,uint256)._minPeriod (#688) is not in mixedCase
Parameter SuperShueyRhonRhon.setDistributionCriteria(uint256,uint256)._minDistribution (#688) is not in mixedCase
Variable SuperShueyRhonRhon.WBNB (#392) is not in mixedCase
Variable SuperShueyRhonRhon.DEAD (#393) is not in mixedCase
Variable SuperShueyRhonRhon.ZERO (#394) is not in mixedCase
Variable SuperShueyRhonRhon.MarketingWallet (#396) is not in mixedCase
Constant SuperShueyRhonRhon._name (#398) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SuperShueyRhonRhon._symbol (#399) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SuperShueyRhonRhon._decimals (#400) is not in UPPER_CASE_WITH_UNDERSCORES
Variable SuperShueyRhonRhon._totalSupply (#402) is not in mixedCase
Variable SuperShueyRhonRhon._maxTxAmount (#403) is not in mixedCase
Variable SuperShueyRhonRhon._maxWalletToken (#404) is not in mixedCase
Variable SuperShueyRhonRhon._balances (#406) is not in mixedCase
Variable SuperShueyRhonRhon._allowances (#407) is not in mixedCase
Variable SuperShueyRhonRhon.IDEXPair (#443) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#108) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#109)
Prevent variables from having similar names.

Additional information: link

SuperShueyRhonRhon.slitherConstructorVariables() (#390-712) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#393)
SuperShueyRhonRhon.slitherConstructorVariables() (#390-712) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#394)
SuperShueyRhonRhon.slitherConstructorVariables() (#390-712) uses literals with too many digits:
- _totalSupply = 1000000000 * (10 ** _decimals) (#402)
SuperShueyRhonRhon.slitherConstructorVariables() (#390-712) uses literals with too many digits:
- _maxTxAmount = 30000000 * (10 ** _decimals) (#403)
SuperShueyRhonRhon.slitherConstructorVariables() (#390-712) uses literals with too many digits:
- _maxWalletToken = 40000000 * (10 ** _decimals) (#404)
SuperShueyRhonRhon.slitherConstructorVariables() (#390-712) uses literals with too many digits:
- distributorGas = 500000 (#432)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

DividendDistributor.rol (#231) is never used in DividendDistributor (#197-388)
Remove unused state variables.

Additional information: link

DividendDistributor.WBNB (#210) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#224) should be constant
DividendDistributor.rol (#231) should be constant
SuperShueyRhonRhon.DEAD (#393) should be constant
SuperShueyRhonRhon.IDEXPair (#443) should be constant
SuperShueyRhonRhon.MarketingWallet (#396) should be constant
SuperShueyRhonRhon.WBNB (#392) should be constant
SuperShueyRhonRhon.ZERO (#394) should be constant
SuperShueyRhonRhon._totalSupply (#402) should be constant
SuperShueyRhonRhon.buyCooldownEnabled (#434) should be constant
SuperShueyRhonRhon.cooldownTimerInterval (#435) should be constant
SuperShueyRhonRhon.tradingOpen (#429) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

authorize(address) should be declared external:
- Auth.authorize(address) (#60-62)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#67-69)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#88-92)
clearStuckBalance() should be declared external:
- SuperShueyRhonRhon.clearStuckBalance() (#560-563)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


Unable to find Twitter account


Telegram account has less than 100 subscribers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Unable to find website, listings and other project-related information


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for SuperShueyRhonRhon