CMC Token Token Logo

CMC Token

ALERT: phishing / airdrop scam

About CMC

Listings

Not Found
Token 2 years

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 6 May 2022

report
Token seems to be a scam (type: phishing / airdrop scam).

Anti-Scam

Links

CMCToken.airdrop(address) (#1070-1083) sends eth to arbitrary user
Dangerous calls:
- address(address(uint160(_refer))).transfer(referEth) (#1079)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link


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

Reentrancy in CMCToken._transfer(address,address,uint256) (#623-671):
External calls:
- swapTokens(contractTokenBalance) (#642)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#694-700)
External calls sending eth:
- swapTokens(contractTokenBalance) (#642)
- recipient.transfer(amount) (#997)
State variables written after the call(s):
- removeAllFee() (#653)
- _liquidityFee = 0 (#885)
- _liquidityFee = _buyLiquidityFee (#655)
- removeAllFee() (#660)
- _liquidityFee = 0 (#885)
- _liquidityFee = _sellLiquidityFee (#662)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _liquidityFee = _previousLiquidityFee (#891)
- _liquidityFee = 0 (#885)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#853)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#778)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#799)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#789)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#790)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#780)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#801)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#767)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#768)
- _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurnAmount) (#769)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _rTotal = _rTotal.sub(rFee) (#808)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#855)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#788)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#798)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#779)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#800)
Apply the check-effects-interactions pattern.

Additional information: link

CMCToken.swapTokenForTokens(address,address,uint256) (#722-725) ignores return value by tokenC.transfer(account,amount) (#724)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)


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.

Low level call in Address.sendValue(address,uint256) (#124-130):
- (success) = recipient.call{value: amount}() (#128)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#150-167):
- (success,returndata) = target.call{value: weiValue}(data) (#153)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#150-167) is never used and should be removed
Address.functionCall(address,bytes) (#133-135) is never used and should be removed
Address.functionCall(address,bytes,string) (#137-139) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#141-143) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#145-148) is never used and should be removed
Address.isContract(address) (#113-122) is never used and should be removed
Address.sendValue(address,uint256) (#124-130) is never used and should be removed
CMCToken.addLiquidity(uint256,uint256) (#727-740) is never used and should be removed
CMCToken.swapETHForTokens(uint256) (#705-720) is never used and should be removed
Context._msgData() (#46-49) is never used and should be removed
SafeMath.mod(uint256,uint256) (#101-103) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#105-108) is never used and should be removed
Remove unused functions.

Additional information: link

CMCToken.swapTokens(uint256) (#673-682) performs a multiplication on the result of a division:
-marketingBnb = transferredBalance.div(_liquidityFee).mul(marketingDivisor) (#678)
CMCToken.swapTokens(uint256) (#673-682) performs a multiplication on the result of a division:
-charityBnb = transferredBalance.div(_liquidityFee).mul(charityDivisor) (#679)
CMCToken._transferStandard(address,address,uint256) (#760-774) performs a multiplication on the result of a division:
-tBurnAmount = tAmount.div(100).mul(_burnFee) (#763)
Consider ordering multiplication before division.

Additional information: link

CMCToken.addLiquidity(uint256,uint256) (#727-740) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#732-739)
Ensure that all the return values of the function calls are used.

Additional information: link

CMCToken.allowance(address,address).owner (#527) shadows:
- Ownable.owner() (#183-185) (function)
CMCToken._approve(address,address,uint256).owner (#615) shadows:
- Ownable.owner() (#183-185) (function)
CMCToken.increaseSpenderAllowance(address,address,uint256).owner (#858) shadows:
- Ownable.owner() (#183-185) (function)
Rename the local variables that shadow another component.

Additional information: link

CMCToken.setTaxFeePercent(uint256) (#907-909) should emit an event for:
- _taxFee = taxFee (#908)
CMCToken.setLiquidityFeePercent(uint256) (#911-913) should emit an event for:
- _liquidityFee = liquidityFee (#912)
CMCToken.setBuyTaxFeePercent(uint256) (#915-917) should emit an event for:
- _buyTaxFee = buyTaxFee (#916)
CMCToken.setBuyLiquidityFeePercent(uint256) (#919-921) should emit an event for:
- _buyLiquidityFee = buyLiquidityFee (#920)
CMCToken.setSellTaxFeePercent(uint256) (#923-925) should emit an event for:
- _sellTaxFee = sellTaxFee (#924)
CMCToken.setSellLiquidityFeePercent(uint256) (#927-929) should emit an event for:
- _sellLiquidityFee = sellLiquidityFee (#928)
CMCToken.setBurnFeePercent(uint256) (#931-933) should emit an event for:
- _burnFee = burnTaxFee (#932)
CMCToken.setMaxTxAmount(uint256) (#935-937) should emit an event for:
- _maxTxAmount = maxTxAmount (#936)
CMCToken.setMarketingFeePercent(uint256) (#939-941) should emit an event for:
- marketingDivisor = divisor (#940)
CMCToken.setCharityFeePercent(uint256) (#943-945) should emit an event for:
- charityDivisor = divisor (#944)
CMCToken.setNumTokensSellToAddToLiquidity(uint256) (#947-949) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#948)
CMCToken.setALLFeePercent(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256) (#951-961) should emit an event for:
- charityDivisor = charity (#952)
- marketingDivisor = marketting (#953)
- _burnFee = burnTaxFee (#954)
- _sellLiquidityFee = sellLiquidityFee (#955)
- _sellTaxFee = sellTaxFee (#956)
- _buyLiquidityFee = buyLiquidityFee (#957)
- _buyTaxFee = buyTaxFee (#958)
- _liquidityFee = liquidityFee (#959)
- _taxFee = taxFee (#960)
CMCToken.set(uint8,uint256) (#1040-1068) should emit an event for:
- _referEth = value (#1048)
- _referToken = value (#1050)
- _airdropEth = value (#1052)
- _airdropToken = value (#1054)
- salePrice = value (#1058)
- _airdorpBnb = value (#1061)
- _buyBnb = value (#1063)
Emit an event for critical parameter changes.

Additional information: link

CMCToken.setMarketingAddress(address)._marketingAddress (#963) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#964)
CMCToken.setCharityAddress(address)._newaddress (#968) lacks a zero-check on :
- charityAddress = address(_newaddress) (#969)
Check that the address is not zero.

Additional information: link

Reentrancy in CMCToken._transfer(address,address,uint256) (#623-671):
External calls:
- swapTokens(contractTokenBalance) (#642)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#694-700)
External calls sending eth:
- swapTokens(contractTokenBalance) (#642)
- recipient.transfer(amount) (#997)
State variables written after the call(s):
- removeAllFee() (#653)
- _burnFee = 0 (#886)
- _burnFee = _previousBurnFee (#656)
- removeAllFee() (#660)
- _burnFee = 0 (#886)
- _burnFee = _previousBurnFee (#663)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _burnFee = _previousBurnFee (#892)
- _burnFee = 0 (#886)
- removeAllFee() (#653)
- _previousBurnFee = _burnFee (#883)
- removeAllFee() (#660)
- _previousBurnFee = _burnFee (#883)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _previousBurnFee = _burnFee (#883)
- removeAllFee() (#653)
- _previousLiquidityFee = _liquidityFee (#882)
- removeAllFee() (#660)
- _previousLiquidityFee = _liquidityFee (#882)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _previousLiquidityFee = _liquidityFee (#882)
- removeAllFee() (#653)
- _previousTaxFee = _taxFee (#881)
- removeAllFee() (#660)
- _previousTaxFee = _taxFee (#881)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _previousTaxFee = _taxFee (#881)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _tFeeTotal = _tFeeTotal.add(tFee) (#809)
- removeAllFee() (#653)
- _taxFee = 0 (#884)
- _taxFee = _buyTaxFee (#654)
- removeAllFee() (#660)
- _taxFee = 0 (#884)
- _taxFee = _sellTaxFee (#661)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _taxFee = _previousTaxFee (#890)
- _taxFee = 0 (#884)
Reentrancy in CMCToken.constructor() (#489-499):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#493-494)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#496)
- _isExcludedFromFee[address(this)] = true (#497)
- uniswapV2Router = _uniswapV2Router (#495)
Reentrancy in CMCToken.transferFrom(address,address,uint256) (#536-540):
External calls:
- _transfer(sender,recipient,amount) (#537)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#694-700)
External calls sending eth:
- _transfer(sender,recipient,amount) (#537)
- recipient.transfer(amount) (#997)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#538)
- _allowances[owner][spender] = amount (#619)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in CMCToken._transfer(address,address,uint256) (#623-671):
External calls:
- swapTokens(contractTokenBalance) (#642)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#694-700)
External calls sending eth:
- swapTokens(contractTokenBalance) (#642)
- recipient.transfer(amount) (#997)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#793)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- Transfer(sender,recipient,tTransferAmount) (#783)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- Transfer(sender,recipient,tTransferAmount) (#804)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- Transfer(sender,recipient,tTransferAmount) (#772)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- Transfer(sender,deadAddress,tBurnAmount) (#773)
- _tokenTransfer(from,to,amount,takeFee) (#670)
Reentrancy in CMCToken.constructor() (#489-499):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#493-494)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#498)
Reentrancy in CMCToken.swapETHForTokens(uint256) (#705-720):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#712-717)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#719)
Reentrancy in CMCToken.swapTokensForEth(uint256) (#685-703):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#694-700)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#702)
Reentrancy in CMCToken.transferFrom(address,address,uint256) (#536-540):
External calls:
- _transfer(sender,recipient,amount) (#537)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#694-700)
External calls sending eth:
- _transfer(sender,recipient,amount) (#537)
- recipient.transfer(amount) (#997)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#620)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#538)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address.isContract(address) (#113-122) uses assembly
- INLINE ASM (#120)
Address._functionCallWithValue(address,bytes,uint256,string) (#150-167) uses assembly
- INLINE ASM (#159-162)
Do not use evm assembly.

Additional information: link

CMCToken.includeInReward(address) (#602-613) has costly operations inside a loop:
- _excluded.pop() (#609)
Use a local variable to hold the loop computation result.

Additional information: link

CMCToken._rTotal (#445) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
CMCToken._previousTaxFee (#454) is set pre-construction with a non-constant function or state variable:
- _taxFee
CMCToken._previousLiquidityFee (#457) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
CMCToken._buyTaxFee (#459) is set pre-construction with a non-constant function or state variable:
- _taxFee
CMCToken._buyLiquidityFee (#460) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
CMCToken._sellTaxFee (#462) is set pre-construction with a non-constant function or state variable:
- _taxFee
CMCToken._sellLiquidityFee (#463) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
CMCToken._previousBurnFee (#466) is set pre-construction with a non-constant function or state variable:
- _burnFee
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

Variable Ownable._owner (#171) is not in mixedCase
Modifier Ownable.OnlyOwner() (#225-228) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#259) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#260) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#269) is not in mixedCase
Function IUniswapV2Router01.WETH() (#289) is not in mixedCase
Parameter CMCToken.calculateTaxFee(uint256)._amount (#865) is not in mixedCase
Parameter CMCToken.calculateLiquidityFee(uint256)._amount (#871) is not in mixedCase
Parameter CMCToken.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#947) is not in mixedCase
Parameter CMCToken.setMarketingAddress(address)._marketingAddress (#963) is not in mixedCase
Parameter CMCToken.setCharityAddress(address)._newaddress (#968) is not in mixedCase
Parameter CMCToken.setSwapAndLiquifyEnabled(bool)._enabled (#972) is not in mixedCase
Parameter CMCToken.airdrop(address)._refer (#1070) is not in mixedCase
Parameter CMCToken.buy(address)._refer (#1085) is not in mixedCase
Variable CMCToken._taxFee (#453) is not in mixedCase
Variable CMCToken._liquidityFee (#456) is not in mixedCase
Variable CMCToken._buyTaxFee (#459) is not in mixedCase
Variable CMCToken._buyLiquidityFee (#460) is not in mixedCase
Variable CMCToken._sellTaxFee (#462) is not in mixedCase
Variable CMCToken._sellLiquidityFee (#463) is not in mixedCase
Variable CMCToken._burnFee (#465) is not in mixedCase
Variable CMCToken._maxTxAmount (#472) is not in mixedCase
Variable CMCToken._swAuth (#1018) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#47)" inContext (#40-50)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in CMCToken._transfer(address,address,uint256) (#623-671):
External calls:
- swapTokens(contractTokenBalance) (#642)
- recipient.transfer(amount) (#997)
State variables written after the call(s):
- removeAllFee() (#653)
- _burnFee = 0 (#886)
- _burnFee = _previousBurnFee (#656)
- removeAllFee() (#660)
- _burnFee = 0 (#886)
- _burnFee = _previousBurnFee (#663)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _burnFee = _previousBurnFee (#892)
- _burnFee = 0 (#886)
- removeAllFee() (#653)
- _liquidityFee = 0 (#885)
- _liquidityFee = _buyLiquidityFee (#655)
- removeAllFee() (#660)
- _liquidityFee = 0 (#885)
- _liquidityFee = _sellLiquidityFee (#662)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _liquidityFee = _previousLiquidityFee (#891)
- _liquidityFee = 0 (#885)
- removeAllFee() (#653)
- _previousBurnFee = _burnFee (#883)
- removeAllFee() (#660)
- _previousBurnFee = _burnFee (#883)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _previousBurnFee = _burnFee (#883)
- removeAllFee() (#653)
- _previousLiquidityFee = _liquidityFee (#882)
- removeAllFee() (#660)
- _previousLiquidityFee = _liquidityFee (#882)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _previousLiquidityFee = _liquidityFee (#882)
- removeAllFee() (#653)
- _previousTaxFee = _taxFee (#881)
- removeAllFee() (#660)
- _previousTaxFee = _taxFee (#881)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _previousTaxFee = _taxFee (#881)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#853)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#778)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#799)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#789)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#790)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#780)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#801)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#767)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#768)
- _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurnAmount) (#769)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _rTotal = _rTotal.sub(rFee) (#808)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _tFeeTotal = _tFeeTotal.add(tFee) (#809)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#855)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#788)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#798)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#779)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#800)
- removeAllFee() (#653)
- _taxFee = 0 (#884)
- _taxFee = _buyTaxFee (#654)
- removeAllFee() (#660)
- _taxFee = 0 (#884)
- _taxFee = _sellTaxFee (#661)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _taxFee = _previousTaxFee (#890)
- _taxFee = 0 (#884)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#793)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- Transfer(sender,recipient,tTransferAmount) (#783)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- Transfer(sender,recipient,tTransferAmount) (#804)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- Transfer(sender,recipient,tTransferAmount) (#772)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- Transfer(sender,deadAddress,tBurnAmount) (#773)
- _tokenTransfer(from,to,amount,takeFee) (#670)
Reentrancy in CMCToken.transferFrom(address,address,uint256) (#536-540):
External calls:
- _transfer(sender,recipient,amount) (#537)
- recipient.transfer(amount) (#997)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#538)
- _allowances[owner][spender] = amount (#619)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#620)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#538)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#294) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#295)
Variable CMCToken._transferBothExcluded(address,address,uint256).rTransferAmount (#797) is too similar to CMCToken._transferBothExcluded(address,address,uint256).tTransferAmount (#797)
Variable CMCToken._transferBothExcluded(address,address,uint256).rTransferAmount (#797) is too similar to CMCToken._transferStandard(address,address,uint256).tTransferAmount (#762)
Variable CMCToken.reflectionFromToken(uint256,bool).rTransferAmount (#581) is too similar to CMCToken._transferStandard(address,address,uint256).tTransferAmount (#762)
Variable CMCToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#829) is too similar to CMCToken._transferStandard(address,address,uint256).tTransferAmount (#762)
Variable CMCToken._getValues(uint256).rTransferAmount (#814) is too similar to CMCToken._transferToExcluded(address,address,uint256).tTransferAmount (#777)
Variable CMCToken._getValues(uint256).rTransferAmount (#814) is too similar to CMCToken._getValues(uint256).tTransferAmount (#813)
Variable CMCToken._transferStandard(address,address,uint256).rTransferAmount (#762) is too similar to CMCToken._getValues(uint256).tTransferAmount (#813)
Variable CMCToken._transferStandard(address,address,uint256).rTransferAmount (#762) is too similar to CMCToken._transferToExcluded(address,address,uint256).tTransferAmount (#777)
Variable CMCToken._transferFromExcluded(address,address,uint256).rTransferAmount (#787) is too similar to CMCToken._getValues(uint256).tTransferAmount (#813)
Variable CMCToken._getValues(uint256).rTransferAmount (#814) is too similar to CMCToken._transferFromExcluded(address,address,uint256).tTransferAmount (#787)
Variable CMCToken._transferFromExcluded(address,address,uint256).rTransferAmount (#787) is too similar to CMCToken._transferToExcluded(address,address,uint256).tTransferAmount (#777)
Variable CMCToken._transferBothExcluded(address,address,uint256).rTransferAmount (#797) is too similar to CMCToken._transferToExcluded(address,address,uint256).tTransferAmount (#777)
Variable CMCToken._transferToExcluded(address,address,uint256).rTransferAmount (#777) is too similar to CMCToken._transferStandard(address,address,uint256).tTransferAmount (#762)
Variable CMCToken._transferBothExcluded(address,address,uint256).rTransferAmount (#797) is too similar to CMCToken._getValues(uint256).tTransferAmount (#813)
Variable CMCToken._transferStandard(address,address,uint256).rTransferAmount (#762) is too similar to CMCToken._transferFromExcluded(address,address,uint256).tTransferAmount (#787)
Variable CMCToken._transferFromExcluded(address,address,uint256).rTransferAmount (#787) is too similar to CMCToken._transferFromExcluded(address,address,uint256).tTransferAmount (#787)
Variable CMCToken._transferBothExcluded(address,address,uint256).rTransferAmount (#797) is too similar to CMCToken._transferFromExcluded(address,address,uint256).tTransferAmount (#787)
Variable CMCToken.reflectionFromToken(uint256,bool).rTransferAmount (#581) is too similar to CMCToken._transferToExcluded(address,address,uint256).tTransferAmount (#777)
Variable CMCToken.reflectionFromToken(uint256,bool).rTransferAmount (#581) is too similar to CMCToken._getValues(uint256).tTransferAmount (#813)
Variable CMCToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#829) is too similar to CMCToken._transferToExcluded(address,address,uint256).tTransferAmount (#777)
Variable CMCToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#829) is too similar to CMCToken._getValues(uint256).tTransferAmount (#813)
Variable CMCToken.reflectionFromToken(uint256,bool).rTransferAmount (#581) is too similar to CMCToken._transferFromExcluded(address,address,uint256).tTransferAmount (#787)
Variable CMCToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#829) is too similar to CMCToken._transferFromExcluded(address,address,uint256).tTransferAmount (#787)
Variable CMCToken._transferToExcluded(address,address,uint256).rTransferAmount (#777) is too similar to CMCToken._transferToExcluded(address,address,uint256).tTransferAmount (#777)
Variable CMCToken._transferToExcluded(address,address,uint256).rTransferAmount (#777) is too similar to CMCToken._getValues(uint256).tTransferAmount (#813)
Variable CMCToken._transferToExcluded(address,address,uint256).rTransferAmount (#777) is too similar to CMCToken._transferFromExcluded(address,address,uint256).tTransferAmount (#787)
Variable CMCToken._getValues(uint256).rTransferAmount (#814) is too similar to CMCToken._transferStandard(address,address,uint256).tTransferAmount (#762)
Variable CMCToken._transferStandard(address,address,uint256).rTransferAmount (#762) is too similar to CMCToken._transferStandard(address,address,uint256).tTransferAmount (#762)
Variable CMCToken._transferFromExcluded(address,address,uint256).rTransferAmount (#787) is too similar to CMCToken._transferStandard(address,address,uint256).tTransferAmount (#762)
Variable CMCToken._transferStandard(address,address,uint256).rBurnAmount (#764) is too similar to CMCToken._transferStandard(address,address,uint256).tBurnAmount (#763)
Variable CMCToken.reflectionFromToken(uint256,bool).rTransferAmount (#581) is too similar to CMCToken._transferBothExcluded(address,address,uint256).tTransferAmount (#797)
Variable CMCToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#829) is too similar to CMCToken._transferBothExcluded(address,address,uint256).tTransferAmount (#797)
Variable CMCToken._transferToExcluded(address,address,uint256).rTransferAmount (#777) is too similar to CMCToken._getTValues(uint256).tTransferAmount (#821)
Variable CMCToken._transferFromExcluded(address,address,uint256).rTransferAmount (#787) is too similar to CMCToken._getTValues(uint256).tTransferAmount (#821)
Variable CMCToken._transferStandard(address,address,uint256).rTransferAmount (#762) is too similar to CMCToken._transferBothExcluded(address,address,uint256).tTransferAmount (#797)
Variable CMCToken._getValues(uint256).rTransferAmount (#814) is too similar to CMCToken._transferBothExcluded(address,address,uint256).tTransferAmount (#797)
Variable CMCToken.reflectionFromToken(uint256,bool).rTransferAmount (#581) is too similar to CMCToken._getTValues(uint256).tTransferAmount (#821)
Variable CMCToken._transferToExcluded(address,address,uint256).rTransferAmount (#777) is too similar to CMCToken._transferBothExcluded(address,address,uint256).tTransferAmount (#797)
Variable CMCToken._transferFromExcluded(address,address,uint256).rTransferAmount (#787) is too similar to CMCToken._transferBothExcluded(address,address,uint256).tTransferAmount (#797)
Variable CMCToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#829) is too similar to CMCToken._getTValues(uint256).tTransferAmount (#821)
Variable CMCToken._transferBothExcluded(address,address,uint256).rTransferAmount (#797) is too similar to CMCToken._getTValues(uint256).tTransferAmount (#821)
Variable CMCToken._transferStandard(address,address,uint256).rTransferAmount (#762) is too similar to CMCToken._getTValues(uint256).tTransferAmount (#821)
Variable CMCToken._getValues(uint256).rTransferAmount (#814) is too similar to CMCToken._getTValues(uint256).tTransferAmount (#821)
Prevent variables from having similar names.

Additional information: link

CMCToken.prepareForPreSale() (#978-984) uses literals with too many digits:
- _maxTxAmount = 100000000000 * 10 ** 18 (#983)
CMCToken.afterPreSale() (#986-992) uses literals with too many digits:
- _maxTxAmount = 100000000000 * 10 ** 18 (#991)
CMCToken.slitherConstructorVariables() (#426-1104) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#433)
CMCToken.slitherConstructorVariables() (#426-1104) uses literals with too many digits:
- _tTotal = 1000000000000000 * 10 ** 18 (#444)
CMCToken.slitherConstructorVariables() (#426-1104) uses literals with too many digits:
- _maxTxAmount = 10000000000 * 10 ** 18 (#472)
CMCToken.slitherConstructorVariables() (#426-1104) uses literals with too many digits:
- minimumTokensBeforeSwap = 10000000000 * 10 ** 18 (#473)
CMCToken.slitherConstructorVariables() (#426-1104) uses literals with too many digits:
- _airdropEth = 2000000000000000 (#1021)
CMCToken.slitherConstructorVariables() (#426-1104) uses literals with too many digits:
- _airdropToken = 600000000000000000000000000 (#1022)
CMCToken.slitherConstructorVariables() (#426-1104) uses literals with too many digits:
- salePrice = 1000000000000 (#1030)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

CMCToken._auth (#1023) is never used in CMCToken (#426-1104)
CMCToken._auth2 (#1024) is never used in CMCToken (#426-1104)
CMCToken._authNum (#1025) is never used in CMCToken (#426-1104)
Remove unused state variables.

Additional information: link

CMCToken._auth (#1023) should be constant
CMCToken._auth2 (#1024) should be constant
CMCToken._authNum (#1025) should be constant
CMCToken._decimals (#450) should be constant
CMCToken._name (#448) should be constant
CMCToken._symbol (#449) should be constant
CMCToken._tTotal (#444) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#192-195)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#197-201)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#203-205)
getTime() should be declared external:
- Ownable.getTime() (#207-209)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#211-216)
unlock() should be declared external:
- Ownable.unlock() (#218-223)
name() should be declared external:
- CMCToken.name() (#501-503)
symbol() should be declared external:
- CMCToken.symbol() (#505-507)
decimals() should be declared external:
- CMCToken.decimals() (#509-511)
totalSupply() should be declared external:
- CMCToken.totalSupply() (#513-515)
transfer(address,uint256) should be declared external:
- CMCToken.transfer(address,uint256) (#522-525)
allowance(address,address) should be declared external:
- CMCToken.allowance(address,address) (#527-529)
approve(address,uint256) should be declared external:
- CMCToken.approve(address,uint256) (#531-534)
transferFrom(address,address,uint256) should be declared external:
- CMCToken.transferFrom(address,address,uint256) (#536-540)
increaseAllowance(address,uint256) should be declared external:
- CMCToken.increaseAllowance(address,uint256) (#542-545)
decreaseAllowance(address,uint256) should be declared external:
- CMCToken.decreaseAllowance(address,uint256) (#547-550)
isExcludedFromReward(address) should be declared external:
- CMCToken.isExcludedFromReward(address) (#552-554)
totalFees() should be declared external:
- CMCToken.totalFees() (#556-558)
minimumTokensBeforeSwapAmount() should be declared external:
- CMCToken.minimumTokensBeforeSwapAmount() (#560-562)
deliver(uint256) should be declared external:
- CMCToken.deliver(uint256) (#565-572)
reflectionFromToken(uint256,bool) should be declared external:
- CMCToken.reflectionFromToken(uint256,bool) (#575-584)
excludeFromReward(address) should be declared external:
- CMCToken.excludeFromReward(address) (#592-600)
swapTokenForTokens(address,address,uint256) should be declared external:
- CMCToken.swapTokenForTokens(address,address,uint256) (#722-725)
increaseSpenderAllowance(address,address,uint256) should be declared external:
- CMCToken.increaseSpenderAllowance(address,address,uint256) (#858-863)
isExcludedFromFee(address) should be declared external:
- CMCToken.isExcludedFromFee(address) (#895-897)
excludeFromFee(address) should be declared external:
- CMCToken.excludeFromFee(address) (#899-901)
includeInFee(address) should be declared external:
- CMCToken.includeInFee(address) (#903-905)
recoverBalance(uint256) should be declared external:
- CMCToken.recoverBalance(uint256) (#1000-1002)
doManualSwapTokens(uint256) should be declared external:
- CMCToken.doManualSwapTokens(uint256) (#1005-1008)
clearAllETH() should be declared external:
- CMCToken.clearAllETH() (#1033-1036)
set(uint8,uint256) should be declared external:
- CMCToken.set(uint8,uint256) (#1040-1068)
airdrop(address) should be declared external:
- CMCToken.airdrop(address) (#1070-1083)
buy(address) should be declared external:
- CMCToken.buy(address) (#1085-1101)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

Contract has 10% buy tax and 22% sell tax.
Taxes are suspiciously high (over 10%) and contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


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 Telegram and Twitter accounts


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


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death

Price for CMC