Every payment inside the Cuffies Platforms is through $CUFFIES, allowing investors to profit with volume. We have an ambitious team with many goals present at our roadmap. From the NFT Marketplace already created, to staking pools, games, store, the app, the swapper, Cuffies is here to explore DeFi opportunities that can add value to its Ecosystem.
CUFFIES.sendValue(address,uint256) (#1011-1017) sends eth to arbitrary user
Dangerous calls:
- (success) = recipient.call{value: amount}() (#1015)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in CUFFIES._transfer(address,address,uint256) (#955-1001):
External calls:
- swapTokensForEth(contractTokenBalance) (#979)
- pcsV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1008)
- sendETHToFee(address(this).balance) (#982)
- (success) = recipient.call{value: amount}() (#1015)
External calls sending eth:
- sendETHToFee(address(this).balance) (#982)
- (success) = recipient.call{value: amount}() (#1015)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#998)
- _rOwned[address(this)] = _rOwned[address(this)].add(rTeam) (#1085)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1075)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1076)
- _tokenTransfer(from,to,amount,takeFee) (#998)
- _rTotal = _rTotal.sub(rFee) (#1089)
Reentrancy in CUFFIES.addLiquidity() (#1039-1052):
External calls:
- pcsV2Pair = IPancakeFactory(_pancakeswapV2Router.factory()).createPair(address(this),_pancakeswapV2Router.WETH()) (#1044)
- pcsV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp) (#1047)
External calls sending eth:
- pcsV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp) (#1047)
State variables written after the call(s):
- liquidityAdded = true (#1049)
Apply the check-effects-interactions pattern.
Additional information: link
CUFFIES._taxFee (#768) is written in both
_taxFee = 0 (#970)
_taxFee = 1 (#972)
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.
Contract ticker ($CUFFIES) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.
CUFFIES.addLiquidity() (#1039-1052) ignores return value by pcsV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp) (#1047)
CUFFIES.addLiquidity() (#1039-1052) ignores return value by IBEP20(pcsV2Pair).increaseAllowance(address(pcsV2Router),type()(uint256).max) (#1050)
Ensure that all the return values of the function calls are used.
Additional information: link
CUFFIES.allowance(address,address).owner (#853) shadows:
- Ownable.owner() (#374-376) (function)
CUFFIES._approve(address,address,uint256).owner (#941) shadows:
- Ownable.owner() (#374-376) (function)
Rename the local variables that shadow another component.
Additional information: link
Ownable.constructor().msgSender (#369) lacks a zero-check on :
- _owner = msgSender (#370)
CUFFIES.setmasterWallet(address).newWallet (#880) lacks a zero-check on :
- masterChef = address(newWallet) (#881)
Check that the address is not zero.
Additional information: link
Reentrancy in CUFFIES._transfer(address,address,uint256) (#955-1001):
External calls:
- swapTokensForEth(contractTokenBalance) (#979)
- pcsV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1008)
- sendETHToFee(address(this).balance) (#982)
- (success) = recipient.call{value: amount}() (#1015)
External calls sending eth:
- sendETHToFee(address(this).balance) (#982)
- (success) = recipient.call{value: amount}() (#1015)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#998)
- _companyFee = 7 (#936)
- _companyFee = 0 (#930)
- restoreAllFee() (#1000)
- _companyFee = 7 (#936)
- _tokenTransfer(from,to,amount,takeFee) (#998)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1090)
- _tokenTransfer(from,to,amount,takeFee) (#998)
- _taxFee = 3 (#935)
- _taxFee = 0 (#929)
- restoreAllFee() (#1000)
- _taxFee = 3 (#935)
Reentrancy in CUFFIES.addLiquidity() (#1039-1052):
External calls:
- pcsV2Pair = IPancakeFactory(_pancakeswapV2Router.factory()).createPair(address(this),_pancakeswapV2Router.WETH()) (#1044)
State variables written after the call(s):
- _isExcludedFromMaxWallet[pcsV2Pair] = true (#1046)
- liquidityPools[pcsV2Pair] = true (#1045)
Reentrancy in CUFFIES.addLiquidity() (#1039-1052):
External calls:
- pcsV2Pair = IPancakeFactory(_pancakeswapV2Router.factory()).createPair(address(this),_pancakeswapV2Router.WETH()) (#1044)
- pcsV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp) (#1047)
External calls sending eth:
- pcsV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp) (#1047)
State variables written after the call(s):
- swapEnabled = true (#1048)
Reentrancy in CUFFIES.transferFrom(address,address,uint256) (#874-878):
External calls:
- _transfer(sender,recipient,amount) (#875)
- (success) = recipient.call{value: amount}() (#1015)
- pcsV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1008)
External calls sending eth:
- _transfer(sender,recipient,amount) (#875)
- (success) = recipient.call{value: amount}() (#1015)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#876)
- _allowances[owner][spender] = amount (#944)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in CUFFIES._transfer(address,address,uint256) (#955-1001):
External calls:
- swapTokensForEth(contractTokenBalance) (#979)
- pcsV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1008)
- sendETHToFee(address(this).balance) (#982)
- (success) = recipient.call{value: amount}() (#1015)
External calls sending eth:
- sendETHToFee(address(this).balance) (#982)
- (success) = recipient.call{value: amount}() (#1015)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1079)
- _tokenTransfer(from,to,amount,takeFee) (#998)
Reentrancy in CUFFIES.addLiquidity() (#1039-1052):
External calls:
- pcsV2Pair = IPancakeFactory(_pancakeswapV2Router.factory()).createPair(address(this),_pancakeswapV2Router.WETH()) (#1044)
- pcsV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp) (#1047)
- IBEP20(pcsV2Pair).increaseAllowance(address(pcsV2Router),type()(uint256).max) (#1050)
External calls sending eth:
- pcsV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp) (#1047)
Event emitted after the call(s):
- LiquidityAdded(true) (#1051)
Reentrancy in CUFFIES.manualsend() (#1060-1064):
External calls:
- sendETHToFee(contractETHBalance) (#1062)
- (success) = recipient.call{value: amount}() (#1015)
Event emitted after the call(s):
- ManualSend(contractETHBalance) (#1063)
Reentrancy in CUFFIES.manualswap() (#1054-1058):
External calls:
- swapTokensForEth(contractBalance) (#1056)
- pcsV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1008)
Event emitted after the call(s):
- ManualSwap(contractBalance) (#1057)
Reentrancy in CUFFIES.transferFrom(address,address,uint256) (#874-878):
External calls:
- _transfer(sender,recipient,amount) (#875)
- (success) = recipient.call{value: amount}() (#1015)
- pcsV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1008)
External calls sending eth:
- _transfer(sender,recipient,amount) (#875)
- (success) = recipient.call{value: amount}() (#1015)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#945)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#876)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#28-37) uses assembly
- INLINE ASM (#35)
Address._verifyCallResult(bool,bytes,string) (#173-190) uses assembly
- INLINE ASM (#182-185)
Do not use evm assembly.
Additional information: link
Different versions of Solidity is used:
- Version used: ['0.8.7', '>=0.5.0', '>=0.6.2']
- 0.8.7 (#4)
- 0.8.7 (#194)
- 0.8.7 (#341)
- >=0.6.2 (#395)
- 0.8.7 (#558)
- >=0.5.0 (#607)
- 0.8.7 (#641)
Use one Solidity version.
Additional information: link
Address._verifyCallResult(bool,bytes,string) (#173-190) is never used and should be removed
Address.functionCall(address,bytes) (#81-83) is never used and should be removed
Address.functionCall(address,bytes,string) (#91-93) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#106-108) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#116-123) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#155-157) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#165-171) is never used and should be removed
Address.functionStaticCall(address,bytes) (#131-133) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#141-147) is never used and should be removed
Address.isContract(address) (#28-37) is never used and should be removed
Address.sendValue(address,uint256) (#55-61) is never used and should be removed
SafeMath.mod(uint256,uint256) (#318-320) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#334-337) is never used and should be removed
Remove unused functions.
Additional information: link
CUFFIES._previoustaxFee (#769) is set pre-construction with a non-constant function or state variable:
- _taxFee
CUFFIES._previouscompanyFee (#771) is set pre-construction with a non-constant function or state variable:
- _companyFee
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.6.2 (#395) allows old versions
Pragma version>=0.5.0 (#607) 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 Address.sendValue(address,uint256) (#55-61):
- (success) = recipient.call{value: amount}() (#59)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#116-123):
- (success,returndata) = target.call{value: value}(data) (#121)
Low level call in Address.functionStaticCall(address,bytes,string) (#141-147):
- (success,returndata) = target.staticcall(data) (#145)
Low level call in Address.functionDelegateCall(address,bytes,string) (#165-171):
- (success,returndata) = target.delegatecall(data) (#169)
Low level call in CUFFIES.sendValue(address,uint256) (#1011-1017):
- (success) = recipient.call{value: amount}() (#1015)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IPancakeRouter01.WETH() (#400) is not in mixedCase
Function IPancakeFactory.INIT_CODE_PAIR_HASH() (#638) is not in mixedCase
Function IPancakePair.DOMAIN_SEPARATOR() (#676) is not in mixedCase
Function IPancakePair.PERMIT_TYPEHASH() (#678) is not in mixedCase
Function IPancakePair.MINIMUM_LIQUIDITY() (#709) is not in mixedCase
Constant CUFFIES._name (#754) is not in UPPER_CASE_WITH_UNDERSCORES
Constant CUFFIES._symbol (#755) is not in UPPER_CASE_WITH_UNDERSCORES
Constant CUFFIES._decimals (#756) is not in UPPER_CASE_WITH_UNDERSCORES
Variable CUFFIES._isExcludedFromFee (#760) is not in mixedCase
Variable CUFFIES._isExcludedFromMaxWallet (#761) is not in mixedCase
Constant CUFFIES._tTotal (#765) is not in UPPER_CASE_WITH_UNDERSCORES
Variable CUFFIES._taxFee (#768) is not in mixedCase
Variable CUFFIES._companyFee (#770) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#405) is too similar to IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#406)
Variable CUFFIES._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1133) is too similar to CUFFIES._getTValues(uint256,uint256,uint256).tTransferAmount (#1125)
Variable CUFFIES._getValues(uint256).rTransferAmount (#1118) is too similar to CUFFIES._getTValues(uint256,uint256,uint256).tTransferAmount (#1125)
Variable CUFFIES._getValues(uint256).rTransferAmount (#1118) is too similar to CUFFIES._transferStandard(address,address,uint256).tTransferAmount (#1074)
Variable CUFFIES._transferStandard(address,address,uint256).rTransferAmount (#1074) is too similar to CUFFIES._transferStandard(address,address,uint256).tTransferAmount (#1074)
Variable CUFFIES._transferStandard(address,address,uint256).rTransferAmount (#1074) is too similar to CUFFIES._getTValues(uint256,uint256,uint256).tTransferAmount (#1125)
Variable CUFFIES._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1133) is too similar to CUFFIES._getValues(uint256).tTransferAmount (#1116)
Variable CUFFIES._getValues(uint256).rTransferAmount (#1118) is too similar to CUFFIES._getValues(uint256).tTransferAmount (#1116)
Variable CUFFIES._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1133) is too similar to CUFFIES._transferStandard(address,address,uint256).tTransferAmount (#1074)
Variable CUFFIES._transferStandard(address,address,uint256).rTransferAmount (#1074) is too similar to CUFFIES._getValues(uint256).tTransferAmount (#1116)
Prevent variables from having similar names.
Additional information: link
CUFFIES.farmingStart(bool) (#1032-1037) uses literals with too many digits:
- _maxTxAmount = 10000000 * 10 ** 18 (#1035)
CUFFIES.slitherConstructorVariables() (#752-1162) uses literals with too many digits:
- maxWalletAmount = 100000000 * 10 ** 18 (#772)
CUFFIES.slitherConstructorVariables() (#752-1162) uses literals with too many digits:
- burnAddress = 0x000000000000000000000000000000000000dEaD (#779)
CUFFIES.slitherConstructorConstantVariables() (#752-1162) uses literals with too many digits:
- _tTotal = 100000000 * 10 ** 18 (#765)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
CUFFIES._tOwned (#758) is never used in CUFFIES (#752-1162)
CUFFIES.bots (#773) is never used in CUFFIES (#752-1162)
Remove unused state variables.
Additional information: link
CUFFIES.burnAddress (#779) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#383-386)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#388-392)
name() should be declared external:
- CUFFIES.name() (#823-825)
symbol() should be declared external:
- CUFFIES.symbol() (#827-829)
decimals() should be declared external:
- CUFFIES.decimals() (#831-833)
transfer(address,uint256) should be declared external:
- CUFFIES.transfer(address,uint256) (#843-846)
approve(address,uint256) should be declared external:
- CUFFIES.approve(address,uint256) (#848-851)
allowance(address,address) should be declared external:
- CUFFIES.allowance(address,address) (#853-855)
increaseAllowance(address,uint256) should be declared external:
- CUFFIES.increaseAllowance(address,uint256) (#859-862)
decreaseAllowance(address,uint256) should be declared external:
- CUFFIES.decreaseAllowance(address,uint256) (#864-872)
transferFrom(address,address,uint256) should be declared external:
- CUFFIES.transferFrom(address,address,uint256) (#874-878)
addmodelwallet(address) should be declared external:
- CUFFIES.addmodelwallet(address) (#911-914)
excludemodelwallet(address) should be declared external:
- CUFFIES.excludemodelwallet(address) (#916-919)
openTrading() should be declared external:
- CUFFIES.openTrading() (#1026-1030)
setNewPairAddress(address) should be declared external:
- CUFFIES.setNewPairAddress(address) (#1148-1152)
setRouterAddress(address) should be declared external:
- CUFFIES.setRouterAddress(address) (#1154-1159)
Use the external attribute for functions never called from the contract.
Additional information: link
Average 30d PancakeSwap volume is less than $100. 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 PancakeSwap trading pair to compute liquidity.
Unable to find PancakeSwap trading pair to compute number of swaps.
Unable to crawl data from the website
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to verify token contract address on the website
Unable to find audit link on the website
Unable to find whitepaper link on the website
Unable to find Telegram link on the website
Unable to find Twitter link on the website
Unable to find token on CoinHunt
Additional information: link
Young tokens have high risks of scam / 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 CoinGecko listing / rank
Token has relatively low CoinMarketCap rank
Telegram account link seems to be invalid
Twitter account link seems to be invalid
Unable to find Youtube account
Unable to find Discord account