GreenTiger Token Logo

GTiger [GreenTiger] Token

About GTiger

Listings

Not Found
Token 4 years

The Green Tiger is the personification of the place that we want to create for all influencers: CRYPTOSAVANNA
AN ETERNAL GREEN AND BEAUTIFUL OASIS!

Social

Laser Scorebeta Last Audit: 18 January 2022

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


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

GreenTiger.swapBack() (#424-467) sends eth to arbitrary user
Dangerous calls:
- address(teamAddress).transfer(amountBNBTeam) (#453)
- address(marketingAddress).transfer(amountBNBMarketing) (#454)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in GreenTiger._tokenTransfer(address,address,uint256) (#330-368):
External calls:
- swapBack() (#358)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#440-446)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,liquidityAddress,block.timestamp) (#457-464)
External calls sending eth:
- swapBack() (#358)
- address(teamAddress).transfer(amountBNBTeam) (#453)
- address(marketingAddress).transfer(amountBNBMarketing) (#454)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,liquidityAddress,block.timestamp) (#457-464)
State variables written after the call(s):
- _balances[sender] = _balances[sender] - amount (#360)
- _balances[recipient] = _balances[recipient] + amountReceived (#363)
- amountReceived = takeFee(recipient,amount) (#362)
- _balances[address(this)] = _balances[address(this)] + (feeAmount) (#373)
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.

Reentrancy in GreenTiger.constructor() (#234-254):
External calls:
- pair = IDEXFactory(router.factory()).createPair(router.WETH(),address(this)) (#236)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = type()(uint256).max (#237)
- _balances[msg.sender] = _totalSupply (#252)
- _isExcludedFromFee[owner] = true (#247)
- _isExcludedFromFee[address(this)] = true (#248)
- _isExcludedFromLimits[owner] = true (#249)
- _isExcludedFromLimits[address(this)] = true (#250)
- buyFee.liquidityFee = 4 (#239)
- buyFee.marketingFee = 4 (#240)
- buyFee.teamFee = 4 (#241)
- sellFee.liquidityFee = 1 (#243)
- sellFee.marketingFee = 7 (#244)
- sellFee.teamFee = 7 (#245)
Apply the check-effects-interactions pattern.

Additional information: link

GreenTiger.takeFee(address,uint256) (#370-377) performs a multiplication on the result of a division:
-feeAmount = amount / 100 * (_totalFee) (#371)
GreenTiger.setMaxWalletPercent_base1000(uint256) (#538-542) performs a multiplication on the result of a division:
-require(bool,string)(percentageBase1000 * (_totalSupply / 1000) >= _totalSupply / 100,Can't set MaxWallet lower than 1%) (#539)
GreenTiger.setMaxWalletPercent_base1000(uint256) (#538-542) performs a multiplication on the result of a division:
-_maxWalletSize = percentageBase1000 * (_totalSupply / 1000) (#540)
GreenTiger.setMaxTX(uint256) (#544-548) performs a multiplication on the result of a division:
-require(bool,string)(percentageBase1000 * (_totalSupply / 1000) >= _totalSupply / 200,Can't set TxLimit lower than 0.5%) (#545)
GreenTiger.setMaxTX(uint256) (#544-548) performs a multiplication on the result of a division:
-_maxTxAmount = percentageBase1000 * (_totalSupply / 1000) (#546)
GreenTiger.slitherConstructorVariables() (#137-565) performs a multiplication on the result of a division:
-_maxTxAmount = _totalSupply / 1000 * 10 (#175)
GreenTiger.slitherConstructorVariables() (#137-565) performs a multiplication on the result of a division:
-_maxWalletSize = _totalSupply / 100 * 3 (#176)
GreenTiger.slitherConstructorVariables() (#137-565) performs a multiplication on the result of a division:
-swapThreshold = _totalSupply / 1000 * 1 (#224)
GreenTiger.slitherConstructorVariables() (#137-565) performs a multiplication on the result of a division:
-maxSwapSize = _totalSupply / 100 * 1 (#225)
Consider ordering multiplication before division.

Additional information: link

GreenTiger.swapBack() (#424-467) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,liquidityAddress,block.timestamp) (#457-464)
Ensure that all the return values of the function calls are used.

Additional information: link

GreenTiger.setFeeReceiver(address,address,address).marketing (#494) lacks a zero-check on :
- marketingAddress = marketing (#495)
GreenTiger.setFeeReceiver(address,address,address).team (#494) lacks a zero-check on :
- teamAddress = team (#496)
GreenTiger.setFeeReceiver(address,address,address).liquidity (#494) lacks a zero-check on :
- liquidityAddress = liquidity (#497)
Check that the address is not zero.

Additional information: link

Reentrancy in GreenTiger._tokenTransfer(address,address,uint256) (#330-368):
External calls:
- swapBack() (#358)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#440-446)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,liquidityAddress,block.timestamp) (#457-464)
External calls sending eth:
- swapBack() (#358)
- address(teamAddress).transfer(amountBNBTeam) (#453)
- address(marketingAddress).transfer(amountBNBMarketing) (#454)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,liquidityAddress,block.timestamp) (#457-464)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#374)
- amountReceived = takeFee(recipient,amount) (#362)
- Transfer(sender,recipient,amountReceived) (#365)
Reentrancy in GreenTiger.constructor() (#234-254):
External calls:
- pair = IDEXFactory(router.factory()).createPair(router.WETH(),address(this)) (#236)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#253)
Reentrancy in GreenTiger.swapBack() (#424-467):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#440-446)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,liquidityAddress,block.timestamp) (#457-464)
External calls sending eth:
- address(teamAddress).transfer(amountBNBTeam) (#453)
- address(marketingAddress).transfer(amountBNBMarketing) (#454)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,liquidityAddress,block.timestamp) (#457-464)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#465)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.OwnershipUnlock() (#69-74) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#71)
GreenTiger._checkTransfer(address,address,uint256) (#288-321) uses timestamp for comparisons
Dangerous comparisons:
- ! launched() && recipient == pair (#291)
GreenTiger._tokenTransfer(address,address,uint256) (#330-368) uses timestamp for comparisons
Dangerous comparisons:
- isSniper[sender] && snipersPenaltyEnd <= block.number (#345)
GreenTiger.launched() (#400-402) uses timestamp for comparisons
Dangerous comparisons:
- launchedAt != 0 (#401)
Avoid relying on block.timestamp.

Additional information: link

GreenTiger._maxTxAmount (#175) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 1000 * 10
GreenTiger._maxWalletSize (#176) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 100 * 3
GreenTiger.swapThreshold (#224) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 1000 * 1
GreenTiger.maxSwapSize (#225) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 100 * 1
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.8.9 (#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.9 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 Ownable.OwnershipLock(uint256) (#62-67) is not in mixedCase
Function Ownable.OwnershipUnlock() (#69-74) is not in mixedCase
Function IDEXRouter.WETH() (#87) is not in mixedCase
Parameter GreenTiger.setSwapBackSettings(bool,uint256,uint256)._enabled (#487) is not in mixedCase
Parameter GreenTiger.setSwapBackSettings(bool,uint256,uint256)._swapThreshold (#487) is not in mixedCase
Parameter GreenTiger.setSwapBackSettings(bool,uint256,uint256)._maxSwapSize (#487) is not in mixedCase
Function GreenTiger.setMaxWalletPercent_base1000(uint256) (#538-542) is not in mixedCase
Function GreenTiger.ClearStuckBalance() (#552-556) is not in mixedCase
Parameter GreenTiger.transferForeignToken(address)._token (#558) is not in mixedCase
Constant GreenTiger._name (#166) is not in UPPER_CASE_WITH_UNDERSCORES
Constant GreenTiger._symbol (#167) is not in UPPER_CASE_WITH_UNDERSCORES
Constant GreenTiger._decimals (#168) is not in UPPER_CASE_WITH_UNDERSCORES
Variable GreenTiger._totalSupply (#169) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in GreenTiger.ClearStuckBalance() (#552-556):
External calls:
- address(msg.sender).transfer(contractBalance) (#554)
Event emitted after the call(s):
- StuckBalanceSent(contractBalance,msg.sender) (#555)
Reentrancy in GreenTiger._tokenTransfer(address,address,uint256) (#330-368):
External calls:
- swapBack() (#358)
- address(teamAddress).transfer(amountBNBTeam) (#453)
- address(marketingAddress).transfer(amountBNBMarketing) (#454)
External calls sending eth:
- swapBack() (#358)
- address(teamAddress).transfer(amountBNBTeam) (#453)
- address(marketingAddress).transfer(amountBNBMarketing) (#454)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,liquidityAddress,block.timestamp) (#457-464)
State variables written after the call(s):
- _balances[sender] = _balances[sender] - amount (#360)
- _balances[recipient] = _balances[recipient] + amountReceived (#363)
- amountReceived = takeFee(recipient,amount) (#362)
- _balances[address(this)] = _balances[address(this)] + (feeAmount) (#373)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#374)
- amountReceived = takeFee(recipient,amount) (#362)
- Transfer(sender,recipient,amountReceived) (#365)
Reentrancy in GreenTiger.swapBack() (#424-467):
External calls:
- address(teamAddress).transfer(amountBNBTeam) (#453)
- address(marketingAddress).transfer(amountBNBMarketing) (#454)
External calls sending eth:
- address(teamAddress).transfer(amountBNBTeam) (#453)
- address(marketingAddress).transfer(amountBNBMarketing) (#454)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,liquidityAddress,block.timestamp) (#457-464)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#465)
Reentrancy in GreenTiger.transferForeignToken(address) (#558-563):
External calls:
- address(msg.sender).transfer(_contractBalance) (#561)
Event emitted after the call(s):
- ForeignTokenTransfer(_token,_contractBalance) (#562)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#92) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#93)
Prevent variables from having similar names.

Additional information: link

GreenTiger.slitherConstructorVariables() (#137-565) uses literals with too many digits:
- _totalSupply = 100000000 * (10 ** _decimals) (#169)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

GreenTiger._totalSupply (#169) should be constant
GreenTiger.snipeBlocks (#213) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#47-51)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#53-55)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#57-60)
OwnershipLock(uint256) should be declared external:
- Ownable.OwnershipLock(uint256) (#62-67)
OwnershipUnlock() should be declared external:
- Ownable.OwnershipUnlock() (#69-74)
transferForeignToken(address) should be declared external:
- GreenTiger.transferForeignToken(address) (#558-563)
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.


Telegram account has relatively few subscribers


Last post in Twitter was more than 30 days ago


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


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 token/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


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


Young tokens have high risks of price dump / death

Price for GTiger

News for GTiger