CINCINNATI BENGALS Token Logo

$BENGALS [CINCINNATI BENGALS] Token

About $BENGALS

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 13 February 2022

report
Token seems to be anonymous. As long as we are unable to find website score is limited.


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

BENGALS.addLiquidity(uint256,uint256) (#1735-1763) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1747-1761)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in BENGALS._transfer(address,address,uint256) (#1527-1619):
External calls:
- swapAndLiquify(contractTokenBalance) (#1577)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1747-1761)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1711-1723)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1577)
- recipient.transfer(amount) (#1437)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1747-1761)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#1585)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#1607)
- finalAmount = takeFee(sender,recipient,amount) (#1591-1593)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#1793)
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.

Contract ticker ($BENGALS) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.

BENGALS.setMarketingWalletAddress(address).newAddress (#1395) lacks a zero-check on :
- marketingWalletAddress = address(newAddress) (#1397)
Check that the address is not zero.

Additional information: link

BENGALS.addLiquidity(uint256,uint256) (#1735-1763) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1747-1761)
Ensure that all the return values of the function calls are used.

Additional information: link

BENGALS.allowance(address,address).owner (#1191) shadows:
- Ownable.owner() (#379-383) (function)
BENGALS._approve(address,address,uint256).owner (#1247) shadows:
- Ownable.owner() (#379-383) (function)
Rename the local variables that shadow another component.

Additional information: link

BENGALS.setBuyTaxes(uint256,uint256) (#1295-1307) should emit an event for:
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee) (#1305)
BENGALS.setSellTaxes(uint256,uint256) (#1313-1325) should emit an event for:
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee) (#1323)
BENGALS.setDistributionSettings(uint256,uint256) (#1329-1341) should emit an event for:
- _liquidityShare = newLiquidityShare (#1331)
- _totalDistributionShares = _liquidityShare.add(_marketingShare) (#1339)
BENGALS.setMaxTxAmount(uint256) (#1345-1349) should emit an event for:
- _maxTxAmount = maxTxAmount (#1347)
BENGALS.setWalletLimit(uint256) (#1375-1379) should emit an event for:
- _walletMax = newLimit (#1377)
BENGALS.setNumTokensBeforeSwap(uint256) (#1385-1389) should emit an event for:
- minimumTokensBeforeSwap = newLimit (#1387)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in BENGALS.changeRouterVersion(address) (#1443-1487):
External calls:
- newPairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1465-1467)
State variables written after the call(s):
- isMarketPair[address(uniswapPair)] = true (#1485)
- isWalletLimitExempt[address(uniswapPair)] = true (#1483)
- uniswapPair = newPairAddress (#1475)
- uniswapV2Router = _uniswapV2Router (#1477)
Reentrancy in BENGALS.constructor() (#1059-1127):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1069-1071)
State variables written after the call(s):
- _allowances[address(this)][address(uniswapV2Router)] = _totalSupply (#1079)
- _balances[_msgSender()] = _totalSupply (#1123)
- _totalDistributionShares = _liquidityShare.add(_marketingShare) (#1095)
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee) (#1091)
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee) (#1093)
- isExcludedFromFee[owner()] = true (#1085)
- isExcludedFromFee[address(this)] = true (#1087)
- isMarketPair[address(uniswapPair)] = true (#1117)
- isTxLimitExempt[owner()] = true (#1109)
- isTxLimitExempt[address(this)] = true (#1111)
- isWalletLimitExempt[owner()] = true (#1101)
- isWalletLimitExempt[address(uniswapPair)] = true (#1103)
- isWalletLimitExempt[address(this)] = true (#1105)
- uniswapV2Router = _uniswapV2Router (#1077)
Reentrancy in BENGALS.swapAndLiquify(uint256) (#1641-1685):
External calls:
- swapTokensForEth(tokensForSwap) (#1653)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1711-1723)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#1683)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1747-1761)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#1675)
- recipient.transfer(amount) (#1437)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#1683)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1747-1761)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#1683)
- _allowances[owner][spender] = amount (#1257)
Reentrancy in BENGALS.transferFrom(address,address,uint256) (#1513-1521):
External calls:
- _transfer(sender,recipient,amount) (#1515)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1747-1761)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1711-1723)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1515)
- recipient.transfer(amount) (#1437)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1747-1761)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1517)
- _allowances[owner][spender] = amount (#1257)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BENGALS._transfer(address,address,uint256) (#1527-1619):
External calls:
- swapAndLiquify(contractTokenBalance) (#1577)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1747-1761)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1711-1723)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1577)
- recipient.transfer(amount) (#1437)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1747-1761)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#1795)
- finalAmount = takeFee(sender,recipient,amount) (#1591-1593)
- Transfer(sender,recipient,finalAmount) (#1613)
Reentrancy in BENGALS.constructor() (#1059-1127):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1069-1071)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#1125)
Reentrancy in BENGALS.swapAndLiquify(uint256) (#1641-1685):
External calls:
- swapTokensForEth(tokensForSwap) (#1653)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1711-1723)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#1683)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1747-1761)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#1675)
- recipient.transfer(amount) (#1437)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#1683)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1747-1761)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1259)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#1683)
Reentrancy in BENGALS.swapTokensForEth(uint256) (#1689-1729):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1711-1723)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#1727)
Reentrancy in BENGALS.transferFrom(address,address,uint256) (#1513-1521):
External calls:
- _transfer(sender,recipient,amount) (#1515)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1747-1761)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1711-1723)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1515)
- recipient.transfer(amount) (#1437)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1747-1761)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1259)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1517)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address.isContract(address) (#217-235) uses assembly
- INLINE ASM (#231)
Address._functionCallWithValue(address,bytes,uint256,string) (#303-339) uses assembly
- INLINE ASM (#323-329)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#303-339) is never used and should be removed
Address.functionCall(address,bytes) (#261-265) is never used and should be removed
Address.functionCall(address,bytes,string) (#271-275) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#281-285) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#291-297) is never used and should be removed
Address.isContract(address) (#217-235) is never used and should be removed
Address.sendValue(address,uint256) (#241-255) is never used and should be removed
Context._msgData() (#35-41) is never used and should be removed
SafeMath.mod(uint256,uint256) (#187-191) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#197-203) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#241-255):
- (success) = recipient.call{value: amount}() (#251)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#303-339):
- (success,returndata) = target.call{value: weiValue}(data) (#311)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#551) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#553) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#589) is not in mixedCase
Function IUniswapV2Router01.WETH() (#633) is not in mixedCase
Parameter BENGALS.setSwapAndLiquifyEnabled(bool)._enabled (#1405) is not in mixedCase
Variable BENGALS._balances (#935) is not in mixedCase
Variable BENGALS._buyLiquidityFee (#953) is not in mixedCase
Variable BENGALS._buyMarketingFee (#955) is not in mixedCase
Variable BENGALS._sellLiquidityFee (#957) is not in mixedCase
Variable BENGALS._sellMarketingFee (#959) is not in mixedCase
Variable BENGALS._liquidityShare (#965) is not in mixedCase
Variable BENGALS._marketingShare (#967) is not in mixedCase
Variable BENGALS._totalTaxIfBuying (#973) is not in mixedCase
Variable BENGALS._totalTaxIfSelling (#975) is not in mixedCase
Variable BENGALS._totalDistributionShares (#977) is not in mixedCase
Variable BENGALS._maxTxAmount (#985) is not in mixedCase
Variable BENGALS._walletMax (#987) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#37)" inContext (#19-43)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in BENGALS._transfer(address,address,uint256) (#1527-1619):
External calls:
- swapAndLiquify(contractTokenBalance) (#1577)
- recipient.transfer(amount) (#1437)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1577)
- recipient.transfer(amount) (#1437)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1747-1761)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#1585)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#1607)
- finalAmount = takeFee(sender,recipient,amount) (#1591-1593)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#1793)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#1795)
- finalAmount = takeFee(sender,recipient,amount) (#1591-1593)
- Transfer(sender,recipient,finalAmount) (#1613)
Reentrancy in BENGALS.swapAndLiquify(uint256) (#1641-1685):
External calls:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#1675)
- recipient.transfer(amount) (#1437)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#1675)
- recipient.transfer(amount) (#1437)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#1683)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1747-1761)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#1683)
- _allowances[owner][spender] = amount (#1257)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1259)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#1683)
Reentrancy in BENGALS.transferFrom(address,address,uint256) (#1513-1521):
External calls:
- _transfer(sender,recipient,amount) (#1515)
- recipient.transfer(amount) (#1437)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1515)
- recipient.transfer(amount) (#1437)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1747-1761)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1517)
- _allowances[owner][spender] = amount (#1257)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1259)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1517)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

BENGALS.slitherConstructorVariables() (#909-1810) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#931)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

BENGALS._decimals (#923) should be constant
BENGALS._name (#919) should be constant
BENGALS._symbol (#921) should be constant
BENGALS._totalSupply (#983) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

waiveOwnership() should be declared external:
- Ownable.waiveOwnership() (#397-403)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#409-417)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#423-427)
getTime() should be declared external:
- Ownable.getTime() (#431-435)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#441-451)
unlock() should be declared external:
- Ownable.unlock() (#455-465)
name() should be declared external:
- BENGALS.name() (#1141-1145)
symbol() should be declared external:
- BENGALS.symbol() (#1151-1155)
decimals() should be declared external:
- BENGALS.decimals() (#1161-1165)
totalSupply() should be declared external:
- BENGALS.totalSupply() (#1171-1175)
allowance(address,address) should be declared external:
- BENGALS.allowance(address,address) (#1191-1195)
increaseAllowance(address,uint256) should be declared external:
- BENGALS.increaseAllowance(address,uint256) (#1201-1207)
decreaseAllowance(address,uint256) should be declared external:
- BENGALS.decreaseAllowance(address,uint256) (#1213-1219)
minimumTokensBeforeSwapAmount() should be declared external:
- BENGALS.minimumTokensBeforeSwapAmount() (#1225-1229)
approve(address,uint256) should be declared external:
- BENGALS.approve(address,uint256) (#1235-1241)
setMarketPairStatus(address,bool) should be declared external:
- BENGALS.setMarketPairStatus(address,bool) (#1267-1271)
setIsExcludedFromFee(address,bool) should be declared external:
- BENGALS.setIsExcludedFromFee(address,bool) (#1285-1289)
setSwapAndLiquifyEnabled(bool) should be declared external:
- BENGALS.setSwapAndLiquifyEnabled(bool) (#1405-1411)
setSwapAndLiquifyByLimitOnly(bool) should be declared external:
- BENGALS.setSwapAndLiquifyByLimitOnly(bool) (#1417-1421)
getCirculatingSupply() should be declared external:
- BENGALS.getCirculatingSupply() (#1425-1429)
changeRouterVersion(address) should be declared external:
- BENGALS.changeRouterVersion(address) (#1443-1487)
transfer(address,uint256) should be declared external:
- BENGALS.transfer(address,uint256) (#1501-1507)
transferFrom(address,address,uint256) should be declared external:
- BENGALS.transferFrom(address,address,uint256) (#1513-1521)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


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


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

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


Unable to find Telegram and Twitter accounts


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

Price for $BENGALS