GangCat Token Logo

GCAT [GangCat] Token

About GCAT

Listings

Not Found
Token 2 years

$GCAT token relies on its amazing community to make a swift move towards becoming a monumental asset within the crypto world.

Social

Laser Scorebeta Last Audit: 9 June 2022

report
Token is either risky or in presale. For presale 30+ is a fine score.

GangCat.sendETHToFee(uint256) (#899-901) sends eth to arbitrary user
Dangerous calls:
- _marketingAddress.transfer(amount) (#900)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in GangCat._transfer(address,address,uint256) (#903-941):
External calls:
- swapTokensForEth(contractTokenBalance) (#908)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#948-954)
External calls sending eth:
- sendETHToFee(address(this).balance) (#911)
- _marketingAddress.transfer(amount) (#900)
State variables written after the call(s):
- super._transfer(sender,address(this),_MarketingFee) (#922)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#742)
- _balances[recipient] = _balances[recipient].add(amount) (#743)
- super._transfer(sender,_deadAdress,_BurnFee) (#923)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#742)
- _balances[recipient] = _balances[recipient].add(amount) (#743)
- super._transfer(sender,address(this),_MarketingFee_scope_0) (#935)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#742)
- _balances[recipient] = _balances[recipient].add(amount) (#743)
- super._transfer(sender,_deadAdress,_BurnFee_scope_1) (#936)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#742)
- _balances[recipient] = _balances[recipient].add(amount) (#743)
- super._transfer(sender,recipient,amount) (#940)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#742)
- _balances[recipient] = _balances[recipient].add(amount) (#743)
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

GangCat.constructor(string,string)._name (#857) shadows:
- ERC20._name (#529) (state variable)
GangCat.constructor(string,string)._symbol (#857) shadows:
- ERC20._symbol (#530) (state variable)
Rename the local variables that shadow another component.

Additional information: link

Different versions of Solidity is used:
- Version used: ['>=0.5.0', '>=0.6.2', '^0.8.0']
- ^0.8.0 (#1)
- >=0.6.2 (#76)
- >=0.5.0 (#174)
- >=0.6.2 (#194)
- ^0.8.0 (#237)
- ^0.8.0 (#439)
- ^0.8.0 (#462)
- ^0.8.0 (#517)
- ^0.8.0 (#836)
Use one Solidity version.

Additional information: link

Function IUniswapV2Router01.WETH() (#80) is not in mixedCase
Parameter GangCat.toggleSwap(bool)._swapEnabled (#887) is not in mixedCase
Parameter GangCat.setMarketingAddress(address)._address (#891) is not in mixedCase
Parameter GangCat.setDeveloperAddress(address)._address (#895) is not in mixedCase
Variable GangCat.TOTAL_SUPPLY (#842) is not in mixedCase
Constant GangCat.marketingSellFee (#845) is not in UPPER_CASE_WITH_UNDERSCORES
Constant GangCat.marketingBuyFee (#846) is not in UPPER_CASE_WITH_UNDERSCORES
Constant GangCat.burnSellFee (#847) is not in UPPER_CASE_WITH_UNDERSCORES
Constant GangCat.burnBuyFee (#848) is not in UPPER_CASE_WITH_UNDERSCORES
Variable GangCat.WBNB (#851) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

GangCat.slitherConstructorVariables() (#838-958) uses literals with too many digits:
- _deadAdress = 0x000000000000000000000000000000000000dEaD (#855)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

GangCat.WBNB (#851) is never used in GangCat (#838-958)
Remove unused state variables.

Additional information: link

GangCat.setDeveloperAddress(address) (#895-897) should emit an event for:
- _devAddress = address(_address) (#896)
Emit an event for critical parameter changes.

Additional information: link

GangCat.setMarketingAddress(address)._address (#891) lacks a zero-check on :
- _marketingAddress = address(_address) (#892)
GangCat.setDeveloperAddress(address)._address (#895) lacks a zero-check on :
- _devAddress = address(_address) (#896)
Check that the address is not zero.

Additional information: link

Reentrancy in GangCat.constructor(string,string) (#857-863):
External calls:
- uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#859)
State variables written after the call(s):
- _approve(address(this),address(uniswapV2Router),type()(uint256).max) (#860)
- _allowances[owner][spender] = amount (#804)
- _mint(msg.sender,TOTAL_SUPPLY) (#861)
- _balances[account] = _balances[account].add(amount) (#762)
- _mint(msg.sender,TOTAL_SUPPLY) (#861)
- _totalSupply = _totalSupply.add(amount) (#761)
- excludeFee[address(this)] = true (#862)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in GangCat._transfer(address,address,uint256) (#903-941):
External calls:
- swapTokensForEth(contractTokenBalance) (#908)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#948-954)
External calls sending eth:
- sendETHToFee(address(this).balance) (#911)
- _marketingAddress.transfer(amount) (#900)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#744)
- super._transfer(sender,_deadAdress,_BurnFee_scope_1) (#936)
- Transfer(sender,recipient,amount) (#744)
- super._transfer(sender,address(this),_MarketingFee_scope_0) (#935)
- Transfer(sender,recipient,amount) (#744)
- super._transfer(sender,recipient,amount) (#940)
- Transfer(sender,recipient,amount) (#744)
- super._transfer(sender,address(this),_MarketingFee) (#922)
- Transfer(sender,recipient,amount) (#744)
- super._transfer(sender,_deadAdress,_BurnFee) (#923)
Reentrancy in GangCat.constructor(string,string) (#857-863):
External calls:
- uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#859)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#805)
- _approve(address(this),address(uniswapV2Router),type()(uint256).max) (#860)
- Transfer(address(0),account,amount) (#763)
- _mint(msg.sender,TOTAL_SUPPLY) (#861)
Apply the check-effects-interactions pattern.

Additional information: link

Context._msgData() (#456-458) is never used and should be removed
ERC20._burn(address,uint256) (#777-785) is never used and should be removed
ERC20._setupDecimals(uint8) (#815-817) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#411-414) is never used and should be removed
SafeMath.mod(uint256,uint256) (#373-376) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#431-434) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#245-249) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#281-284) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#291-294) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#266-274) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#256-259) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.0 (#1) allows old versions
Pragma version>=0.6.2 (#76) allows old versions
Pragma version>=0.5.0 (#174) allows old versions
Pragma version>=0.6.2 (#194) allows old versions
Pragma version^0.8.0 (#237) allows old versions
Pragma version^0.8.0 (#439) allows old versions
Pragma version^0.8.0 (#462) allows old versions
Pragma version^0.8.0 (#517) allows old versions
Pragma version^0.8.0 (#836) allows old versions
solc-0.8.14 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

Reentrancy in GangCat._transfer(address,address,uint256) (#903-941):
External calls:
- sendETHToFee(address(this).balance) (#911)
- _marketingAddress.transfer(amount) (#900)
State variables written after the call(s):
- super._transfer(sender,address(this),_MarketingFee) (#922)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#742)
- _balances[recipient] = _balances[recipient].add(amount) (#743)
- super._transfer(sender,_deadAdress,_BurnFee) (#923)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#742)
- _balances[recipient] = _balances[recipient].add(amount) (#743)
- super._transfer(sender,address(this),_MarketingFee_scope_0) (#935)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#742)
- _balances[recipient] = _balances[recipient].add(amount) (#743)
- super._transfer(sender,_deadAdress,_BurnFee_scope_1) (#936)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#742)
- _balances[recipient] = _balances[recipient].add(amount) (#743)
- super._transfer(sender,recipient,amount) (#940)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#742)
- _balances[recipient] = _balances[recipient].add(amount) (#743)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#744)
- super._transfer(sender,recipient,amount) (#940)
- Transfer(sender,recipient,amount) (#744)
- super._transfer(sender,address(this),_MarketingFee) (#922)
- Transfer(sender,recipient,amount) (#744)
- super._transfer(sender,_deadAdress,_BurnFee_scope_1) (#936)
- Transfer(sender,recipient,amount) (#744)
- super._transfer(sender,address(this),_MarketingFee_scope_0) (#935)
- Transfer(sender,recipient,amount) (#744)
- super._transfer(sender,_deadAdress,_BurnFee) (#923)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#85) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#86)
Variable GangCat._deadAdress (#855) is too similar to GangCat._devAddress (#856)
Variable GangCat.TOTAL_SUPPLY (#842) is too similar to ERC20._totalSupply (#527)
Prevent variables from having similar names.

Additional information: link

GangCat.TOTAL_SUPPLY (#842) should be constant
GangCat.WBNB (#851) should be constant
GangCat._deadAdress (#855) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#501-504)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#510-514)
name() should be declared external:
- ERC20.name() (#551-553)
symbol() should be declared external:
- ERC20.symbol() (#559-561)
decimals() should be declared external:
- ERC20.decimals() (#576-578)
totalSupply() should be declared external:
- ERC20.totalSupply() (#583-591)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#614-622)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#627-635)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#644-652)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#667-676)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#690-697)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#713-720)
toggleSwap(bool) should be declared external:
- GangCat.toggleSwap(bool) (#887-889)
setMarketingAddress(address) should be declared external:
- GangCat.setMarketingAddress(address) (#891-893)
setDeveloperAddress(address) should be declared external:
- GangCat.setDeveloperAddress(address) (#895-897)
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 30d PancakeSwap liquidity is low.


Token is deployed only at one blockchain


Token has only one trading pair

Contract has 2% buy tax and 2% sell tax.
Taxes are low and contract ownership is renounced.


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


Unable to find whitepaper link on the website


Token is not listed at Mobula.Finance

Additional information: link


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

Price for GCAT

News for GCAT