CatRise Token Logo

CRISE [CatRise] Token

ALERT: dead

About CRISE

Listings

Not Found
Token 4 years

CAT RISE is created with the goal of being a decentralized community-driven meme project with a true purpose. CAT RISE aims to be the most known and most used cryptocurrency in the Galaxy.

Social

Laser Scorebeta Last Audit: 30 May 2022

report
Token seems to be unmaintained (no trading, inactive website, inactive socials, etc.).

Anti-Scam

Links

CatRise.swapAndLiquify(uint256) (#1617-1660) sends eth to arbitrary user
Dangerous calls:
- devWallet.transfer(devAmt) (#1658)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in CatRise._transfer(address,address,uint256) (#1554-1615):
External calls:
- swapAndLiquify(contractTokenBalance) (#1583)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityReceiver),block.timestamp) (#1685-1692)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1671-1677)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1583)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityReceiver),block.timestamp) (#1685-1692)
- address(marketingAddress).transfer(marketingAmt) (#1654)
- devWallet.transfer(devAmt) (#1658)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1614)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1442)
- _rOwned[address(this)] = _rOwned[address(this)].add(rWallet) (#1450)
- _rOwned[fixedBurnAddress] = _rOwned[fixedBurnAddress].add(rburn) (#1462)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1778)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1747)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1841)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1810)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1748)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1780)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1811)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1843)
- _tokenTransfer(from,to,amount,takeFee) (#1614)
- _rTotal = _rTotal.sub(rFee) (#1363)
- _tokenTransfer(from,to,amount,takeFee) (#1614)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1444)
- _tOwned[address(this)] = _tOwned[address(this)].add(tWallet) (#1452)
- _tOwned[fixedBurnAddress] = _tOwned[fixedBurnAddress].add(tburn) (#1464-1466)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1809)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1840)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1779)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1842)
- _tokenTransfer(from,to,amount,takeFee) (#1614)
- _tTotal = _tTotal.sub(tburn) (#1457)
Apply the check-effects-interactions pattern.

Additional information: link


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

CatRise.withdrawForeignToken(address,address,uint256) (#1855-1858) ignores return value by foreignToken.transfer(recipient,amount) (#1857)
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.

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#521-524)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#530-537)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#539-541)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#544-549)
unlock() should be declared external:
- Ownable.unlock() (#552-561)
name() should be declared external:
- CatRise.name() (#1050-1052)
symbol() should be declared external:
- CatRise.symbol() (#1054-1056)
decimals() should be declared external:
- CatRise.decimals() (#1058-1060)
totalSupply() should be declared external:
- CatRise.totalSupply() (#1062-1064)
transfer(address,uint256) should be declared external:
- CatRise.transfer(address,uint256) (#1071-1078)
allowance(address,address) should be declared external:
- CatRise.allowance(address,address) (#1080-1087)
approve(address,uint256) should be declared external:
- CatRise.approve(address,uint256) (#1089-1096)
transferFrom(address,address,uint256) should be declared external:
- CatRise.transferFrom(address,address,uint256) (#1098-1113)
increaseAllowance(address,uint256) should be declared external:
- CatRise.increaseAllowance(address,uint256) (#1115-1126)
decreaseAllowance(address,uint256) should be declared external:
- CatRise.decreaseAllowance(address,uint256) (#1128-1142)
isExcludedFromReward(address) should be declared external:
- CatRise.isExcludedFromReward(address) (#1144-1146)
totalFees() should be declared external:
- CatRise.totalFees() (#1148-1150)
burnAddress() should be declared external:
- CatRise.burnAddress() (#1152-1154)
whitelistMultipleAddress(address[],bool) should be declared external:
- CatRise.whitelistMultipleAddress(address[],bool) (#1156-1161)
deliver(uint256) should be declared external:
- CatRise.deliver(uint256) (#1163-1189)
reflectionFromToken(uint256,bool) should be declared external:
- CatRise.reflectionFromToken(uint256,bool) (#1191-1219)
excludeFromReward(address) should be declared external:
- CatRise.excludeFromReward(address) (#1247-1254)
excludeFromFee(address) should be declared external:
- CatRise.excludeFromFee(address) (#1269-1271)
includeInFee(address) should be declared external:
- CatRise.includeInFee(address) (#1273-1275)
excludeFromLimit(address) should be declared external:
- CatRise.excludeFromLimit(address) (#1277-1279)
includeInLimit(address) should be declared external:
- CatRise.includeInLimit(address) (#1281-1283)
setSwapAndLiquifyEnabled(bool) should be declared external:
- CatRise.setSwapAndLiquifyEnabled(bool) (#1354-1357)
setPrivateTradingStatus(bool) should be declared external:
- CatRise.setPrivateTradingStatus(bool) (#1510-1512)
whitelistAddressForPrivateTrading(address,bool) should be declared external:
- CatRise.whitelistAddressForPrivateTrading(address,bool) (#1514-1516)
isExcludedFromFee(address) should be declared external:
- CatRise.isExcludedFromFee(address) (#1534-1536)
isExcludedFromLimit(address) should be declared external:
- CatRise.isExcludedFromLimit(address) (#1538-1540)
withdrawStuckETH(address,uint256) should be declared external:
- CatRise.withdrawStuckETH(address,uint256) (#1851-1853)
withdrawForeignToken(address,address,uint256) should be declared external:
- CatRise.withdrawForeignToken(address,address,uint256) (#1855-1858)
Use the external attribute for functions never called from the contract.

Additional information: link

Redundant expression "this (#285)" inContext (#279-288)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in CatRise._transfer(address,address,uint256) (#1554-1615):
External calls:
- swapAndLiquify(contractTokenBalance) (#1583)
- address(marketingAddress).transfer(marketingAmt) (#1654)
- devWallet.transfer(devAmt) (#1658)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1583)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityReceiver),block.timestamp) (#1685-1692)
- address(marketingAddress).transfer(marketingAmt) (#1654)
- devWallet.transfer(devAmt) (#1658)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1614)
- _burnFee = sellFee.burn (#1530)
- _burnFee = 0 (#1506)
- _burnFee = buyFee.burn (#1522)
- _tokenTransfer(from,to,amount,takeFee) (#1614)
- _devFee = sellFee.dev (#1531)
- _devFee = 0 (#1507)
- _devFee = buyFee.dev (#1523)
- _tokenTransfer(from,to,amount,takeFee) (#1614)
- _liquidityFee = 0 (#1504)
- _liquidityFee = buyFee.liquidity (#1520)
- _liquidityFee = sellFee.liquidity (#1528)
- _tokenTransfer(from,to,amount,takeFee) (#1614)
- _marketingFee = 0 (#1505)
- _marketingFee = buyFee.marketing (#1521)
- _marketingFee = sellFee.marketing (#1529)
- _tokenTransfer(from,to,amount,takeFee) (#1614)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1442)
- _rOwned[address(this)] = _rOwned[address(this)].add(rWallet) (#1450)
- _rOwned[fixedBurnAddress] = _rOwned[fixedBurnAddress].add(rburn) (#1462)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1778)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1747)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1841)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1810)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1748)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1780)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1811)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1843)
- _tokenTransfer(from,to,amount,takeFee) (#1614)
- _rTotal = _rTotal.sub(rFee) (#1363)
- _tokenTransfer(from,to,amount,takeFee) (#1614)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1364)
- _tokenTransfer(from,to,amount,takeFee) (#1614)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1444)
- _tOwned[address(this)] = _tOwned[address(this)].add(tWallet) (#1452)
- _tOwned[fixedBurnAddress] = _tOwned[fixedBurnAddress].add(tburn) (#1464-1466)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1809)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1840)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1779)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1842)
- _tokenTransfer(from,to,amount,takeFee) (#1614)
- _tTotal = _tTotal.sub(tburn) (#1457)
- _tokenTransfer(from,to,amount,takeFee) (#1614)
- _taxFee = buyFee.tax (#1519)
- _taxFee = sellFee.tax (#1527)
- _taxFee = 0 (#1503)
Event emitted after the call(s):
- Transfer(address(this),address(0),tburn) (#1458)
- _tokenTransfer(from,to,amount,takeFee) (#1614)
- Transfer(sender,recipient,tTransferAmount) (#1753)
- _tokenTransfer(from,to,amount,takeFee) (#1614)
- Transfer(sender,recipient,tTransferAmount) (#1785)
- _tokenTransfer(from,to,amount,takeFee) (#1614)
- Transfer(sender,recipient,tTransferAmount) (#1816)
- _tokenTransfer(from,to,amount,takeFee) (#1614)
- Transfer(sender,recipient,tTransferAmount) (#1848)
- _tokenTransfer(from,to,amount,takeFee) (#1614)
Reentrancy in CatRise.transferFrom(address,address,uint256) (#1098-1113):
External calls:
- _transfer(sender,recipient,amount) (#1103)
- address(marketingAddress).transfer(marketingAmt) (#1654)
- devWallet.transfer(devAmt) (#1658)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1103)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityReceiver),block.timestamp) (#1685-1692)
- address(marketingAddress).transfer(marketingAmt) (#1654)
- devWallet.transfer(devAmt) (#1658)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1104-1111)
- _allowances[owner][spender] = amount (#1550)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1551)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1104-1111)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#717) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#718)
Variable CatRise._transferStandard(address,address,uint256).rTransferAmount (#1738) is too similar to CatRise._transferBothExcluded(address,address,uint256).tTransferAmount (#1825)
Variable CatRise._transferBothExcluded(address,address,uint256).rTransferAmount (#1831) is too similar to CatRise._transferStandard(address,address,uint256).tTransferAmount (#1732)
Variable CatRise._transferBothExcluded(address,address,uint256).rTransferAmount (#1831) is too similar to CatRise._transferFromExcluded(address,address,uint256).tTransferAmount (#1794)
Variable CatRise._transferBothExcluded(address,address,uint256).rTransferAmount (#1831) is too similar to CatRise._transferToExcluded(address,address,uint256).tTransferAmount (#1763)
Variable CatRise._transferToExcluded(address,address,uint256).rTransferAmount (#1769) is too similar to CatRise._transferBothExcluded(address,address,uint256).tTransferAmount (#1825)
Variable CatRise._transferBothExcluded(address,address,uint256).rTransferAmount (#1831) is too similar to CatRise._getTValues(uint256).tTransferAmount (#1383)
Variable CatRise._getRValues(uint256,uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1411-1415) is too similar to CatRise._transferBothExcluded(address,address,uint256).tTransferAmount (#1825)
Variable CatRise._transferStandard(address,address,uint256).rTransferAmount (#1738) is too similar to CatRise._transferFromExcluded(address,address,uint256).tTransferAmount (#1794)
Variable CatRise._transferToExcluded(address,address,uint256).rTransferAmount (#1769) is too similar to CatRise._transferFromExcluded(address,address,uint256).tTransferAmount (#1794)
Variable CatRise._transferStandard(address,address,uint256).rTransferAmount (#1738) is too similar to CatRise._getTValues(uint256).tTransferAmount (#1383)
Variable CatRise._transferBothExcluded(address,address,uint256).rTransferAmount (#1831) is too similar to CatRise._transferBothExcluded(address,address,uint256).tTransferAmount (#1825)
Variable CatRise._transferFromExcluded(address,address,uint256).rTransferAmount (#1800) is too similar to CatRise._transferBothExcluded(address,address,uint256).tTransferAmount (#1825)
Variable CatRise._transferToExcluded(address,address,uint256).rTransferAmount (#1769) is too similar to CatRise._getTValues(uint256).tTransferAmount (#1383)
Variable CatRise._transferFromExcluded(address,address,uint256).rTransferAmount (#1800) is too similar to CatRise._transferFromExcluded(address,address,uint256).tTransferAmount (#1794)
Variable CatRise._getRValues(uint256,uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1411-1415) is too similar to CatRise._transferFromExcluded(address,address,uint256).tTransferAmount (#1794)
Variable CatRise._transferStandard(address,address,uint256).rTransferAmount (#1738) is too similar to CatRise._transferStandard(address,address,uint256).tTransferAmount (#1732)
Variable CatRise._transferFromExcluded(address,address,uint256).rTransferAmount (#1800) is too similar to CatRise._transferStandard(address,address,uint256).tTransferAmount (#1732)
Variable CatRise._transferToExcluded(address,address,uint256).rTransferAmount (#1769) is too similar to CatRise._transferStandard(address,address,uint256).tTransferAmount (#1732)
Variable CatRise._getRValues(uint256,uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1411-1415) is too similar to CatRise._transferStandard(address,address,uint256).tTransferAmount (#1732)
Variable CatRise._transferStandard(address,address,uint256).rTransferAmount (#1738) is too similar to CatRise._transferToExcluded(address,address,uint256).tTransferAmount (#1763)
Variable CatRise._transferFromExcluded(address,address,uint256).rTransferAmount (#1800) is too similar to CatRise._transferToExcluded(address,address,uint256).tTransferAmount (#1763)
Variable CatRise._transferFromExcluded(address,address,uint256).rTransferAmount (#1800) is too similar to CatRise._getTValues(uint256).tTransferAmount (#1383)
Variable CatRise.reflectionFromToken(uint256,bool).rTransferAmount (#1205) is too similar to CatRise._transferBothExcluded(address,address,uint256).tTransferAmount (#1825)
Variable CatRise._getRValues(uint256,uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1411-1415) is too similar to CatRise._transferToExcluded(address,address,uint256).tTransferAmount (#1763)
Variable CatRise._getRValues(uint256,uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1411-1415) is too similar to CatRise._getTValues(uint256).tTransferAmount (#1383)
Variable CatRise._transferToExcluded(address,address,uint256).rTransferAmount (#1769) is too similar to CatRise._transferToExcluded(address,address,uint256).tTransferAmount (#1763)
Variable CatRise.reflectionFromToken(uint256,bool).rTransferAmount (#1205) is too similar to CatRise._transferFromExcluded(address,address,uint256).tTransferAmount (#1794)
Variable CatRise.reflectionFromToken(uint256,bool).rTransferAmount (#1205) is too similar to CatRise._transferStandard(address,address,uint256).tTransferAmount (#1732)
Variable CatRise.reflectionFromToken(uint256,bool).rTransferAmount (#1205) is too similar to CatRise._transferToExcluded(address,address,uint256).tTransferAmount (#1763)
Variable CatRise.reflectionFromToken(uint256,bool).rTransferAmount (#1205) is too similar to CatRise._getTValues(uint256).tTransferAmount (#1383)
Prevent variables from having similar names.

Additional information: link

CatRise.slitherConstructorVariables() (#918-1860) uses literals with too many digits:
- _tTotal = 1000000000000 * 10 ** 9 (#934)
CatRise.slitherConstructorVariables() (#918-1860) uses literals with too many digits:
- fixedBurnAddress = 0x000000000000000000000000000000000000dEaD (#944-945)
CatRise.slitherConstructorVariables() (#918-1860) uses literals with too many digits:
- _maxTxAmount = 25000000000 * 10 ** 9 (#987)
CatRise.slitherConstructorVariables() (#918-1860) uses literals with too many digits:
- _maxWalletSize = 50000000000 * 10 ** 9 (#989)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

CatRise._decimals (#951) should be constant
CatRise._name (#949) should be constant
CatRise._symbol (#950) should be constant
CatRise.burnDeductSupply (#947) should be constant
CatRise.fixedBurnAddress (#944-945) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

CatRise.swapAndLiquify(uint256) (#1617-1660) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - (buyFee.liquidity + sellFee.liquidity)) (#1634-1635)
-bnbToAddLiquidityWith = unitBalance * (buyFee.liquidity + sellFee.liquidity) (#1636-1637)
CatRise.swapAndLiquify(uint256) (#1617-1660) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - (buyFee.liquidity + sellFee.liquidity)) (#1634-1635)
-marketingAmt = unitBalance * 2 * (buyFee.marketing + sellFee.marketing) (#1645-1647)
CatRise.swapAndLiquify(uint256) (#1617-1660) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - (buyFee.liquidity + sellFee.liquidity)) (#1634-1635)
-unitBalance * 2 * (buyFee.dev + sellFee.dev) > address(this).balance (#1648-1651)
CatRise.swapAndLiquify(uint256) (#1617-1660) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - (buyFee.liquidity + sellFee.liquidity)) (#1634-1635)
-devAmt = unitBalance * 2 * (buyFee.dev + sellFee.dev) (#1648-1651)
Consider ordering multiplication before division.

Additional information: link

CatRise.addLiquidity(uint256,uint256) (#1680-1693) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityReceiver),block.timestamp) (#1685-1692)
Ensure that all the return values of the function calls are used.

Additional information: link

CatRise.allowance(address,address).owner (#1080) shadows:
- Ownable.owner() (#502-504) (function)
CatRise._approve(address,address,uint256).owner (#1543) shadows:
- Ownable.owner() (#502-504) (function)
Rename the local variables that shadow another component.

Additional information: link

CatRise.setNumTokensSellToAddToLiquidity(uint256) (#1339-1341) should emit an event for:
- numTokensSellToAddToLiquidity = numTokens (#1340)
CatRise.setMaxTxPercent(uint256) (#1343-1345) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 3) (#1344)
CatRise._setMaxWalletSizePercent(uint256) (#1347-1352) should emit an event for:
- _maxWalletSize = _tTotal.mul(maxWalletSize).div(10 ** 3) (#1351)
Emit an event for critical parameter changes.

Additional information: link

CatRise.updateMarketingWallet(address).newAddress (#1235) lacks a zero-check on :
- marketingAddress = newAddress (#1236)
CatRise.updateDevWallet(address).newAddress (#1239) lacks a zero-check on :
- devWallet = newAddress (#1240)
CatRise.updateLiquidityWallet(address).newAddress (#1243) lacks a zero-check on :
- liquidityReceiver = newAddress (#1244)
CatRise.withdrawStuckETH(address,uint256).recipient (#1851) lacks a zero-check on :
- address(recipient).transfer(amount) (#1852)
Check that the address is not zero.

Additional information: link

Reentrancy in CatRise._transfer(address,address,uint256) (#1554-1615):
External calls:
- swapAndLiquify(contractTokenBalance) (#1583)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityReceiver),block.timestamp) (#1685-1692)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1671-1677)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1583)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityReceiver),block.timestamp) (#1685-1692)
- address(marketingAddress).transfer(marketingAmt) (#1654)
- devWallet.transfer(devAmt) (#1658)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1614)
- _burnFee = sellFee.burn (#1530)
- _burnFee = 0 (#1506)
- _burnFee = buyFee.burn (#1522)
- _tokenTransfer(from,to,amount,takeFee) (#1614)
- _devFee = sellFee.dev (#1531)
- _devFee = 0 (#1507)
- _devFee = buyFee.dev (#1523)
- _tokenTransfer(from,to,amount,takeFee) (#1614)
- _liquidityFee = 0 (#1504)
- _liquidityFee = buyFee.liquidity (#1520)
- _liquidityFee = sellFee.liquidity (#1528)
- _tokenTransfer(from,to,amount,takeFee) (#1614)
- _marketingFee = 0 (#1505)
- _marketingFee = buyFee.marketing (#1521)
- _marketingFee = sellFee.marketing (#1529)
- _tokenTransfer(from,to,amount,takeFee) (#1614)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1364)
- _tokenTransfer(from,to,amount,takeFee) (#1614)
- _taxFee = buyFee.tax (#1519)
- _taxFee = sellFee.tax (#1527)
- _taxFee = 0 (#1503)
Reentrancy in CatRise.constructor() (#1008-1048):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1027-1028)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#1034)
- _isExcludedFromFee[address(this)] = true (#1035)
- _isExcludedFromFee[marketingAddress] = true (#1036)
- _isExcludedFromFee[devWallet] = true (#1037)
- _isExcludedFromFee[liquidityReceiver] = true (#1038)
- _isExcludedFromLimit[marketingAddress] = true (#1041)
- _isExcludedFromLimit[marketingAddress] = true (#1042)
- _isExcludedFromLimit[devWallet] = true (#1043)
- _isExcludedFromLimit[owner()] = true (#1044)
- _isExcludedFromLimit[address(this)] = true (#1045)
- uniswapV2Router = _uniswapV2Router (#1031)
Reentrancy in CatRise.swapAndLiquify(uint256) (#1617-1660):
External calls:
- swapTokensForEth(toSwap) (#1631)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1671-1677)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#1641)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityReceiver),block.timestamp) (#1685-1692)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#1641)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityReceiver),block.timestamp) (#1685-1692)
State variables written after the call(s):
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#1641)
- _allowances[owner][spender] = amount (#1550)
Reentrancy in CatRise.transferFrom(address,address,uint256) (#1098-1113):
External calls:
- _transfer(sender,recipient,amount) (#1103)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityReceiver),block.timestamp) (#1685-1692)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1671-1677)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1103)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityReceiver),block.timestamp) (#1685-1692)
- address(marketingAddress).transfer(marketingAmt) (#1654)
- devWallet.transfer(devAmt) (#1658)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1104-1111)
- _allowances[owner][spender] = amount (#1550)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in CatRise._transfer(address,address,uint256) (#1554-1615):
External calls:
- swapAndLiquify(contractTokenBalance) (#1583)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityReceiver),block.timestamp) (#1685-1692)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1671-1677)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1583)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityReceiver),block.timestamp) (#1685-1692)
- address(marketingAddress).transfer(marketingAmt) (#1654)
- devWallet.transfer(devAmt) (#1658)
Event emitted after the call(s):
- Transfer(address(this),address(0),tburn) (#1458)
- _tokenTransfer(from,to,amount,takeFee) (#1614)
- Transfer(sender,recipient,tTransferAmount) (#1753)
- _tokenTransfer(from,to,amount,takeFee) (#1614)
- Transfer(sender,recipient,tTransferAmount) (#1785)
- _tokenTransfer(from,to,amount,takeFee) (#1614)
- Transfer(sender,recipient,tTransferAmount) (#1816)
- _tokenTransfer(from,to,amount,takeFee) (#1614)
- Transfer(sender,recipient,tTransferAmount) (#1848)
- _tokenTransfer(from,to,amount,takeFee) (#1614)
Reentrancy in CatRise.constructor() (#1008-1048):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1027-1028)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#1047)
Reentrancy in CatRise.swapAndLiquify(uint256) (#1617-1660):
External calls:
- swapTokensForEth(toSwap) (#1631)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1671-1677)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#1641)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityReceiver),block.timestamp) (#1685-1692)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#1641)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityReceiver),block.timestamp) (#1685-1692)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1551)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#1641)
Reentrancy in CatRise.transferFrom(address,address,uint256) (#1098-1113):
External calls:
- _transfer(sender,recipient,amount) (#1103)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityReceiver),block.timestamp) (#1685-1692)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1671-1677)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1103)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityReceiver),block.timestamp) (#1685-1692)
- address(marketingAddress).transfer(marketingAmt) (#1654)
- devWallet.transfer(devAmt) (#1658)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1551)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1104-1111)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#552-561) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until a later date) (#557)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#311-322) uses assembly
- INLINE ASM (#318-320)
Address._functionCallWithValue(address,bytes,uint256,string) (#437-465) uses assembly
- INLINE ASM (#457-460)
Do not use evm assembly.

Additional information: link

CatRise.includeInReward(address) (#1256-1267) has costly operations inside a loop:
- _excluded.pop() (#1263)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#437-465) is never used and should be removed
Address.functionCall(address,bytes) (#372-377) is never used and should be removed
Address.functionCall(address,bytes,string) (#385-391) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#404-416) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#424-435) is never used and should be removed
Address.isContract(address) (#311-322) is never used and should be removed
Address.sendValue(address,uint256) (#340-352) is never used and should be removed
Context._msgData() (#284-287) is never used and should be removed
SafeMath.mod(uint256,uint256) (#253-255) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#269-276) is never used and should be removed
Remove unused functions.

Additional information: link

CatRise._rTotal (#935) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
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.8.10 (#26) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.10 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 Address.sendValue(address,uint256) (#340-352):
- (success) = recipient.call{value: amount}() (#347)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#437-465):
- (success,returndata) = target.call{value: weiValue}(data) (#446-448)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#631) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#633) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#664) is not in mixedCase
Function IUniswapV2Router01.WETH() (#712) is not in mixedCase
Event CatRisebotAddedToBlacklist(address) (#991) is not in CapWords
Event CatRisebotRemovedFromBlacklist(address) (#992) is not in CapWords
Parameter CatRise.setBothFees(uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16).buy_tax (#1314) is not in mixedCase
Parameter CatRise.setBothFees(uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16).buy_liquidity (#1315) is not in mixedCase
Parameter CatRise.setBothFees(uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16).buy_marketing (#1316) is not in mixedCase
Parameter CatRise.setBothFees(uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16).buy_dev (#1317) is not in mixedCase
Parameter CatRise.setBothFees(uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16).buy_burn (#1318) is not in mixedCase
Parameter CatRise.setBothFees(uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16).sell_tax (#1319) is not in mixedCase
Parameter CatRise.setBothFees(uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16).sell_liquidity (#1320) is not in mixedCase
Parameter CatRise.setBothFees(uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16).sell_marketing (#1321) is not in mixedCase
Parameter CatRise.setBothFees(uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16).sell_dev (#1322) is not in mixedCase
Parameter CatRise.setBothFees(uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16).sell_burn (#1323) is not in mixedCase
Function CatRise._setMaxWalletSizePercent(uint256) (#1347-1352) is not in mixedCase
Parameter CatRise.setSwapAndLiquifyEnabled(bool)._enabled (#1354) is not in mixedCase
Parameter CatRise.calculateTaxFee(uint256)._amount (#1470) is not in mixedCase
Parameter CatRise.calculateLiquidityFee(uint256)._amount (#1474) is not in mixedCase
Parameter CatRise.calculateMarketingFee(uint256)._amount (#1482) is not in mixedCase
Parameter CatRise.calculateburnFee(uint256)._amount (#1490) is not in mixedCase
Parameter CatRise.calculatedevFee(uint256)._amount (#1498) is not in mixedCase
Variable CatRise._maxTxAmount (#987) is not in mixedCase
Variable CatRise._maxWalletSize (#989) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Holders:


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.

Contract has 8% buy tax and 10% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain


Token has only one trading pair


Twitter account has less than 100 followers


Telegram account has relatively few subscribers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find Twitter link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Token is not listed at Mobula.Finance

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 no active CoinMarketCap listing / rank


Token is marked as risky (blacklisted creator, fake name, dead project, etc.)

Additional information: link

Price for CRISE

News for CRISE