CyborgDoge Token Logo

DogeBorg [CyborgDoge] Token

About DogeBorg

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 CyborgDoge._transfer(address,address,uint256) (#981-1039):
External calls:
- swapAndLiquify(contractTokenBalance) (#1020)
- pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1218-1225)
- pcsV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1204-1210)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1020)
- pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1218-1225)
State variables written after the call(s):
- _transferStandard(sender,recipient,amount) (#1036)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1169)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1054)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1055)
- _transferStandard(sender,recipient,amount) (#1036)
- _rTotal = _rTotal.sub(rFee) (#1062)
Apply the check-effects-interactions pattern.

Additional information: link

CyborgDoge._excluded (#768) is never initialized. It is used in:
- CyborgDoge._getCurrentSupply() (#1151-1164)
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

CyborgDoge._getTValues(uint256) (#1108-1123) performs a multiplication on the result of a division:
-tLiquidity = tAmount.div(10 ** 2).mul(_liquidityFee).mul(multiplier) (#1119-1120)
Consider ordering multiplication before division.

Additional information: link

CyborgDoge.addLiquidity(uint256,uint256) (#1213-1226) ignores return value by pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1218-1225)
Ensure that all the return values of the function calls are used.

Additional information: link

CyborgDoge._approve(address,address,uint256).owner (#955) shadows:
- Ownable.owner() (#357-359) (function)
Rename the local variables that shadow another component.

Additional information: link

Reentrancy in CyborgDoge.transferFrom(address,address,uint256) (#868-883):
External calls:
- _transfer(sender,recipient,amount) (#873)
- pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1218-1225)
- pcsV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1204-1210)
External calls sending eth:
- _transfer(sender,recipient,amount) (#873)
- pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1218-1225)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#874-881)
- _allowances[owner][spender] = amount (#962)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in CyborgDoge.transferFrom(address,address,uint256) (#868-883):
External calls:
- _transfer(sender,recipient,amount) (#873)
- pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1218-1225)
- pcsV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1204-1210)
External calls sending eth:
- _transfer(sender,recipient,amount) (#873)
- pcsV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1218-1225)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#963)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#874-881)
Apply the check-effects-interactions pattern.

Additional information: link

CyborgDoge._getAntiDumpMultiplier() (#1092-1106) uses timestamp for comparisons
Dangerous comparisons:
- time_since_start < 12 * hour (#1095)
- time_since_start < 24 * hour (#1097)
- time_since_start < 72 * hour (#1099)
- time_since_start < 168 * hour (#1101)
Avoid relying on block.timestamp.

Additional information: link

Different versions of Solidity is used:
- Version used: ['>=0.5.0', '>=0.6.2', '^0.6.12']
- ^0.6.12 (#36)
- >=0.6.2 (#402)
- >=0.6.2 (#565)
- >=0.5.0 (#614)
- >=0.5.0 (#648)
Use one Solidity version.

Additional information: link

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

Additional information: link

CyborgDoge._previousLiquidityFee (#778) 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

Pragma version>=0.5.0 (#648) 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

Variable CyborgDoge._start_timestamp (#789) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#159)" inContext (#149-162)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable CyborgDoge._getValues(uint256).rTransferAmount (#1080) is too similar to CyborgDoge._getValues(uint256).tTransferAmount (#1078)
Prevent variables from having similar names.

Additional information: link

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

Additional information: link

reflectionFromToken(uint256,bool) should be declared external:
- CyborgDoge.reflectionFromToken(uint256,bool) (#926-939)
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 DogeBorg