BuffedKabosu Token Logo

BuffedKabosu Token

About BuffedKabosu

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

BuffedKabosu.swapBack() (#528-597) sends eth to arbitrary user
Dangerous calls:
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountETHMarketing}() (#572-575)
- (success,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountETHBuyBack}() (#576-579)
- (success,None) = address(ecosystemFeeReceiver).call{gas: 30000,value: amountETHEco}() (#580-583)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in BuffedKabosu._transferFrom(address,address,uint256) (#463-501):
External calls:
- swapBack() (#483)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#550-556)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountETHMarketing}() (#572-575)
- (success,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountETHBuyBack}() (#576-579)
- (success,None) = address(ecosystemFeeReceiver).call{gas: 30000,value: amountETHEco}() (#580-583)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#588-595)
External calls sending eth:
- swapBack() (#483)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountETHMarketing}() (#572-575)
- (success,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountETHBuyBack}() (#576-579)
- (success,None) = address(ecosystemFeeReceiver).call{gas: 30000,value: amountETHEco}() (#580-583)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#588-595)
State variables written after the call(s):
- _gonBalances[sender] = _gonBalances[sender].sub(gonAmount) (#486)
- _gonBalances[recipient] = _gonBalances[recipient].add(gonAmountReceived) (#491-493)
- gonAmountReceived = takeFee(sender,gonAmount) (#488-490)
- _gonBalances[address(this)] = _gonBalances[address(this)].add(feeAmount) (#520-522)
Apply the check-effects-interactions pattern.

Additional information: link

BuffedKabosu.swapBack().success (#572) is written in both
(success,None) = address(ecosystemFeeReceiver).call{gas: 30000,value: amountETHEco}() (#580-583)
success = false (#585)
Fix or remove the writes.

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.

BuffedKabosu.slitherConstructorVariables() (#269-805) performs a multiplication on the result of a division:
-gonMaxWallet = TOTAL_GONS.div(100).mul(5) (#308)
Consider ordering multiplication before division.

Additional information: link

BuffedKabosu.swapBack() (#528-597) ignores return value by router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#588-595)
Ensure that all the return values of the function calls are used.

Additional information: link

ERC20Detailed.constructor(string,string,uint8).decimals (#102) shadows:
- ERC20Detailed.decimals() (#117-119) (function)
Rename the local variables that shadow another component.

Additional information: link

BuffedKabosu.setMaster(address) (#411-413) should emit an event for:
- master = _master (#412)
Emit an event for critical parameter changes.

Additional information: link

BuffedKabosu.setFees(uint256,uint256,uint256,uint256,uint256) (#720-734) should emit an event for:
- ecosystemFee = _ecosystemFee (#727)
- liquidityFee = _liquidityFee (#728)
- buyBackFee = _buyBackFee (#729)
- marketingFee = _marketingFee (#730)
- totalFee = ecosystemFee.add(liquidityFee).add(marketingFee).add(buyBackFee) (#731)
- feeDenominator = _feeDenominator (#732)
Emit an event for critical parameter changes.

Additional information: link

BuffedKabosu.clearStuckBalance(uint256,address).adr (#756) lacks a zero-check on :
- address(adr).transfer((amountETH * amountPercentage) / 100) (#758-760)
Check that the address is not zero.

Additional information: link

Reentrancy in BuffedKabosu.constructor() (#380-409):
External calls:
- pair = IDEXFactory(router.factory()).createPair(router.WETH(),address(this)) (#383-386)
State variables written after the call(s):
- _allowedFragments[address(this)][address(router)] = uint256(- 1) (#387)
- _gonBalances[msg.sender] = TOTAL_GONS (#391)
- _gonsPerFragment = TOTAL_GONS.div(_totalSupply) (#392)
- _isFeeExempt[msg.sender] = true (#395)
- _isFeeExempt[address(this)] = true (#396)
- _isMaxWalletExempt[pair] = true (#398)
- _isMaxWalletExempt[DEAD] = true (#399)
- _isMaxWalletExempt[address(this)] = true (#400)
- _isMaxWalletExempt[msg.sender] = true (#401)
- _totalSupply = INITIAL_FRAGMENTS_SUPPLY (#390)
- autoLiquidityReceiver = 0xe9aD18f99E548243d62D2E22B5AC6a4cd634AA1f (#403)
- buyBackFeeReceiver = 0xB5C3A781dc29Ce1652c126CD0349995fA62e7fEC (#406)
- ecosystemFeeReceiver = 0x06CA8F5df93CD0890a5841EDD341060E80660087 (#405)
- initialDistributionFinished = false (#394)
- marketingFeeReceiver = 0xe9aD18f99E548243d62D2E22B5AC6a4cd634AA1f (#404)
- pairContract = InterfaceLP(pair) (#388)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BuffedKabosu.rebase(uint256,int256) (#352-378):
External calls:
- pairContract.sync() (#374)
Event emitted after the call(s):
- LogRebase(epoch,_totalSupply) (#376)
Apply the check-effects-interactions pattern.

Additional information: link

SafeMathInt.sub(int256,int256) (#140-144) is never used and should be removed
Remove unused functions.

Additional information: link

BuffedKabosu.totalFee (#314-315) is set pre-construction with a non-constant function or state variable:
- ecosystemFee.add(liquidityFee).add(marketingFee).add(buyBackFee)
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

Pragma version^0.7.4 (#4) 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

Low level call in BuffedKabosu.swapBack() (#528-597):
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountETHMarketing}() (#572-575)
- (success,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountETHBuyBack}() (#576-579)
- (success,None) = address(ecosystemFeeReceiver).call{gas: 30000,value: amountETHEco}() (#580-583)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable BuffedKabosu.ZERO (#319) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#215) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#216)
Prevent variables from having similar names.

Additional information: link

BuffedKabosu.slitherConstructorVariables() (#269-805) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#319)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#124) is never used in SafeMathInt (#122-156)
Remove unused state variables.

Additional information: link

BuffedKabosu.ZERO (#319) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

rescueToken(address,uint256) should be declared external:
- BuffedKabosu.rescueToken(address,uint256) (#748-754)
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


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 BuffedKabosu