Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
ExitLIQ.swapBack() (CA.sol#254-302) sends eth to arbitrary user
Dangerous calls:
- address(marketingWallet).transfer(BNBMarketing) (CA.sol#288)
- address(gameWallet).transfer(BNBGame) (CA.sol#289)
- address(teamWallet).transfer(BNBTeam) (CA.sol#290)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in ExitLIQ._transferFrom(address,address,uint256) (CA.sol#168-209):
External calls:
- swapBack() (CA.sol#200)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (CA.sol#271-277)
- router.addLiquidityETH{value: BNBLiquidity}(address(this),amountToLiquify,0,0,owner,block.timestamp) (CA.sol#293-300)
External calls sending eth:
- swapBack() (CA.sol#200)
- address(marketingWallet).transfer(BNBMarketing) (CA.sol#288)
- address(gameWallet).transfer(BNBGame) (CA.sol#289)
- address(teamWallet).transfer(BNBTeam) (CA.sol#290)
- router.addLiquidityETH{value: BNBLiquidity}(address(this),amountToLiquify,0,0,owner,block.timestamp) (CA.sol#293-300)
State variables written after the call(s):
- _rBalance[sender] = _rBalance[sender].sub(rAmount,Insufficient Balance) (CA.sol#202)
- _rBalance[recipient] = _rBalance[recipient].add(amountReceived) (CA.sol#205)
- amountReceived = takeFee(sender,rAmount,recipient) (CA.sol#204)
- _rBalance[address(this)] = _rBalance[address(this)].add(feeAmount) (CA.sol#239)
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.
ExitLIQ.takeFee(address,uint256,address) (CA.sol#224-244) performs a multiplication on the result of a division:
-feeAmount = rAmount.div(100).mul(totalFee) (CA.sol#236)
ExitLIQ.takeFee(address,uint256,address) (CA.sol#224-244) performs a multiplication on the result of a division:
-feeAmount = rAmount.div(100).mul(99) (CA.sol#235)
ExitLIQ.swapBack() (CA.sol#254-302) performs a multiplication on the result of a division:
-amountToLiquify = tokensToSell.div(totalFees).mul(liquidity).div(2) (CA.sol#264)
ExitLIQ.rebase_percentage(bool,uint256) (CA.sol#308-314) performs a multiplication on the result of a division:
-newSupply = rebase(int256(_totalSupply.div(1000).mul(_percentage_base1000))) (CA.sol#312)
ExitLIQ.rebase_percentage(bool,uint256) (CA.sol#308-314) performs a multiplication on the result of a division:
-newSupply = rebase(int256(_totalSupply.div(1000).mul(_percentage_base1000)).mul(- 1)) (CA.sol#310)
ExitLIQ.ownerSetLimits(uint256,uint256) (CA.sol#390-396) performs a multiplication on the result of a division:
-_maxTxAmount = rSupply / 1000 * maxTxBase1000 (CA.sol#393)
ExitLIQ.ownerSetLimits(uint256,uint256) (CA.sol#390-396) performs a multiplication on the result of a division:
-_maxWalletSize = rSupply / 1000 * maxWalletBase1000 (CA.sol#394)
ExitLIQ.ownerSetSwapSetting(uint256,bool) (CA.sol#397-401) performs a multiplication on the result of a division:
-swapThreshold = rSupply / 10000 * swapThresholdBase10000 (CA.sol#398)
ExitLIQ.slitherConstructorVariables() (CA.sol#25-424) performs a multiplication on the result of a division:
-_maxTxAmount = rSupply.div(100).mul(2) (CA.sol#98)
ExitLIQ.slitherConstructorVariables() (CA.sol#25-424) performs a multiplication on the result of a division:
-_maxWalletSize = rSupply.div(100).mul(3) (CA.sol#99)
Consider ordering multiplication before division.
Additional information: link
ExitLIQ.swapBack() (CA.sol#254-302) ignores return value by router.addLiquidityETH{value: BNBLiquidity}(address(this),amountToLiquify,0,0,owner,block.timestamp) (CA.sol#293-300)
Ensure that all the return values of the function calls are used.
Additional information: link
ExitLIQ.rebase(int256) (CA.sol#316-339) should emit an event for:
- _totalSupply = _totalSupply.sub(uint256(- supplyDelta)) (CA.sol#324)
- _totalSupply = _totalSupply.add(uint256(supplyDelta)) (CA.sol#326)
- _totalSupply = MAX_SUPPLY (CA.sol#330)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in ExitLIQ._transferFrom(address,address,uint256) (CA.sol#168-209):
External calls:
- swapBack() (CA.sol#200)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (CA.sol#271-277)
- router.addLiquidityETH{value: BNBLiquidity}(address(this),amountToLiquify,0,0,owner,block.timestamp) (CA.sol#293-300)
External calls sending eth:
- swapBack() (CA.sol#200)
- address(marketingWallet).transfer(BNBMarketing) (CA.sol#288)
- address(gameWallet).transfer(BNBGame) (CA.sol#289)
- address(teamWallet).transfer(BNBTeam) (CA.sol#290)
- router.addLiquidityETH{value: BNBLiquidity}(address(this),amountToLiquify,0,0,owner,block.timestamp) (CA.sol#293-300)
State variables written after the call(s):
- amountReceived = takeFee(sender,rAmount,recipient) (CA.sol#204)
- totalFee = _buy.total (CA.sol#230)
- totalFee = _sell.total (CA.sol#231)
Reentrancy in ExitLIQ.constructor() (CA.sol#115-138):
External calls:
- pair = IDEXFactory(router.factory()).createPair(router.WETH(),address(this)) (CA.sol#117)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = type()(uint256).max (CA.sol#118)
- _buy.game = 2 (CA.sol#129)
- _buy.team = 3 (CA.sol#129)
- _buy.marketing = 2 (CA.sol#129)
- _buy.liquidity = 2 (CA.sol#129)
- _buy.total = _buy.game + _buy.team + _buy.marketing + _buy.liquidity (CA.sol#130)
- _rBalance[msg.sender] = rSupply (CA.sol#136)
- _sell.game = 2 (CA.sol#133)
- _sell.team = 3 (CA.sol#133)
- _sell.marketing = 2 (CA.sol#133)
- _sell.liquidity = 2 (CA.sol#133)
- _sell.total = _sell.game + _sell.team + _sell.marketing + _sell.liquidity (CA.sol#134)
- _totalSupply = INITIAL_FRAGMENTS_SUPPLY (CA.sol#121)
- isFeeExempt[msg.sender] = isFeeExempt[address(this)] = true (CA.sol#125)
- isTxLimitExempt[msg.sender] = isTxLimitExempt[address(this)] = true (CA.sol#126)
- pairContract = InterfaceLP(pair) (CA.sol#120)
- rate = rSupply.div(_totalSupply) (CA.sol#122)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in ExitLIQ._transferFrom(address,address,uint256) (CA.sol#168-209):
External calls:
- swapBack() (CA.sol#200)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (CA.sol#271-277)
- router.addLiquidityETH{value: BNBLiquidity}(address(this),amountToLiquify,0,0,owner,block.timestamp) (CA.sol#293-300)
External calls sending eth:
- swapBack() (CA.sol#200)
- address(marketingWallet).transfer(BNBMarketing) (CA.sol#288)
- address(gameWallet).transfer(BNBGame) (CA.sol#289)
- address(teamWallet).transfer(BNBTeam) (CA.sol#290)
- router.addLiquidityETH{value: BNBLiquidity}(address(this),amountToLiquify,0,0,owner,block.timestamp) (CA.sol#293-300)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount.div(rate)) (CA.sol#240)
- amountReceived = takeFee(sender,rAmount,recipient) (CA.sol#204)
- Transfer(sender,recipient,amountReceived.div(rate)) (CA.sol#207)
Reentrancy in ExitLIQ.constructor() (CA.sol#115-138):
External calls:
- pair = IDEXFactory(router.factory()).createPair(router.WETH(),address(this)) (CA.sol#117)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (CA.sol#137)
Apply the check-effects-interactions pattern.
Additional information: link
SafeMath.div(uint256,uint256,string) (Libraries.sol#64-73) is never used and should be removed
SafeMath.mod(uint256,uint256) (Libraries.sol#51-53) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (Libraries.sol#74-83) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (Libraries.sol#6-12) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (Libraries.sol#27-32) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (Libraries.sol#33-38) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (Libraries.sol#19-26) is never used and should be removed
SafeMath.trySub(uint256,uint256) (Libraries.sol#13-18) is never used and should be removed
SignedSafeMath.add(int256,int256) (Libraries.sol#96-98) is never used and should be removed
SignedSafeMath.div(int256,int256) (Libraries.sol#90-92) is never used and should be removed
SignedSafeMath.sub(int256,int256) (Libraries.sol#93-95) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version^0.8.9 (CA.sol#18) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
Pragma version^0.8.9 (Libraries.sol#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.12 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
Function ExitLIQ.rebase_percentage(bool,uint256) (CA.sol#308-314) is not in mixedCase
Parameter ExitLIQ.rebase_percentage(bool,uint256)._percentage_base1000 (CA.sol#308) is not in mixedCase
Parameter ExitLIQ.ownerEnableTrading(uint256)._deadBlocks (CA.sol#342) is not in mixedCase
Variable ExitLIQ._rBalance (CA.sol#46) is not in mixedCase
Variable ExitLIQ._allowances (CA.sol#47) is not in mixedCase
Constant ExitLIQ._name (CA.sol#54) is not in UPPER_CASE_WITH_UNDERSCORES
Constant ExitLIQ._symbol (CA.sol#55) is not in UPPER_CASE_WITH_UNDERSCORES
Constant ExitLIQ._decimals (CA.sol#56) is not in UPPER_CASE_WITH_UNDERSCORES
Constant ExitLIQ.rSupply (CA.sol#66) is not in UPPER_CASE_WITH_UNDERSCORES
Variable ExitLIQ._totalSupply (CA.sol#68) is not in mixedCase
Variable ExitLIQ._buy (CA.sol#78) is not in mixedCase
Variable ExitLIQ._sell (CA.sol#79) is not in mixedCase
Variable ExitLIQ._maxTxAmount (CA.sol#98) is not in mixedCase
Variable ExitLIQ._maxWalletSize (CA.sol#99) is not in mixedCase
Variable ExitLIQ._pancakeRouterAddress (CA.sol#104) is not in mixedCase
Function IDEXRouter.WETH() (Libraries.sol#162) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Reentrancy in ExitLIQ._transferFrom(address,address,uint256) (CA.sol#168-209):
External calls:
- swapBack() (CA.sol#200)
- address(marketingWallet).transfer(BNBMarketing) (CA.sol#288)
- address(gameWallet).transfer(BNBGame) (CA.sol#289)
- address(teamWallet).transfer(BNBTeam) (CA.sol#290)
External calls sending eth:
- swapBack() (CA.sol#200)
- address(marketingWallet).transfer(BNBMarketing) (CA.sol#288)
- address(gameWallet).transfer(BNBGame) (CA.sol#289)
- address(teamWallet).transfer(BNBTeam) (CA.sol#290)
- router.addLiquidityETH{value: BNBLiquidity}(address(this),amountToLiquify,0,0,owner,block.timestamp) (CA.sol#293-300)
State variables written after the call(s):
- _rBalance[sender] = _rBalance[sender].sub(rAmount,Insufficient Balance) (CA.sol#202)
- _rBalance[recipient] = _rBalance[recipient].add(amountReceived) (CA.sol#205)
- amountReceived = takeFee(sender,rAmount,recipient) (CA.sol#204)
- _rBalance[address(this)] = _rBalance[address(this)].add(feeAmount) (CA.sol#239)
- amountReceived = takeFee(sender,rAmount,recipient) (CA.sol#204)
- totalFee = _buy.total (CA.sol#230)
- totalFee = _sell.total (CA.sol#231)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount.div(rate)) (CA.sol#240)
- amountReceived = takeFee(sender,rAmount,recipient) (CA.sol#204)
- Transfer(sender,recipient,amountReceived.div(rate)) (CA.sol#207)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (Libraries.sol#167) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (Libraries.sol#168)
Prevent variables from having similar names.
Additional information: link
ExitLIQ.slitherConstructorVariables() (CA.sol#25-424) uses literals with too many digits:
- burnWallet = 0x000000000000000000000000000000000000dEaD (CA.sol#72)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Ownable._previousOwner (Libraries.sol#124) is never used in ExitLIQ (CA.sol#25-424)
Remove unused state variables.
Additional information: link
ExitLIQ._pancakeRouterAddress (CA.sol#104) should be constant
ExitLIQ.burnWallet (CA.sol#72) should be constant
Ownable._previousOwner (Libraries.sol#124) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
triggerswapback() should be declared external:
- ExitLIQ.triggerswapback() (CA.sol#304-306)
rebase_percentage(bool,uint256) should be declared external:
- ExitLIQ.rebase_percentage(bool,uint256) (CA.sol#308-314)
ownerEnableTrading(uint256) should be declared external:
- ExitLIQ.ownerEnableTrading(uint256) (CA.sol#342-351)
ownerSwitchTradingStatus(bool) should be declared external:
- ExitLIQ.ownerSwitchTradingStatus(bool) (CA.sol#352-355)
ownerSetMarketingWallet(address) should be declared external:
- ExitLIQ.ownerSetMarketingWallet(address) (CA.sol#356-361)
ownerSetTeamWallet(address) should be declared external:
- ExitLIQ.ownerSetTeamWallet(address) (CA.sol#362-367)
ownerSetGameWallet(address) should be declared external:
- ExitLIQ.ownerSetGameWallet(address) (CA.sol#368-373)
ownerSetBuyFees(uint8,uint8,uint8,uint8) should be declared external:
- ExitLIQ.ownerSetBuyFees(uint8,uint8,uint8,uint8) (CA.sol#374-381)
ownerSetSellFees(uint8,uint8,uint8,uint8) should be declared external:
- ExitLIQ.ownerSetSellFees(uint8,uint8,uint8,uint8) (CA.sol#382-389)
ownerSetLimits(uint256,uint256) should be declared external:
- ExitLIQ.ownerSetLimits(uint256,uint256) (CA.sol#390-396)
ownerSetSwapSetting(uint256,bool) should be declared external:
- ExitLIQ.ownerSetSwapSetting(uint256,bool) (CA.sol#397-401)
ownerSwitchSameBlock(bool) should be declared external:
- ExitLIQ.ownerSwitchSameBlock(bool) (CA.sol#402-405)
ownerSetFeeExempt(address,bool) should be declared external:
- ExitLIQ.ownerSetFeeExempt(address,bool) (CA.sol#406-409)
ownerSetTxLimitExempt(address,bool) should be declared external:
- ExitLIQ.ownerSetTxLimitExempt(address,bool) (CA.sol#410-413)
ownerSetBlacklistAddress(address,bool) should be declared external:
- ExitLIQ.ownerSetBlacklistAddress(address,bool) (CA.sol#414-417)
ownerSetPresaleAddress(address) should be declared external:
- ExitLIQ.ownerSetPresaleAddress(address) (CA.sol#418-422)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (Libraries.sol#140-144)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (Libraries.sol#146-149)
Use the external attribute for functions never called from the contract.
Additional information: link
Unable to find website, listings and other project-related information
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Telegram and Twitter accounts