gabecoin Token Logo

GABECOIN Token

ALERT: unclassified scam

About GABECOIN

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 1 December 2021

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


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

Reentrancy in gabecoin._transfer(address,address,uint256) (#706-746):
External calls:
- swapAndLiquify(contractTokenBalance) (#735)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#785-792)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#772-778)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#735)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#785-792)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#745)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#662)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#827)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#818)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#819)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#578)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#838)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#829)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#839)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#580)
- _tokenTransfer(from,to,amount,takeFee) (#745)
- _rTotal = _rTotal.sub(rFee) (#617)
- _tokenTransfer(from,to,amount,takeFee) (#745)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#664)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#577)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#837)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#828)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#579)
Apply the check-effects-interactions pattern.

Additional information: link

gabecoin._transfer(address,address,uint256) (#706-746) uses tx.origin for authorization: require(bool)(tx.origin == to || tx.origin == owner()) (#714)
Do not use tx.origin for authorization.

Additional information: link

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

Additional information: link

gabecoin._approve(address,address,uint256).owner (#698) shadows:
- Ownable.owner() (#161-163) (function)
Rename the local variables that shadow another component.

Additional information: link

gabecoin.setMaxTxPercent(uint256) (#602-606) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#603-605)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in gabecoin.transferFrom(address,address,uint256) (#502-506):
External calls:
- _transfer(sender,recipient,amount) (#503)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#785-792)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#772-778)
External calls sending eth:
- _transfer(sender,recipient,amount) (#503)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#785-792)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#504)
- _allowances[owner][spender] = amount (#702)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in gabecoin.transferFrom(address,address,uint256) (#502-506):
External calls:
- _transfer(sender,recipient,amount) (#503)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#785-792)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#772-778)
External calls sending eth:
- _transfer(sender,recipient,amount) (#503)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#785-792)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#703)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#504)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#193-198) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#195)
Avoid relying on block.timestamp.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#128-145) uses assembly
- INLINE ASM (#137-140)
Do not use evm assembly.

Additional information: link

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

Additional information: link

gabecoin._previousliquidityFee (#426) 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

Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#128-145):
- (success,returndata) = target.call{value: weiValue}(data) (#131)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable gabecoin._maxTxAmount (#434) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#90)" inContext (#84-93)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable gabecoin._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#638) is too similar to gabecoin._transferBothExcluded(address,address,uint256).tTransferAmount (#576)
Prevent variables from having similar names.

Additional information: link

gabecoin.numTokensSellToAddToLiquidity (#435) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

isExcludedFromFee(address) should be declared external:
- gabecoin.isExcludedFromFee(address) (#694-696)
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


Token has a considerable age, but we're still unable to find its website


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Token has a considerable age, but social accounts / website are missing or have few users


Token has a considerable age, but average PancakeSwap 30d trading volume is low


Young tokens have high risks of price dump / death

Price for GABECOIN