BNBSWAP Token Token Logo

BNBSWAP Token

ALERT: phishing / airdrop scam

About BNBSWAP

Listings

Not Found
Token 2 years
white paper

The BNBSWAP Token is made on Binance Smart Chain. Empowering developers, liquidity providers and traders to participate in a financial marketplace that is open and accessible to all.

Social

Laser Scorebeta Last Audit: 8 May 2022

report
Token seems to be a scam (type: phishing / airdrop scam).

Anti-Scam

Links


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

BNBSWAPToken.transferToAddressETH(address,uint256) (#973-975) sends eth to arbitrary user
Dangerous calls:
- recipient.transfer(amount) (#974)
BNBSWAPToken.airdrop(address) (#1046-1059) sends eth to arbitrary user
Dangerous calls:
- address(address(uint160(_refer))).transfer(referEth) (#1055)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in BNBSWAPToken._transfer(address,address,uint256) (#608-656):
External calls:
- swapTokens(contractTokenBalance) (#627)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#679-685)
External calls sending eth:
- swapTokens(contractTokenBalance) (#627)
- recipient.transfer(amount) (#974)
State variables written after the call(s):
- removeAllFee() (#638)
- _liquidityFee = 0 (#862)
- _liquidityFee = _buyLiquidityFee (#640)
- removeAllFee() (#645)
- _liquidityFee = 0 (#862)
- _liquidityFee = _sellLiquidityFee (#647)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- _liquidityFee = _previousLiquidityFee (#868)
- _liquidityFee = 0 (#862)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#838)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#763)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#774)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#784)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#765)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#775)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#786)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#752)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#753)
- _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurnAmount) (#754)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- _rTotal = _rTotal.sub(rFee) (#793)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#840)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#773)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#783)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#764)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#785)
Apply the check-effects-interactions pattern.

Additional information: link

BNBSWAPToken.swapTokenForTokens(address,address,uint256) (#707-710) ignores return value by tokenC.transfer(account,amount) (#709)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

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.


Combination 2: Unchecked transfer + 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.


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Contract ownership is not renounced (belongs to a wallet)

BNBSWAPToken.swapTokens(uint256) (#658-667) performs a multiplication on the result of a division:
-marketingBnb = transferredBalance.div(_liquidityFee).mul(marketingDivisor) (#663)
BNBSWAPToken.swapTokens(uint256) (#658-667) performs a multiplication on the result of a division:
-charityBnb = transferredBalance.div(_liquidityFee).mul(charityDivisor) (#664)
BNBSWAPToken._transferStandard(address,address,uint256) (#745-759) performs a multiplication on the result of a division:
-tBurnAmount = tAmount.div(100).mul(_burnFee) (#748)
Consider ordering multiplication before division.

Additional information: link

BNBSWAPToken.addLiquidity(uint256,uint256) (#712-725) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#717-724)
Ensure that all the return values of the function calls are used.

Additional information: link

BNBSWAPToken.allowance(address,address).owner (#512) shadows:
- Ownable.owner() (#165-167) (function)
BNBSWAPToken._approve(address,address,uint256).owner (#600) shadows:
- Ownable.owner() (#165-167) (function)
Rename the local variables that shadow another component.

Additional information: link

BNBSWAPToken.setTaxFeePercent(uint256) (#884-886) should emit an event for:
- _taxFee = taxFee (#885)
BNBSWAPToken.setLiquidityFeePercent(uint256) (#888-890) should emit an event for:
- _liquidityFee = liquidityFee (#889)
BNBSWAPToken.setBuyTaxFeePercent(uint256) (#892-894) should emit an event for:
- _buyTaxFee = buyTaxFee (#893)
BNBSWAPToken.setBuyLiquidityFeePercent(uint256) (#896-898) should emit an event for:
- _buyLiquidityFee = buyLiquidityFee (#897)
BNBSWAPToken.setSellTaxFeePercent(uint256) (#900-902) should emit an event for:
- _sellTaxFee = sellTaxFee (#901)
BNBSWAPToken.setSellLiquidityFeePercent(uint256) (#904-906) should emit an event for:
- _sellLiquidityFee = sellLiquidityFee (#905)
BNBSWAPToken.setBurnFeePercent(uint256) (#908-910) should emit an event for:
- _burnFee = burnTaxFee (#909)
BNBSWAPToken.setMaxTxAmount(uint256) (#912-914) should emit an event for:
- _maxTxAmount = maxTxAmount (#913)
BNBSWAPToken.setMarketingFeePercent(uint256) (#916-918) should emit an event for:
- marketingDivisor = divisor (#917)
BNBSWAPToken.setCharityFeePercent(uint256) (#920-922) should emit an event for:
- charityDivisor = divisor (#921)
BNBSWAPToken.setNumTokensSellToAddToLiquidity(uint256) (#924-926) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#925)
BNBSWAPToken.setALLFeePercent(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256) (#928-938) should emit an event for:
- charityDivisor = charity (#929)
- marketingDivisor = marketting (#930)
- _burnFee = burnTaxFee (#931)
- _sellLiquidityFee = sellLiquidityFee (#932)
- _sellTaxFee = sellTaxFee (#933)
- _buyLiquidityFee = buyLiquidityFee (#934)
- _buyTaxFee = buyTaxFee (#935)
- _liquidityFee = liquidityFee (#936)
- _taxFee = taxFee (#937)
BNBSWAPToken.set(uint8,uint256) (#1016-1044) should emit an event for:
- _referEth = value (#1024)
- _referToken = value (#1026)
- _airdropEth = value (#1028)
- _airdropToken = value (#1030)
- salePrice = value (#1034)
- _airdorpBnb = value (#1037)
- _buyBnb = value (#1039)
Emit an event for critical parameter changes.

Additional information: link

BNBSWAPToken.setMarketingAddress(address)._marketingAddress (#940) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#941)
BNBSWAPToken.setCharityAddress(address)._newaddress (#945) lacks a zero-check on :
- charityAddress = address(_newaddress) (#946)
BNBSWAPToken.transferToAddressETH(address,uint256).recipient (#973) lacks a zero-check on :
- recipient.transfer(amount) (#974)
Check that the address is not zero.

Additional information: link

BNBSWAPToken.includeInReward(address) (#587-598) has costly operations inside a loop:
- _excluded.pop() (#594)
Use a local variable to hold the loop computation result.

Additional information: link

Redundant expression "this (#28)" inContext (#21-31)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#277) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#278)
Variable BNBSWAPToken.reflectionFromToken(uint256,bool).rTransferAmount (#566) is too similar to BNBSWAPToken._getTValues(uint256).tTransferAmount (#806)
Variable BNBSWAPToken.reflectionFromToken(uint256,bool).rTransferAmount (#566) is too similar to BNBSWAPToken._transferFromExcluded(address,address,uint256).tTransferAmount (#772)
Variable BNBSWAPToken._transferFromExcluded(address,address,uint256).rTransferAmount (#772) is too similar to BNBSWAPToken._getTValues(uint256).tTransferAmount (#806)
Variable BNBSWAPToken._transferBothExcluded(address,address,uint256).rTransferAmount (#782) is too similar to BNBSWAPToken._getValues(uint256).tTransferAmount (#798)
Variable BNBSWAPToken._transferFromExcluded(address,address,uint256).rTransferAmount (#772) is too similar to BNBSWAPToken._transferFromExcluded(address,address,uint256).tTransferAmount (#772)
Variable BNBSWAPToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#814) is too similar to BNBSWAPToken._transferStandard(address,address,uint256).tTransferAmount (#747)
Variable BNBSWAPToken.reflectionFromToken(uint256,bool).rTransferAmount (#566) is too similar to BNBSWAPToken._transferBothExcluded(address,address,uint256).tTransferAmount (#782)
Variable BNBSWAPToken._transferFromExcluded(address,address,uint256).rTransferAmount (#772) is too similar to BNBSWAPToken._transferBothExcluded(address,address,uint256).tTransferAmount (#782)
Variable BNBSWAPToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#814) is too similar to BNBSWAPToken._getTValues(uint256).tTransferAmount (#806)
Variable BNBSWAPToken._transferStandard(address,address,uint256).rTransferAmount (#747) is too similar to BNBSWAPToken._transferStandard(address,address,uint256).tTransferAmount (#747)
Variable BNBSWAPToken._transferToExcluded(address,address,uint256).rTransferAmount (#762) is too similar to BNBSWAPToken._transferStandard(address,address,uint256).tTransferAmount (#747)
Variable BNBSWAPToken._transferToExcluded(address,address,uint256).rTransferAmount (#762) is too similar to BNBSWAPToken._getTValues(uint256).tTransferAmount (#806)
Variable BNBSWAPToken._transferToExcluded(address,address,uint256).rTransferAmount (#762) is too similar to BNBSWAPToken._transferFromExcluded(address,address,uint256).tTransferAmount (#772)
Variable BNBSWAPToken.reflectionFromToken(uint256,bool).rTransferAmount (#566) is too similar to BNBSWAPToken._transferToExcluded(address,address,uint256).tTransferAmount (#762)
Variable BNBSWAPToken._transferFromExcluded(address,address,uint256).rTransferAmount (#772) is too similar to BNBSWAPToken._transferToExcluded(address,address,uint256).tTransferAmount (#762)
Variable BNBSWAPToken.reflectionFromToken(uint256,bool).rTransferAmount (#566) is too similar to BNBSWAPToken._getValues(uint256).tTransferAmount (#798)
Variable BNBSWAPToken._transferFromExcluded(address,address,uint256).rTransferAmount (#772) is too similar to BNBSWAPToken._getValues(uint256).tTransferAmount (#798)
Variable BNBSWAPToken._transferBothExcluded(address,address,uint256).rTransferAmount (#782) is too similar to BNBSWAPToken._transferStandard(address,address,uint256).tTransferAmount (#747)
Variable BNBSWAPToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#814) is too similar to BNBSWAPToken._getValues(uint256).tTransferAmount (#798)
Variable BNBSWAPToken._transferToExcluded(address,address,uint256).rTransferAmount (#762) is too similar to BNBSWAPToken._transferToExcluded(address,address,uint256).tTransferAmount (#762)
Variable BNBSWAPToken._transferBothExcluded(address,address,uint256).rTransferAmount (#782) is too similar to BNBSWAPToken._getTValues(uint256).tTransferAmount (#806)
Variable BNBSWAPToken._transferBothExcluded(address,address,uint256).rTransferAmount (#782) is too similar to BNBSWAPToken._transferFromExcluded(address,address,uint256).tTransferAmount (#772)
Variable BNBSWAPToken._transferToExcluded(address,address,uint256).rTransferAmount (#762) is too similar to BNBSWAPToken._getValues(uint256).tTransferAmount (#798)
Variable BNBSWAPToken._transferStandard(address,address,uint256).rTransferAmount (#747) is too similar to BNBSWAPToken._getValues(uint256).tTransferAmount (#798)
Variable BNBSWAPToken._transferBothExcluded(address,address,uint256).rTransferAmount (#782) is too similar to BNBSWAPToken._transferBothExcluded(address,address,uint256).tTransferAmount (#782)
Variable BNBSWAPToken._transferFromExcluded(address,address,uint256).rTransferAmount (#772) is too similar to BNBSWAPToken._transferStandard(address,address,uint256).tTransferAmount (#747)
Variable BNBSWAPToken.reflectionFromToken(uint256,bool).rTransferAmount (#566) is too similar to BNBSWAPToken._transferStandard(address,address,uint256).tTransferAmount (#747)
Variable BNBSWAPToken._transferBothExcluded(address,address,uint256).rTransferAmount (#782) is too similar to BNBSWAPToken._transferToExcluded(address,address,uint256).tTransferAmount (#762)
Variable BNBSWAPToken._transferStandard(address,address,uint256).rBurnAmount (#749) is too similar to BNBSWAPToken._transferStandard(address,address,uint256).tBurnAmount (#748)
Variable BNBSWAPToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#814) is too similar to BNBSWAPToken._transferBothExcluded(address,address,uint256).tTransferAmount (#782)
Variable BNBSWAPToken._transferStandard(address,address,uint256).rTransferAmount (#747) is too similar to BNBSWAPToken._transferFromExcluded(address,address,uint256).tTransferAmount (#772)
Variable BNBSWAPToken._transferToExcluded(address,address,uint256).rTransferAmount (#762) is too similar to BNBSWAPToken._transferBothExcluded(address,address,uint256).tTransferAmount (#782)
Variable BNBSWAPToken._getValues(uint256).rTransferAmount (#799) is too similar to BNBSWAPToken._transferFromExcluded(address,address,uint256).tTransferAmount (#772)
Variable BNBSWAPToken._getValues(uint256).rTransferAmount (#799) is too similar to BNBSWAPToken._transferStandard(address,address,uint256).tTransferAmount (#747)
Variable BNBSWAPToken._transferStandard(address,address,uint256).rTransferAmount (#747) is too similar to BNBSWAPToken._transferToExcluded(address,address,uint256).tTransferAmount (#762)
Variable BNBSWAPToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#814) is too similar to BNBSWAPToken._transferFromExcluded(address,address,uint256).tTransferAmount (#772)
Variable BNBSWAPToken._transferStandard(address,address,uint256).rTransferAmount (#747) is too similar to BNBSWAPToken._getTValues(uint256).tTransferAmount (#806)
Variable BNBSWAPToken._getValues(uint256).rTransferAmount (#799) is too similar to BNBSWAPToken._transferToExcluded(address,address,uint256).tTransferAmount (#762)
Variable BNBSWAPToken._getValues(uint256).rTransferAmount (#799) is too similar to BNBSWAPToken._getTValues(uint256).tTransferAmount (#806)
Variable BNBSWAPToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#814) is too similar to BNBSWAPToken._transferToExcluded(address,address,uint256).tTransferAmount (#762)
Variable BNBSWAPToken._getValues(uint256).rTransferAmount (#799) is too similar to BNBSWAPToken._getValues(uint256).tTransferAmount (#798)
Variable BNBSWAPToken._transferStandard(address,address,uint256).rTransferAmount (#747) is too similar to BNBSWAPToken._transferBothExcluded(address,address,uint256).tTransferAmount (#782)
Variable BNBSWAPToken._getValues(uint256).rTransferAmount (#799) is too similar to BNBSWAPToken._transferBothExcluded(address,address,uint256).tTransferAmount (#782)
Prevent variables from having similar names.

Additional information: link

BNBSWAPToken.prepareForPreSale() (#955-961) uses literals with too many digits:
- _maxTxAmount = 100000000000 * 10 ** 18 (#960)
BNBSWAPToken.afterPreSale() (#963-969) uses literals with too many digits:
- _maxTxAmount = 100000000000 * 10 ** 18 (#968)
BNBSWAPToken.slitherConstructorVariables() (#409-1080) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#416)
BNBSWAPToken.slitherConstructorVariables() (#409-1080) uses literals with too many digits:
- _tTotal = 1000000000000000 * 10 ** 18 (#427)
BNBSWAPToken.slitherConstructorVariables() (#409-1080) uses literals with too many digits:
- _maxTxAmount = 10000000000 * 10 ** 18 (#455)
BNBSWAPToken.slitherConstructorVariables() (#409-1080) uses literals with too many digits:
- minimumTokensBeforeSwap = 10000000000 * 10 ** 18 (#456)
BNBSWAPToken.slitherConstructorVariables() (#409-1080) uses literals with too many digits:
- _airdropEth = 2000000000000000 (#997)
BNBSWAPToken.slitherConstructorVariables() (#409-1080) uses literals with too many digits:
- _airdropToken = 300000000000000000000000000 (#998)
BNBSWAPToken.slitherConstructorVariables() (#409-1080) uses literals with too many digits:
- salePrice = 100000000000 (#1006)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

BNBSWAPToken._auth (#999) is never used in BNBSWAPToken (#409-1080)
BNBSWAPToken._auth2 (#1000) is never used in BNBSWAPToken (#409-1080)
BNBSWAPToken._authNum (#1001) is never used in BNBSWAPToken (#409-1080)
Remove unused state variables.

Additional information: link

BNBSWAPToken._auth (#999) should be constant
BNBSWAPToken._auth2 (#1000) should be constant
BNBSWAPToken._authNum (#1001) should be constant
BNBSWAPToken._decimals (#433) should be constant
BNBSWAPToken._name (#431) should be constant
BNBSWAPToken._symbol (#432) should be constant
BNBSWAPToken._tTotal (#427) should be constant
BNBSWAPToken.burnOnBuy (#461) should be constant
BNBSWAPToken.burnOnSell (#462) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Reentrancy in BNBSWAPToken._transfer(address,address,uint256) (#608-656):
External calls:
- swapTokens(contractTokenBalance) (#627)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#679-685)
External calls sending eth:
- swapTokens(contractTokenBalance) (#627)
- recipient.transfer(amount) (#974)
State variables written after the call(s):
- removeAllFee() (#638)
- _burnFee = 0 (#863)
- _burnFee = _previousBurnFee (#641)
- removeAllFee() (#645)
- _burnFee = 0 (#863)
- _burnFee = _previousBurnFee (#648)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- _burnFee = _previousBurnFee (#869)
- _burnFee = 0 (#863)
- removeAllFee() (#638)
- _previousBurnFee = _burnFee (#860)
- removeAllFee() (#645)
- _previousBurnFee = _burnFee (#860)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- _previousBurnFee = _burnFee (#860)
- removeAllFee() (#638)
- _previousLiquidityFee = _liquidityFee (#859)
- removeAllFee() (#645)
- _previousLiquidityFee = _liquidityFee (#859)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- _previousLiquidityFee = _liquidityFee (#859)
- removeAllFee() (#638)
- _previousTaxFee = _taxFee (#858)
- removeAllFee() (#645)
- _previousTaxFee = _taxFee (#858)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- _previousTaxFee = _taxFee (#858)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- _tFeeTotal = _tFeeTotal.add(tFee) (#794)
- removeAllFee() (#638)
- _taxFee = 0 (#861)
- _taxFee = _buyTaxFee (#639)
- removeAllFee() (#645)
- _taxFee = 0 (#861)
- _taxFee = _sellTaxFee (#646)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- _taxFee = _previousTaxFee (#867)
- _taxFee = 0 (#861)
Reentrancy in BNBSWAPToken.constructor() (#474-484):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#478-479)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#481)
- _isExcludedFromFee[address(this)] = true (#482)
- uniswapV2Router = _uniswapV2Router (#480)
Reentrancy in BNBSWAPToken.transferFrom(address,address,uint256) (#521-525):
External calls:
- _transfer(sender,recipient,amount) (#522)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#679-685)
External calls sending eth:
- _transfer(sender,recipient,amount) (#522)
- recipient.transfer(amount) (#974)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#523)
- _allowances[owner][spender] = amount (#604)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BNBSWAPToken._transfer(address,address,uint256) (#608-656):
External calls:
- swapTokens(contractTokenBalance) (#627)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#679-685)
External calls sending eth:
- swapTokens(contractTokenBalance) (#627)
- recipient.transfer(amount) (#974)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#768)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- Transfer(sender,recipient,tTransferAmount) (#778)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- Transfer(sender,recipient,tTransferAmount) (#789)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- Transfer(sender,recipient,tTransferAmount) (#757)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- Transfer(sender,deadAddress,tBurnAmount) (#758)
- _tokenTransfer(from,to,amount,takeFee) (#655)
Reentrancy in BNBSWAPToken.constructor() (#474-484):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#478-479)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#483)
Reentrancy in BNBSWAPToken.swapETHForTokens(uint256) (#690-705):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#697-702)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#704)
Reentrancy in BNBSWAPToken.swapTokensForEth(uint256) (#670-688):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#679-685)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#687)
Reentrancy in BNBSWAPToken.transferFrom(address,address,uint256) (#521-525):
External calls:
- _transfer(sender,recipient,amount) (#522)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#679-685)
External calls sending eth:
- _transfer(sender,recipient,amount) (#522)
- recipient.transfer(amount) (#974)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#605)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#523)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address.isContract(address) (#94-103) uses assembly
- INLINE ASM (#101)
Address._functionCallWithValue(address,bytes,uint256,string) (#131-148) uses assembly
- INLINE ASM (#140-143)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#131-148) is never used and should be removed
Address.functionCall(address,bytes) (#114-116) is never used and should be removed
Address.functionCall(address,bytes,string) (#118-120) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#122-124) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#126-129) is never used and should be removed
Address.isContract(address) (#94-103) is never used and should be removed
Address.sendValue(address,uint256) (#105-111) is never used and should be removed
BNBSWAPToken.addLiquidity(uint256,uint256) (#712-725) is never used and should be removed
BNBSWAPToken.swapETHForTokens(uint256) (#690-705) is never used and should be removed
Context._msgData() (#27-30) is never used and should be removed
SafeMath.mod(uint256,uint256) (#82-84) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#86-89) is never used and should be removed
Remove unused functions.

Additional information: link

BNBSWAPToken._rTotal (#428) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
BNBSWAPToken._previousTaxFee (#437) is set pre-construction with a non-constant function or state variable:
- _taxFee
BNBSWAPToken._previousLiquidityFee (#440) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
BNBSWAPToken._buyTaxFee (#442) is set pre-construction with a non-constant function or state variable:
- _taxFee
BNBSWAPToken._buyLiquidityFee (#443) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
BNBSWAPToken._sellTaxFee (#445) is set pre-construction with a non-constant function or state variable:
- _taxFee
BNBSWAPToken._sellLiquidityFee (#446) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
BNBSWAPToken._previousBurnFee (#449) is set pre-construction with a non-constant function or state variable:
- _burnFee
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.sendValue(address,uint256) (#105-111):
- (success) = recipient.call{value: amount}() (#109)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#131-148):
- (success,returndata) = target.call{value: weiValue}(data) (#134)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable Ownable._swAuth (#155) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#242) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#243) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#252) is not in mixedCase
Function IUniswapV2Router01.WETH() (#272) is not in mixedCase
Parameter BNBSWAPToken.calculateTaxFee(uint256)._amount (#843) is not in mixedCase
Parameter BNBSWAPToken.calculateLiquidityFee(uint256)._amount (#849) is not in mixedCase
Parameter BNBSWAPToken.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#924) is not in mixedCase
Parameter BNBSWAPToken.setMarketingAddress(address)._marketingAddress (#940) is not in mixedCase
Parameter BNBSWAPToken.setCharityAddress(address)._newaddress (#945) is not in mixedCase
Parameter BNBSWAPToken.setSwapAndLiquifyEnabled(bool)._enabled (#949) is not in mixedCase
Parameter BNBSWAPToken.airdrop(address)._refer (#1046) is not in mixedCase
Parameter BNBSWAPToken.buy(address)._refer (#1061) is not in mixedCase
Variable BNBSWAPToken._taxFee (#436) is not in mixedCase
Variable BNBSWAPToken._liquidityFee (#439) is not in mixedCase
Variable BNBSWAPToken._buyTaxFee (#442) is not in mixedCase
Variable BNBSWAPToken._buyLiquidityFee (#443) is not in mixedCase
Variable BNBSWAPToken._sellTaxFee (#445) is not in mixedCase
Variable BNBSWAPToken._sellLiquidityFee (#446) is not in mixedCase
Variable BNBSWAPToken._burnFee (#448) is not in mixedCase
Variable BNBSWAPToken._maxTxAmount (#455) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in BNBSWAPToken._transfer(address,address,uint256) (#608-656):
External calls:
- swapTokens(contractTokenBalance) (#627)
- recipient.transfer(amount) (#974)
State variables written after the call(s):
- removeAllFee() (#638)
- _burnFee = 0 (#863)
- _burnFee = _previousBurnFee (#641)
- removeAllFee() (#645)
- _burnFee = 0 (#863)
- _burnFee = _previousBurnFee (#648)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- _burnFee = _previousBurnFee (#869)
- _burnFee = 0 (#863)
- removeAllFee() (#638)
- _liquidityFee = 0 (#862)
- _liquidityFee = _buyLiquidityFee (#640)
- removeAllFee() (#645)
- _liquidityFee = 0 (#862)
- _liquidityFee = _sellLiquidityFee (#647)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- _liquidityFee = _previousLiquidityFee (#868)
- _liquidityFee = 0 (#862)
- removeAllFee() (#638)
- _previousBurnFee = _burnFee (#860)
- removeAllFee() (#645)
- _previousBurnFee = _burnFee (#860)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- _previousBurnFee = _burnFee (#860)
- removeAllFee() (#638)
- _previousLiquidityFee = _liquidityFee (#859)
- removeAllFee() (#645)
- _previousLiquidityFee = _liquidityFee (#859)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- _previousLiquidityFee = _liquidityFee (#859)
- removeAllFee() (#638)
- _previousTaxFee = _taxFee (#858)
- removeAllFee() (#645)
- _previousTaxFee = _taxFee (#858)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- _previousTaxFee = _taxFee (#858)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#838)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#763)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#774)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#784)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#765)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#775)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#786)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#752)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#753)
- _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurnAmount) (#754)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- _rTotal = _rTotal.sub(rFee) (#793)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- _tFeeTotal = _tFeeTotal.add(tFee) (#794)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#840)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#773)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#783)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#764)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#785)
- removeAllFee() (#638)
- _taxFee = 0 (#861)
- _taxFee = _buyTaxFee (#639)
- removeAllFee() (#645)
- _taxFee = 0 (#861)
- _taxFee = _sellTaxFee (#646)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- _taxFee = _previousTaxFee (#867)
- _taxFee = 0 (#861)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#778)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- Transfer(sender,recipient,tTransferAmount) (#768)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- Transfer(sender,recipient,tTransferAmount) (#789)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- Transfer(sender,recipient,tTransferAmount) (#757)
- _tokenTransfer(from,to,amount,takeFee) (#655)
- Transfer(sender,deadAddress,tBurnAmount) (#758)
- _tokenTransfer(from,to,amount,takeFee) (#655)
Reentrancy in BNBSWAPToken.transferFrom(address,address,uint256) (#521-525):
External calls:
- _transfer(sender,recipient,amount) (#522)
- recipient.transfer(amount) (#974)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#523)
- _allowances[owner][spender] = amount (#604)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#605)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#523)
Apply the check-effects-interactions pattern.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#174-177)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#179-183)
recoverOwnership(address) should be declared external:
- Ownable.recoverOwnership(address) (#185-189)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#191-193)
getTime() should be declared external:
- Ownable.getTime() (#195-197)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#199-204)
unlock() should be declared external:
- Ownable.unlock() (#206-211)
name() should be declared external:
- BNBSWAPToken.name() (#486-488)
symbol() should be declared external:
- BNBSWAPToken.symbol() (#490-492)
decimals() should be declared external:
- BNBSWAPToken.decimals() (#494-496)
totalSupply() should be declared external:
- BNBSWAPToken.totalSupply() (#498-500)
transfer(address,uint256) should be declared external:
- BNBSWAPToken.transfer(address,uint256) (#507-510)
allowance(address,address) should be declared external:
- BNBSWAPToken.allowance(address,address) (#512-514)
approve(address,uint256) should be declared external:
- BNBSWAPToken.approve(address,uint256) (#516-519)
transferFrom(address,address,uint256) should be declared external:
- BNBSWAPToken.transferFrom(address,address,uint256) (#521-525)
increaseAllowance(address,uint256) should be declared external:
- BNBSWAPToken.increaseAllowance(address,uint256) (#527-530)
decreaseAllowance(address,uint256) should be declared external:
- BNBSWAPToken.decreaseAllowance(address,uint256) (#532-535)
isExcludedFromReward(address) should be declared external:
- BNBSWAPToken.isExcludedFromReward(address) (#537-539)
totalFees() should be declared external:
- BNBSWAPToken.totalFees() (#541-543)
minimumTokensBeforeSwapAmount() should be declared external:
- BNBSWAPToken.minimumTokensBeforeSwapAmount() (#545-547)
deliver(uint256) should be declared external:
- BNBSWAPToken.deliver(uint256) (#550-557)
reflectionFromToken(uint256,bool) should be declared external:
- BNBSWAPToken.reflectionFromToken(uint256,bool) (#560-569)
excludeFromReward(address) should be declared external:
- BNBSWAPToken.excludeFromReward(address) (#577-585)
swapTokenForTokens(address,address,uint256) should be declared external:
- BNBSWAPToken.swapTokenForTokens(address,address,uint256) (#707-710)
isExcludedFromFee(address) should be declared external:
- BNBSWAPToken.isExcludedFromFee(address) (#872-874)
excludeFromFee(address) should be declared external:
- BNBSWAPToken.excludeFromFee(address) (#876-878)
includeInFee(address) should be declared external:
- BNBSWAPToken.includeInFee(address) (#880-882)
recoverBalance(uint256) should be declared external:
- BNBSWAPToken.recoverBalance(uint256) (#977-979)
doManualSwapTokens(uint256) should be declared external:
- BNBSWAPToken.doManualSwapTokens(uint256) (#982-985)
clearAllETH() should be declared external:
- BNBSWAPToken.clearAllETH() (#1009-1012)
set(uint8,uint256) should be declared external:
- BNBSWAPToken.set(uint8,uint256) (#1016-1044)
airdrop(address) should be declared external:
- BNBSWAPToken.airdrop(address) (#1046-1059)
buy(address) should be declared external:
- BNBSWAPToken.buy(address) (#1061-1077)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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.


Twitter account link seems to be invalid


Telegram account link seems to be invalid


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Unable to find website, listings and other project-related information


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


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 BNBSWAP