CopyDoge Coin Token Logo

CopyDoge [CopyDoge Coin] Token

About CopyDoge

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 30 November 2021

report
Token seems to be anonymous. As long as we are unable to find website score is limited.


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

Reentrancy in CoinToken._transfer(address,address,uint256) (#1035-1079):
External calls:
- swapAndLiquify(contractTokenBalance) (#1066)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1127-1134)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1113-1119)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1066)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1127-1134)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1078)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#964)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1169)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1160)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#878)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1161)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1180)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1181)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1171)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#880)
- _tokenTransfer(from,to,amount,takeFee) (#1078)
- _rTotal = _rTotal.sub(rFee) (#919)
- _tokenTransfer(from,to,amount,takeFee) (#1078)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#966)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1179)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#877)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1170)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#879)
Apply the check-effects-interactions pattern.

Additional information: link

CoinToken.sweepToken(address,address,uint256) (#983-994) ignores return value by IERC20(token_).transfer(to_,amount_) (#993)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


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.

CoinToken.addLiquidity(uint256,uint256) (#1122-1135) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1127-1134)
Ensure that all the return values of the function calls are used.

Additional information: link

CoinToken._approve(address,address,uint256).owner (#1027) shadows:
- Ownable.owner() (#408-410) (function)
Rename the local variables that shadow another component.

Additional information: link

CoinToken.setMaxTxPercent(uint256) (#906-908) should emit an event for:
- _maxTxAmount = maxTxPercent * 10 ** _decimals (#907)
Emit an event for critical parameter changes.

Additional information: link

CoinToken.constructor().tokenOwner (#739) lacks a zero-check on :
- _owner = tokenOwner (#763)
Check that the address is not zero.

Additional information: link

Reentrancy in CoinToken.transferFrom(address,address,uint256) (#803-807):
External calls:
- _transfer(sender,recipient,amount) (#804)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1127-1134)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1113-1119)
External calls sending eth:
- _transfer(sender,recipient,amount) (#804)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1127-1134)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#805)
- _allowances[owner][spender] = amount (#1031)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in CoinToken.transferFrom(address,address,uint256) (#803-807):
External calls:
- _transfer(sender,recipient,amount) (#804)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1127-1134)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1113-1119)
External calls sending eth:
- _transfer(sender,recipient,amount) (#804)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1127-1134)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1032)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#805)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#361-382) uses assembly
- INLINE ASM (#374-377)
Do not use evm assembly.

Additional information: link

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

Additional information: link

solc-0.8.4 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#361-382):
- (success,returndata) = target.call{value: weiValue}(data) (#365)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable CoinToken._maxTxAmount (#711) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable CoinToken._transferBothExcluded(address,address,uint256).rTransferAmount (#876) is too similar to CoinToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1178)
Prevent variables from having similar names.

Additional information: link

CoinToken.constructor() (#728-765) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 210000000000000000000000 (#737)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

CoinToken._symbol (#696) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

isExcludedFromFee(address) should be declared external:
- CoinToken.isExcludedFromFee(address) (#1023-1025)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute volume.


Unable to find PancakeSwap trading pair to compute number of swaps.


Unable to find Telegram and Twitter accounts


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


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for CopyDoge