BIG BNB Token Logo

BBNB [BIG BNB] Token

About BBNB

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 30 November 2021

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...)

BBNB.addLiquidity(uint256,uint256) (#1693-1708) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1699-1706)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in BBNB._transfer(address,address,uint256) (#1533-1618):
External calls:
- swapAndSendToFee(marketingTokens) (#1566)
- IERC20(WBNB).transfer(_marketingWalletAddress,newBalance) (#1626)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1684-1690)
- swapAndLiquify(swapTokens) (#1569)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1699-1706)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1664-1670)
- swapAndSendDividends(sellTokens) (#1572)
- success = IERC20(WBNB).transfer(address(dividendTracker),dividends) (#1713)
- dividendTracker.distributeWBNBDividends(dividends) (#1716)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1684-1690)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1569)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1699-1706)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1600)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#927)
- _balances[recipient] = _balances[recipient].add(amount) (#928)
- super._transfer(from,to,amount) (#1603)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#927)
- _balances[recipient] = _balances[recipient].add(amount) (#928)
- swapping = false (#1574)
Apply the check-effects-interactions pattern.

Additional information: link

BBNB.swapAndSendToFee(uint256) (#1620-1627) ignores return value by IERC20(WBNB).transfer(_marketingWalletAddress,newBalance) (#1626)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

BBNB._transfer(address,address,uint256) (#1533-1618) uses a dangerous strict equality:
- launchedAt == 0 && from == owner() && automatedMarketMakerPairs[to] (#1542)
Don't use strict equality to determine if an account has enough Ether or tokens.

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.

SafeMathInt.mul(int256,int256) (#56-63) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.6.2 (#1253) allows old versions
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

Parameter BBNBDividendTracker.getAccount(address)._account (#1782) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#275)" inContext (#269-278)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in BBNB.updateUniswapV2Router(address) (#1389-1396):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#1393-1394)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1395)
Apply the check-effects-interactions pattern.

Additional information: link

Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#1146) is too similar to BBNBDividendTracker.getAccount(address).withdrawableDividends (#1787)
Prevent variables from having similar names.

Additional information: link

BBNBDividendTracker.getAccountAtIndex(uint256) (#1827-1844) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#1838)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#51) is never used in SafeMathInt (#49-107)
Remove unused state variables.

Additional information: link

DividendPayingToken.WBNB (#1092) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Reentrancy in BBNB.updateDividendTracker(address) (#1372-1387):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1379)
- newDividendTracker.excludeFromDividends(address(this)) (#1380)
- newDividendTracker.excludeFromDividends(owner()) (#1381)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1382)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (#1384)
Apply the check-effects-interactions pattern.

Additional information: link

BBNBDividendTracker.canAutoClaim(uint256) (#1846-1852) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1847)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1851)
Avoid relying on block.timestamp.

Additional information: link

Reentrancy in BBNB.updateDividendTracker(address) (#1372-1387):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1379)
- newDividendTracker.excludeFromDividends(address(this)) (#1380)
- newDividendTracker.excludeFromDividends(owner()) (#1381)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1382)
State variables written after the call(s):
- dividendTracker = newDividendTracker (#1386)
Apply the check-effects-interactions pattern.

Additional information: link

BBNB._transfer(address,address,uint256).lastProcessedIndex (#1611) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

BBNB.addLiquidity(uint256,uint256) (#1693-1708) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1699-1706)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.accumulativeDividendOf(address)._owner (#1191) shadows:
- Ownable._owner (#283) (state variable)
Rename the local variables that shadow another component.

Additional information: link

BBNB.setMarketingFee(uint256) (#1427-1429) should emit an event for:
- marketingFee = value (#1428)
Emit an event for critical parameter changes.

Additional information: link

BBNB.updateUniswapV2Router(address)._uniswapV2Pair (#1393-1394) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (#1395)
Check that the address is not zero.

Additional information: link

Variable 'BBNB._transfer(address,address,uint256).claims (#1611)' in BBNB._transfer(address,address,uint256) (#1533-1618) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1612)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

process(uint256) should be declared external:
- BBNBDividendTracker.process(uint256) (#1871-1916)
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.


Number of Binance Smart Chain (BSC) token holders is low.


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


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for BBNB