LilCheems Token Logo

LCINU [LilCheems] Token

About LCINU

Listings

Token 2 years

Description

Social

Laser Scorebeta Last Audit: 28 December 2021

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


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

LIL.swapBack() (#650-699) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#681)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#682)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in LIL._transferFrom(address,address,uint256) (#585-626):
External calls:
- swapBack() (#595)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#660-666)
- dividendDistributor.deposit{value: amountBNBReflection}() (#676)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#681)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#682)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#689-696)
External calls sending eth:
- swapBack() (#595)
- dividendDistributor.deposit{value: amountBNBReflection}() (#676)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#681)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#682)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#689-696)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#603)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#611)
- finalAmount = takeFee(sender,recipient,amount) (#610)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#640)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#268-279) ignores return value by RewardToken.transfer(shareholder,amount) (#274)
LIL.recoverBEP20(address,uint256) (#563-566) ignores return value by IBEP20(tokenAddress).transfer(msg.sender,tokenAmount) (#564)
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.

LIL.swapBack().tmpSuccess (#681) is written in both
(tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#681)
tmpSuccess = false (#685)
LIL.swapBack().tmpSuccess1 (#682) is written in both
(tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#682)
tmpSuccess1 = false (#686)
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.

Pragma version^0.7.4 (#1) 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 LIL.swapBack() (#650-699):
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#681)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#682)
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) (#268-279):
External calls:
- RewardToken.transfer(shareholder,amount) (#274)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#276)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#277)
Reentrancy in DividendDistributor.process(uint256) (#239-261):
External calls:
- distributeDividend(shareholders[currentIndex]) (#253)
- RewardToken.transfer(shareholder,amount) (#274)
State variables written after the call(s):
- currentIndex ++ (#258)
Reentrancy in DividendDistributor.setShare(address,uint256) (#202-217):
External calls:
- distributeDividend(shareholder) (#205)
- RewardToken.transfer(shareholder,amount) (#274)
State variables written after the call(s):
- shares[shareholder].amount = amount (#215)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#216)
Apply the check-effects-interactions pattern.

Additional information: link

LIL.swapBack() (#650-699) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#689-696)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#197-200) should emit an event for:
- minPeriod = newMinPeriod (#198)
- minDistribution = newMinDistribution (#199)
LIL.changeFees(uint256,uint256,uint256,uint256) (#532-540) should emit an event for:
- liquidityFee = newLiqFee (#533)
- rewardsFee = newRewardFee (#534)
- totalFee = liquidityFee.add(marketingFee).add(rewardsFee) (#538)
- totalFeeIfSelling = totalFee.add(extraFeeOnSell) (#539)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#368) lacks a zero-check on :
- owner = adr (#369)
LIL.changeFeeReceivers(address,address,address).newLiquidityReceiver (#542) lacks a zero-check on :
- autoLiquidityReceiver = newLiquidityReceiver (#543)
LIL.changeFeeReceivers(address,address,address).newMarketingWallet (#542) lacks a zero-check on :
- marketingWallet = newMarketingWallet (#544)
LIL.changeFeeReceivers(address,address,address).newDevWallet (#542) lacks a zero-check on :
- devWallet = newDevWallet (#545)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#268-279) has external calls inside a loop: RewardToken.transfer(shareholder,amount) (#274)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in LIL._transferFrom(address,address,uint256) (#585-626):
External calls:
- swapBack() (#595)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#660-666)
- dividendDistributor.deposit{value: amountBNBReflection}() (#676)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#681)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#682)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#689-696)
External calls sending eth:
- swapBack() (#595)
- dividendDistributor.deposit{value: amountBNBReflection}() (#676)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#681)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#682)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#689-696)
State variables written after the call(s):
- launch() (#599)
- launchedAt = block.number (#498)
Reentrancy in LIL.constructor() (#436-466):
External calls:
- pair = IDEXFactory(router.factory()).createPair(router.WETH(),address(this)) (#439)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#440)
- _balances[msg.sender] = _totalSupply (#464)
- autoLiquidityReceiver = DEAD (#457)
- devWallet = 0x161Ff98056963a146FC333fC5908F9E947e69738 (#459)
- dividendDistributor = new DividendDistributor(address(router)) (#442)
- isDividendExempt[pair] = true (#450)
- isDividendExempt[msg.sender] = true (#451)
- isDividendExempt[address(this)] = true (#452)
- isDividendExempt[DEAD] = true (#453)
- isDividendExempt[ZERO] = true (#454)
- isFeeExempt[msg.sender] = true (#444)
- isFeeExempt[address(this)] = true (#445)
- isTxLimitExempt[msg.sender] = true (#447)
- isTxLimitExempt[pair] = true (#448)
- marketingWallet = 0x51454A84c2b648041571BF1d6EBDc8817CA8904f (#458)
- totalFee = liquidityFee.add(marketingFee).add(rewardsFee) (#461)
- totalFeeIfSelling = totalFee.add(extraFeeOnSell) (#462)
Reentrancy in DividendDistributor.deposit() (#219-237):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#227-232)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#236)
- totalDividends = totalDividends.add(amount) (#235)
Reentrancy in DividendDistributor.distributeDividend(address) (#268-279):
External calls:
- RewardToken.transfer(shareholder,amount) (#274)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#275)
Reentrancy in DividendDistributor.setShare(address,uint256) (#202-217):
External calls:
- distributeDividend(shareholder) (#205)
- RewardToken.transfer(shareholder,amount) (#274)
State variables written after the call(s):
- addShareholder(shareholder) (#209)
- shareholderIndexes[shareholder] = shareholders.length (#303)
- removeShareholder(shareholder) (#211)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#309)
- addShareholder(shareholder) (#209)
- shareholders.push(shareholder) (#304)
- removeShareholder(shareholder) (#211)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#308)
- shareholders.pop() (#310)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#214)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in LIL._transferFrom(address,address,uint256) (#585-626):
External calls:
- swapBack() (#595)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#660-666)
- dividendDistributor.deposit{value: amountBNBReflection}() (#676)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#681)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#682)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#689-696)
- dividendDistributor.setShare(sender,_balances[sender]) (#615)
- dividendDistributor.setShare(recipient,_balances[recipient]) (#619)
- dividendDistributor.process(distributorGas) (#622)
External calls sending eth:
- swapBack() (#595)
- dividendDistributor.deposit{value: amountBNBReflection}() (#676)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#681)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#682)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#689-696)
Event emitted after the call(s):
- Transfer(sender,recipient,finalAmount) (#624)
Reentrancy in LIL._transferFrom(address,address,uint256) (#585-626):
External calls:
- swapBack() (#595)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#660-666)
- dividendDistributor.deposit{value: amountBNBReflection}() (#676)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#681)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#682)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#689-696)
External calls sending eth:
- swapBack() (#595)
- dividendDistributor.deposit{value: amountBNBReflection}() (#676)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#681)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#682)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#689-696)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#641)
- finalAmount = takeFee(sender,recipient,amount) (#610)
Reentrancy in LIL.constructor() (#436-466):
External calls:
- pair = IDEXFactory(router.factory()).createPair(router.WETH(),address(this)) (#439)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#465)
Reentrancy in LIL.swapBack() (#650-699):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#660-666)
- dividendDistributor.deposit{value: amountBNBReflection}() (#676)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#681)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#682)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#689-696)
External calls sending eth:
- dividendDistributor.deposit{value: amountBNBReflection}() (#676)
- (tmpSuccess) = address(marketingWallet).call{gas: 30000,value: marketingShare}() (#681)
- (tmpSuccess1) = address(devWallet).call{gas: 30000,value: devShare}() (#682)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#689-696)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#697)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#263-266) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#264-265)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#239-261) has costly operations inside a loop:
- currentIndex = 0 (#250)
DividendDistributor.distributeDividend(address) (#268-279) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#273)
DividendDistributor.process(uint256) (#239-261) has costly operations inside a loop:
- currentIndex ++ (#258)
Use a local variable to hold the loop computation result.

Additional information: link

Function IDEXRouter.WETH() (#97) is not in mixedCase
Variable DividendDistributor._token (#153) is not in mixedCase
Variable DividendDistributor.RewardToken (#163) is not in mixedCase
Constant LIL._name (#381) is not in UPPER_CASE_WITH_UNDERSCORES
Constant LIL._symbol (#382) is not in UPPER_CASE_WITH_UNDERSCORES
Constant LIL._decimals (#383) is not in UPPER_CASE_WITH_UNDERSCORES
Variable LIL.DEAD (#385) is not in mixedCase
Variable LIL.ZERO (#386) is not in mixedCase
Variable LIL.RewardToken (#388) is not in mixedCase
Variable LIL._totalSupply (#390) is not in mixedCase
Variable LIL._maxTxAmount (#391) is not in mixedCase
Variable LIL._walletMax (#392) is not in mixedCase
Variable LIL._balances (#396) is not in mixedCase
Variable LIL._allowances (#397) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

LIL.slitherConstructorVariables() (#377-704) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#385)
LIL.slitherConstructorVariables() (#377-704) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#386)
LIL.slitherConstructorVariables() (#377-704) uses literals with too many digits:
- distributorGas = 500000 (#422)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

LIL.RewardToken (#388) is never used in LIL (#377-704)
Remove unused state variables.

Additional information: link

DividendDistributor.dividendsPerShareAccuracyFactor (#174) should be constant
DividendDistributor.routerAddress (#162) should be constant
LIL.DEAD (#385) should be constant
LIL.RewardToken (#388) should be constant
LIL.ZERO (#386) should be constant
LIL._totalSupply (#390) should be constant
LIL.routerAddress (#387) 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) (#340-342)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#347-349)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#368-372)
getCirculatingSupply() should be declared external:
- LIL.getCirculatingSupply() (#476-478)
recoverBEP20(address,uint256) should be declared external:
- LIL.recoverBEP20(address,uint256) (#563-566)
recoverBNB(uint256) should be declared external:
- LIL.recoverBNB(uint256) (#568-571)
tradingStatus(bool) should be declared external:
- LIL.tradingStatus(bool) (#646-648)
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.


Telegram account link seems to be invalid


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


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


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for LCINU