Bitcoin Banana Token Logo

BIBA [Bitcoin Banana] Token

About BIBA

Listings

Token 2 years

Bitcoinbanana is a 100% meme coin initially codes were stolen by bad monkeys to Mars, we've recovered them in DeFi fashion.

Social

Laser Scorebeta Last Audit: 30 November 2021

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

Anti-Scam

Links


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

CoinToken.addLiquidity(uint256,uint256) (#1090-1103) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in CoinToken._transfer(address,address,uint256) (#1003-1047):
External calls:
- swapAndLiquify(contractTokenBalance) (#1034)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1081-1087)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1034)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1046)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#954)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1128)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1137)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#868)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1148)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1129)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1139)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1149)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#870)
- _tokenTransfer(from,to,amount,takeFee) (#1046)
- _rTotal = _rTotal.sub(rFee) (#909)
- _tokenTransfer(from,to,amount,takeFee) (#1046)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#956)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1147)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#867)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1138)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#869)
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.

CoinToken.addLiquidity(uint256,uint256) (#1090-1103) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
Ensure that all the return values of the function calls are used.

Additional information: link

CoinToken._approve(address,address,uint256).owner (#995) shadows:
- Ownable.owner() (#404-406) (function)
Rename the local variables that shadow another component.

Additional information: link

CoinToken.setMaxTxPercent(uint256) (#896-898) should emit an event for:
- _maxTxAmount = maxTxPercent * 10 ** _decimals (#897)
Emit an event for critical parameter changes.

Additional information: link

CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,uint256,uint256,address,address,address).service (#724) lacks a zero-check on :
- address(service).transfer(msg.value) (#753)
Check that the address is not zero.

Additional information: link

Reentrancy in CoinToken.transferFrom(address,address,uint256) (#793-797):
External calls:
- _transfer(sender,recipient,amount) (#794)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1081-1087)
External calls sending eth:
- _transfer(sender,recipient,amount) (#794)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#795)
- _allowances[owner][spender] = amount (#999)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in CoinToken.transferFrom(address,address,uint256) (#793-797):
External calls:
- _transfer(sender,recipient,amount) (#794)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1081-1087)
External calls sending eth:
- _transfer(sender,recipient,amount) (#794)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1000)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#795)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#357-378) uses assembly
- INLINE ASM (#370-373)
Do not use evm assembly.

Additional information: link

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

Additional information: link

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

Additional information: link

Variable CoinToken._maxTxAmount (#707) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#237)" inContext (#231-240)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,uint256,uint256,address,address,address) (#724-755):
External calls:
- address(service).transfer(msg.value) (#753)
Event emitted after the call(s):
- Transfer(address(0),tokenOwner,_tTotal) (#754)
Apply the check-effects-interactions pattern.

Additional information: link

Variable CoinToken._getValues(uint256).rTransferAmount (#915) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#1127)
Prevent variables from having similar names.

Additional information: link

isExcludedFromFee(address) should be declared external:
- CoinToken.isExcludedFromFee(address) (#991-993)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap volume is low.


Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.


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 number of swaps.


Twitter account link seems to be invalid


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


Unable to find token contract audit


Unable to find audit link on the website


Unable to find whitepaper link on the website


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


Token has no active CoinGecko listing / rank


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


Young tokens have high risks of price dump / death


Token has relatively low CoinMarketCap rank

Price for BIBA