CBN Token Logo

CBN Token

About CBN

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 CarbonNeutralityToken._transfer(address,address,uint256) (#1015-1059):
External calls:
- swapAndLiquify(contractTokenBalance) (#1046)
- usdt.approve(address(uniswapV2Router),usdtAmount) (#1125)
- uniswapV2Router.addLiquidity(address(this),address(usdt),tokenAmount,usdtAmount,0,0,blackHole,block.timestamp) (#1127-1136)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(wrap),block.timestamp) (#1093-1099)
- wrap.withdraw() (#1101)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1058)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#971)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1186)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1177)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#881)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1178)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1197)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1188)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1198)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#883)
- _tokenTransfer(from,to,amount,takeFee) (#1058)
- _rTotal = _rTotal.sub(rFee) (#926)
- _tokenTransfer(from,to,amount,takeFee) (#1058)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#973)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1196)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#880)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1187)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#882)
Apply the check-effects-interactions pattern.

Additional information: link

CarbonNeutralityToken.addLiquidity(uint256,uint256) (#1139-1152) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1144-1151)
Ensure that all the return values of the function calls are used.

Additional information: link

CarbonNeutralityToken._approve(address,address,uint256).owner (#1007) shadows:
- Ownable.owner() (#420-422) (function)
Rename the local variables that shadow another component.

Additional information: link

CarbonNeutralityToken.setMaxTxPercent(uint256) (#905-909) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#906-908)
Emit an event for critical parameter changes.

Additional information: link

CarbonNeutralityToken.setBlackHole(address)._blackHole (#916) lacks a zero-check on :
- blackHole = _blackHole (#918)
Check that the address is not zero.

Additional information: link

Reentrancy in CarbonNeutralityToken.transferFrom(address,address,uint256) (#805-809):
External calls:
- _transfer(sender,recipient,amount) (#806)
- usdt.approve(address(uniswapV2Router),usdtAmount) (#1125)
- uniswapV2Router.addLiquidity(address(this),address(usdt),tokenAmount,usdtAmount,0,0,blackHole,block.timestamp) (#1127-1136)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(wrap),block.timestamp) (#1093-1099)
- wrap.withdraw() (#1101)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#807)
- _allowances[owner][spender] = amount (#1011)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in CarbonNeutralityToken.transferFrom(address,address,uint256) (#805-809):
External calls:
- _transfer(sender,recipient,amount) (#806)
- usdt.approve(address(uniswapV2Router),usdtAmount) (#1125)
- uniswapV2Router.addLiquidity(address(this),address(usdt),tokenAmount,usdtAmount,0,0,blackHole,block.timestamp) (#1127-1136)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(wrap),block.timestamp) (#1093-1099)
- wrap.withdraw() (#1101)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1012)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#807)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#365-386) uses assembly
- INLINE ASM (#378-381)
Do not use evm assembly.

Additional information: link

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

Additional information: link

CarbonNeutralityToken._previousLiquidityFee (#719) 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

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

Additional information: link

Variable CarbonNeutralityToken._maxTxAmount (#727) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#245)" inContext (#239-248)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable CarbonNeutralityToken._transferStandard(address,address,uint256).rTransferAmount (#1176) is too similar to CarbonNeutralityToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1195)
Prevent variables from having similar names.

Additional information: link

CarbonNeutralityToken.slitherConstructorVariables() (#692-1205) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 200000 * 10 ** 6 * 10 ** 9 (#728)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

CarbonNeutralityToken.numTokensSellToAddToLiquidity (#728) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

isExcludedFromFee(address) should be declared external:
- CarbonNeutralityToken.isExcludedFromFee(address) (#1003-1005)
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.


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


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 CBN