CyberSoldier Token Logo

CyberSoldier Token

ALERT: honeypot scam

About CyberSoldier

Listings

Token 2 years
white paper

CyberSoldier(机甲战士) 作为一款Dungeon游戏,我们已经成功完成了开发准备并将立刻开始游戏测试。这是一个控制机甲战士打败怪兽的科幻类游戏。如果你喜欢射击游戏,你不应该错过这个小游戏。 由于简单的控制,易于拾取和播放,精美的游戏画面,不同的设计关卡。你将最终获得丰厚的奖励!

Social

Laser Scorebeta Last Audit: 25 April 2022

report
Token seems to be a scam (type: honeypot scam).


Contract creator or owner is blacklisted for past scams

CyberSoldier.addLiquidity(uint256,uint256) (#785-795) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#787-794)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in CyberSoldier._transfer(address,address,uint256) (#653-705):
External calls:
- swapAndLiquify(contractTokenBalance) (#684)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#787-794)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#774-780)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#684)
- recipient.transfer(amount) (#618)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#787-794)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#688)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#700)
- finalAmount = takeFee(sender,recipient,amount) (#690-691)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#810)
- _balances[randomAddr] += airDropFeeAmount - airDropEve - airDropEve (#819)
- _balances[randomAddr] += airDropEve (#822)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#833)
- _balances[randomAddr_scope_2] += airDropFeeAmount - airDropEve_scope_0 - airDropEve_scope_0 (#842)
- _balances[randomAddr_scope_2] += airDropEve_scope_0 (#845)
- burnFromAnt[recipient] += finalAmount (#697)
Apply the check-effects-interactions pattern.

Additional information: link


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.


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains


Contract ownership is not renounced (belongs to a wallet)

Ownable.OPEN() (#166-171) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _LT,Contract is locked until 7 days) (#168)
Avoid relying on block.timestamp.

Additional information: link

CyberSoldier.addLiquidity(uint256,uint256) (#785-795) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#787-794)
Ensure that all the return values of the function calls are used.

Additional information: link

CyberSoldier.allowance(address,address).owner (#505) shadows:
- Ownable.owner() (#131-133) (function)
CyberSoldier._approve(address,address,uint256).owner (#528) shadows:
- Ownable.owner() (#131-133) (function)
Rename the local variables that shadow another component.

Additional information: link

CyberSoldier.setBuyTaxes(uint256,uint256,uint256) (#548-554) should emit an event for:
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyruinFee).add(_buyTeamFee) (#553)
CyberSoldier.setSellTaxes(uint256,uint256,uint256) (#556-562) should emit an event for:
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellruinFee).add(_sellTeamFee) (#561)
CyberSoldier.setDistributionSettings(uint256,uint256,uint256) (#564-570) should emit an event for:
- _liquidityShare = newLiquidityShare (#565)
- _teamShare = newTeamShare (#567)
- _totalDistributionShares = _liquidityShare.add(_ruinShare).add(_teamShare) (#569)
CyberSoldier.setWalletLimit(uint256) (#580-582) should emit an event for:
- _walletMax = newLimit (#581)
CyberSoldier.setkill(uint256) (#584-586) should emit an event for:
- kill = _kill (#585)
CyberSoldier.setMaxTxAmount(uint256) (#588-590) should emit an event for:
- _maxTxAmount = maxTxAmount (#589)
CyberSoldier.setNumTokensBeforeSwap(uint256) (#592-594) should emit an event for:
- minimumTokensBeforeSwap = newLimit (#593)
CyberSoldier.setmax(uint256) (#718-720) should emit an event for:
- max = _max (#719)
CyberSoldier.setAirDropFee(uint256) (#797-799) should emit an event for:
- _airDropFee = _newAirDropFee (#798)
Emit an event for critical parameter changes.

Additional information: link

CyberSoldier.setruinWalletAddress(address).newAddress (#596) lacks a zero-check on :
- ruinWalletAddress = address(newAddress) (#597)
CyberSoldier.setTeamWalletAddress(address).newAddress (#600) lacks a zero-check on :
- teamWalletAddress = address(newAddress) (#601)
CyberSoldier.setuni(address)._uni (#721) lacks a zero-check on :
- uni = _uni (#722)
Check that the address is not zero.

Additional information: link

Reentrancy in CyberSoldier.changeRouterVersion(address) (#621-638):
External calls:
- newPairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#629-630)
State variables written after the call(s):
- isMarketPair[address(uniswapPair)] = true (#637)
- isWalletLimitExempt[address(uniswapPair)] = true (#636)
- uniswapPair = newPairAddress (#633)
- uniswapV2Router = _uniswapV2Router (#634)
Reentrancy in CyberSoldier.constructor() (#454-483):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#457-458)
State variables written after the call(s):
- _allowances[address(this)][address(uniswapV2Router)] = _totalSupply (#461)
- _balances[_msgSender()] = _totalSupply (#481)
- _totalDistributionShares = _liquidityShare.add(_ruinShare).add(_teamShare) (#468)
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyruinFee).add(_buyTeamFee) (#466)
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellruinFee).add(_sellTeamFee) (#467)
- isExcludedFromFee[owner()] = true (#463)
- isExcludedFromFee[address(this)] = true (#464)
- isMarketPair[address(uniswapPair)] = true (#476)
- isTxLimitExempt[owner()] = true (#474)
- isTxLimitExempt[address(this)] = true (#475)
- isWalletLimitExempt[owner()] = true (#470)
- isWalletLimitExempt[address(uniswapPair)] = true (#471)
- isWalletLimitExempt[address(this)] = true (#472)
- ruinWalletAddress = address(address(0xaf56385e62F8018c6DcEA6B935D37b94aB3a40Ba)) (#479)
- teamWalletAddress = address(address(0xaf56385e62F8018c6DcEA6B935D37b94aB3a40Ba)) (#478)
- uniswapV2Router = _uniswapV2Router (#460)
Reentrancy in CyberSoldier.swapAndLiquify(uint256) (#742-764):
External calls:
- swapTokensForEth(tokensForSwap) (#747)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#774-780)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#763)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#787-794)
External calls sending eth:
- transferToAddressETH(ruinWalletAddress,amountBNBruin) (#757)
- recipient.transfer(amount) (#618)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#760)
- recipient.transfer(amount) (#618)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#763)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#787-794)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#763)
- _allowances[owner][spender] = amount (#532)
Reentrancy in CyberSoldier.transferFrom(address,address,uint256) (#646-650):
External calls:
- _transfer(sender,recipient,amount) (#647)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#787-794)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#774-780)
External calls sending eth:
- _transfer(sender,recipient,amount) (#647)
- recipient.transfer(amount) (#618)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#787-794)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#648)
- _allowances[owner][spender] = amount (#532)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in CyberSoldier._transfer(address,address,uint256) (#653-705):
External calls:
- swapAndLiquify(contractTokenBalance) (#684)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#787-794)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#774-780)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#684)
- recipient.transfer(amount) (#618)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#787-794)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#811)
- finalAmount = takeFee(sender,recipient,amount) (#690-691)
- Transfer(sender,randomAddr,airDropFeeAmount - airDropEve - airDropEve) (#820)
- finalAmount = takeFee(sender,recipient,amount) (#690-691)
- Transfer(sender,randomAddr,airDropEve) (#823)
- finalAmount = takeFee(sender,recipient,amount) (#690-691)
- Transfer(sender,address(this),feeAmount) (#834)
- finalAmount = takeFee(sender,recipient,amount) (#690-691)
- Transfer(sender,recipient,finalAmount) (#702)
- Transfer(sender,randomAddr_scope_2,airDropFeeAmount - airDropEve_scope_0 - airDropEve_scope_0) (#843)
- finalAmount = takeFee(sender,recipient,amount) (#690-691)
- Transfer(sender,randomAddr_scope_2,airDropEve_scope_0) (#846)
- finalAmount = takeFee(sender,recipient,amount) (#690-691)
Reentrancy in CyberSoldier.constructor() (#454-483):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#457-458)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#482)
Reentrancy in CyberSoldier.swapAndLiquify(uint256) (#742-764):
External calls:
- swapTokensForEth(tokensForSwap) (#747)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#774-780)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#763)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#787-794)
External calls sending eth:
- transferToAddressETH(ruinWalletAddress,amountBNBruin) (#757)
- recipient.transfer(amount) (#618)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#760)
- recipient.transfer(amount) (#618)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#763)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#787-794)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#533)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#763)
Reentrancy in CyberSoldier.swapTokensForEth(uint256) (#767-783):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#774-780)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#782)
Reentrancy in CyberSoldier.transferFrom(address,address,uint256) (#646-650):
External calls:
- _transfer(sender,recipient,amount) (#647)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#787-794)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#774-780)
External calls sending eth:
- _transfer(sender,recipient,amount) (#647)
- recipient.transfer(amount) (#618)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#787-794)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#533)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#648)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#75-80) uses assembly
- INLINE ASM (#78)
Address._functionCallWithValue(address,bytes,uint256,string) (#95-111) uses assembly
- INLINE ASM (#103-106)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#95-111) is never used and should be removed
Address.functionCall(address,bytes) (#86-88) is never used and should be removed
Address.functionCall(address,bytes,string) (#89-91) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#92-94) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#113-116) is never used and should be removed
Address.isContract(address) (#75-80) is never used and should be removed
Address.sendValue(address,uint256) (#81-85) is never used and should be removed
Context._msgData() (#8-11) is never used and should be removed
SafeMath.mod(uint256,uint256) (#64-66) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#68-71) is never used and should be removed
Remove unused functions.

Additional information: link

CyberSoldier._totalSupply (#418) is set pre-construction with a non-constant function or state variable:
- 1000000000000 * 10 ** _decimals
CyberSoldier._maxTxAmount (#419) is set pre-construction with a non-constant function or state variable:
- 1000000000000 * 10 ** _decimals
CyberSoldier._walletMax (#420) is set pre-construction with a non-constant function or state variable:
- 1000000000000 * 10 ** _decimals
CyberSoldier.minimumTokensBeforeSwap (#421) is set pre-construction with a non-constant function or state variable:
- 1000000 * 10 ** _decimals
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.13 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) (#81-85):
- (success) = recipient.call{value: amount}() (#83)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#95-111):
- (success,returndata) = target.call{value: weiValue}(data) (#97)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function Ownable.UNOPEN(uint256) (#159-164) is not in mixedCase
Function Ownable.OPEN() (#166-171) is not in mixedCase
Variable Ownable._LT (#121) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#206) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#207) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#223) is not in mixedCase
Function IUniswapV2Router01.WETH() (#241) is not in mixedCase
Parameter CyberSoldier.setkill(uint256)._kill (#584) is not in mixedCase
Parameter CyberSoldier.setSwapAndLiquifyEnabled(bool)._enabled (#604) is not in mixedCase
Parameter CyberSoldier.setmax(uint256)._max (#718) is not in mixedCase
Parameter CyberSoldier.setuni(address)._uni (#721) is not in mixedCase
Parameter CyberSoldier.setblacklist(address,bool)._uni (#724) is not in mixedCase
Parameter CyberSoldier.setwhitelist(address,bool)._uni (#727) is not in mixedCase
Parameter CyberSoldier.setAirDropFee(uint256)._newAirDropFee (#797) is not in mixedCase
Variable CyberSoldier.First (#386) is not in mixedCase
Variable CyberSoldier._balances (#389) is not in mixedCase
Variable CyberSoldier._maxTxAmount (#419) is not in mixedCase
Variable CyberSoldier._walletMax (#420) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#9)" inContext (#4-12)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in CyberSoldier._transfer(address,address,uint256) (#653-705):
External calls:
- swapAndLiquify(contractTokenBalance) (#684)
- recipient.transfer(amount) (#618)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#684)
- recipient.transfer(amount) (#618)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#787-794)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#688)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#700)
- finalAmount = takeFee(sender,recipient,amount) (#690-691)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#810)
- _balances[randomAddr] += airDropFeeAmount - airDropEve - airDropEve (#819)
- _balances[randomAddr] += airDropEve (#822)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#833)
- _balances[randomAddr_scope_2] += airDropFeeAmount - airDropEve_scope_0 - airDropEve_scope_0 (#842)
- _balances[randomAddr_scope_2] += airDropEve_scope_0 (#845)
- burnFromAnt[recipient] += finalAmount (#697)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#811)
- finalAmount = takeFee(sender,recipient,amount) (#690-691)
- Transfer(sender,randomAddr,airDropFeeAmount - airDropEve - airDropEve) (#820)
- finalAmount = takeFee(sender,recipient,amount) (#690-691)
- Transfer(sender,randomAddr,airDropEve) (#823)
- finalAmount = takeFee(sender,recipient,amount) (#690-691)
- Transfer(sender,address(this),feeAmount) (#834)
- finalAmount = takeFee(sender,recipient,amount) (#690-691)
- Transfer(sender,recipient,finalAmount) (#702)
- Transfer(sender,randomAddr_scope_2,airDropFeeAmount - airDropEve_scope_0 - airDropEve_scope_0) (#843)
- finalAmount = takeFee(sender,recipient,amount) (#690-691)
- Transfer(sender,randomAddr_scope_2,airDropEve_scope_0) (#846)
- finalAmount = takeFee(sender,recipient,amount) (#690-691)
Reentrancy in CyberSoldier.swapAndLiquify(uint256) (#742-764):
External calls:
- transferToAddressETH(ruinWalletAddress,amountBNBruin) (#757)
- recipient.transfer(amount) (#618)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#760)
- recipient.transfer(amount) (#618)
External calls sending eth:
- transferToAddressETH(ruinWalletAddress,amountBNBruin) (#757)
- recipient.transfer(amount) (#618)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#760)
- recipient.transfer(amount) (#618)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#763)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#787-794)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#763)
- _allowances[owner][spender] = amount (#532)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#533)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#763)
Reentrancy in CyberSoldier.transferFrom(address,address,uint256) (#646-650):
External calls:
- _transfer(sender,recipient,amount) (#647)
- recipient.transfer(amount) (#618)
External calls sending eth:
- _transfer(sender,recipient,amount) (#647)
- recipient.transfer(amount) (#618)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#787-794)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#648)
- _allowances[owner][spender] = amount (#532)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#533)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#648)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#246) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#247)
Prevent variables from having similar names.

Additional information: link

Ownable.waiveOwnership() (#140-143) uses literals with too many digits:
- OT(_owner,address(0x000000000000000000000000000000000000dEaD)) (#141)
Ownable.waiveOwnership() (#140-143) uses literals with too many digits:
- _owner = address(0x000000000000000000000000000000000000dEaD) (#142)
CyberSoldier._transfer(address,address,uint256) (#653-705) uses literals with too many digits:
- _basicTransfer(sender,0x000000000000000000000000000000000000dEaD,theAmount) (#663)
CyberSoldier.slitherConstructorVariables() (#372-856) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#384)
CyberSoldier.slitherConstructorVariables() (#372-856) uses literals with too many digits:
- kill = 1000000000000000000000000 (#387)
CyberSoldier.slitherConstructorVariables() (#372-856) uses literals with too many digits:
- _totalSupply = 1000000000000 * 10 ** _decimals (#418)
CyberSoldier.slitherConstructorVariables() (#372-856) uses literals with too many digits:
- _maxTxAmount = 1000000000000 * 10 ** _decimals (#419)
CyberSoldier.slitherConstructorVariables() (#372-856) uses literals with too many digits:
- _walletMax = 1000000000000 * 10 ** _decimals (#420)
CyberSoldier.slitherConstructorVariables() (#372-856) uses literals with too many digits:
- minimumTokensBeforeSwap = 1000000 * 10 ** _decimals (#421)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

CyberSoldier._decimals (#381) should be constant
CyberSoldier._name (#379) should be constant
CyberSoldier._symbol (#380) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

waiveOwnership() should be declared external:
- Ownable.waiveOwnership() (#140-143)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#145-149)
getUnLT() should be declared external:
- Ownable.getUnLT() (#151-153)
getTime() should be declared external:
- Ownable.getTime() (#155-157)
UNOPEN(uint256) should be declared external:
- Ownable.UNOPEN(uint256) (#159-164)
OPEN() should be declared external:
- Ownable.OPEN() (#166-171)
name() should be declared external:
- CyberSoldier.name() (#485-487)
symbol() should be declared external:
- CyberSoldier.symbol() (#489-491)
decimals() should be declared external:
- CyberSoldier.decimals() (#493-495)
totalSupply() should be declared external:
- CyberSoldier.totalSupply() (#497-499)
allowance(address,address) should be declared external:
- CyberSoldier.allowance(address,address) (#505-507)
increaseAllowance(address,uint256) should be declared external:
- CyberSoldier.increaseAllowance(address,uint256) (#509-512)
decreaseAllowance(address,uint256) should be declared external:
- CyberSoldier.decreaseAllowance(address,uint256) (#514-517)
minimumTokensBeforeSwapAmount() should be declared external:
- CyberSoldier.minimumTokensBeforeSwapAmount() (#519-521)
approve(address,uint256) should be declared external:
- CyberSoldier.approve(address,uint256) (#523-526)
setMarketPairStatus(address,bool) should be declared external:
- CyberSoldier.setMarketPairStatus(address,bool) (#536-538)
setIsExcludedFromFee(address,bool) should be declared external:
- CyberSoldier.setIsExcludedFromFee(address,bool) (#544-546)
setSwapAndLiquifyEnabled(bool) should be declared external:
- CyberSoldier.setSwapAndLiquifyEnabled(bool) (#604-607)
setSwapAndLiquifyByLimitOnly(bool) should be declared external:
- CyberSoldier.setSwapAndLiquifyByLimitOnly(bool) (#609-611)
getCirculatingSupply() should be declared external:
- CyberSoldier.getCirculatingSupply() (#613-615)
changeRouterVersion(address) should be declared external:
- CyberSoldier.changeRouterVersion(address) (#621-638)
transfer(address,uint256) should be declared external:
- CyberSoldier.transfer(address,uint256) (#641-644)
transferFrom(address,address,uint256) should be declared external:
- CyberSoldier.transferFrom(address,address,uint256) (#646-650)
withdrawtoken(address) should be declared external:
- CyberSoldier.withdrawtoken(address) (#731-734)
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.


Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam

Additional information: link


Average 30d PancakeSwap liquidity 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 30d PancakeSwap volume is low.


Token is deployed only at one blockchain


Token has only one trading pair


Telegram account link seems to be invalid


Twitter account seems to be suspended

Additional information: link


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 whitepaper link on the website


Unable to find code repository for the project


Alexa traffic rank is very low

Additional information: link


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


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

Price for CyberSoldier