CatDad Token Logo

CATDAD Token

About CATDAD

Listings

Not Found
Token 2 years

Cat Dad is a stealth launched and low tax community driven token. Liquidity is locked, burned and ownership renounced.

No rug pull or honey pot in this community. Community is ready for take off

Social

Laser Scorebeta Last Audit: 30 November 2021

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

Anti-Scam

Links

CatDad.swapAndLiquify(uint256) (#1078-1117) sends eth to arbitrary user
Dangerous calls:
- _marketingWallet.transfer(marketingBNB) (#1115)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in CatDad._transfer(address,address,uint256) (#1025-1074):
External calls:
- swapAndLiquify(contractTokenBalance) (#1061)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1147-1154)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1133-1139)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1061)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1147-1154)
- _marketingWallet.transfer(marketingBNB) (#1115)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1073)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#981)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1180)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1189)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1200)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#897)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1181)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1191)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1201)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#899)
- _tokenTransfer(from,to,amount,takeFee) (#1073)
- _rTotal = _rTotal.sub(rFee) (#936)
- _tokenTransfer(from,to,amount,takeFee) (#1073)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#983)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1199)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#896)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1190)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#898)
Apply the check-effects-interactions pattern.

Additional information: link


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


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.

CatDad.addLiquidity(uint256,uint256) (#1142-1155) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1147-1154)
Ensure that all the return values of the function calls are used.

Additional information: link

CatDad._approve(address,address,uint256).owner (#1017) shadows:
- Ownable.owner() (#428-430) (function)
Rename the local variables that shadow another component.

Additional information: link

CatDad.setMaxTxPercent(uint256) (#921-925) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#922-924)
Emit an event for critical parameter changes.

Additional information: link

CatDad.constructor(address).marketingWallet (#753) lacks a zero-check on :
- _marketingWallet = address(marketingWallet) (#755)
Check that the address is not zero.

Additional information: link

Reentrancy in CatDad.transferFrom(address,address,uint256) (#822-826):
External calls:
- _transfer(sender,recipient,amount) (#823)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1147-1154)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1133-1139)
External calls sending eth:
- _transfer(sender,recipient,amount) (#823)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1147-1154)
- _marketingWallet.transfer(marketingBNB) (#1115)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#824)
- _allowances[owner][spender] = amount (#1021)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in CatDad.transferFrom(address,address,uint256) (#822-826):
External calls:
- _transfer(sender,recipient,amount) (#823)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1147-1154)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1133-1139)
External calls sending eth:
- _transfer(sender,recipient,amount) (#823)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1147-1154)
- _marketingWallet.transfer(marketingBNB) (#1115)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1022)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#824)
Apply the check-effects-interactions pattern.

Additional information: link

CatDad._transfer(address,address,uint256) (#1025-1074) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(buycooldown[to] < block.timestamp) (#1037)
Avoid relying on block.timestamp.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#373-394) uses assembly
- INLINE ASM (#386-389)
Do not use evm assembly.

Additional information: link

SafeMath.mod(uint256,uint256,string) (#241-244) is never used and should be removed
Remove unused functions.

Additional information: link

CatDad._previousLiquidityFee (#724) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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

solc-0.8.7 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._functionCallWithValue(address,bytes,uint256,string) (#373-394):
- (success,returndata) = target.call{value: weiValue}(data) (#377)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable CatDad._maxTxAmount (#733) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#253)" inContext (#247-256)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in CatDad.transferFrom(address,address,uint256) (#822-826):
External calls:
- _transfer(sender,recipient,amount) (#823)
- _marketingWallet.transfer(marketingBNB) (#1115)
External calls sending eth:
- _transfer(sender,recipient,amount) (#823)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1147-1154)
- _marketingWallet.transfer(marketingBNB) (#1115)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#824)
- _allowances[owner][spender] = amount (#1021)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1022)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#824)
Apply the check-effects-interactions pattern.

Additional information: link

Variable CatDad._getValues(uint256).rTransferAmount (#942) is too similar to CatDad._transferFromExcluded(address,address,uint256).tTransferAmount (#1198)
Prevent variables from having similar names.

Additional information: link

CatDad.initialsupply (#715) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

isExcludedFromFee(address) should be declared external:
- CatDad.isExcludedFromFee(address) (#1013-1015)
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.


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


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.


Twitter account link seems to be invalid


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 verify that token and website are owned by the same team (no listings + unable to find contract on website)


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 token on CoinHunt

Additional information: link


Unable to find code repository for the project


Young tokens have high risks of 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

Price for CATDAD