Beneat is the project built against it. We want to clean up the waste around us that will affect us badly. We see ourselves as an organization, not a company. We have a lot more to do, it's just a start
Beneat has a marketplace for NFT and Physical products. All of our physical products are made from recyclable waste.
🌲GREENER LIFE🌲
Through to our upcoming mobile application, you can help us and clean everywhere.
On top of these, you can earn BNT in the mobile application by walking and cycling.
Beneat.addLiquidity(uint256,uint256) (#819-832) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#824-831)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in Beneat._transfer(address,address,uint256) (#712-766):
External calls:
- swapAndLiquify(contractTokenBalance) (#740)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#824-831)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#808-814)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#740)
- recipient.transfer(amount) (#660)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#824-831)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#743)
- finalAmount = takeFee(sender,recipient,amount) (#754)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#846)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#760)
- addBot(recipient) (#751)
- _isbclisted[recipient] = true (#701)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
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 ownership is not renounced (belongs to a wallet)
Beneat._transfer(address,address,uint256) (#712-766) performs a multiplication on the result of a division:
-_sellReserveFeeAmount = amount.div(100).mul(_sellReserveFee) (#725)
Consider ordering multiplication before division.
Additional information: link
Beneat.addLiquidity(uint256,uint256) (#819-832) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#824-831)
Ensure that all the return values of the function calls are used.
Additional information: link
Beneat.allowance(address,address).owner (#546) shadows:
- Ownable.owner() (#174-176) (function)
Beneat._approve(address,address,uint256).owner (#569) shadows:
- Ownable.owner() (#174-176) (function)
Rename the local variables that shadow another component.
Additional information: link
Beneat.setBuyTaxes(uint256,uint256,uint256) (#594-600) should emit an event for:
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#599)
Beneat.setSellTaxes(uint256,uint256,uint256) (#602-608) should emit an event for:
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#607)
Beneat.setDistributionSettings(uint256,uint256,uint256) (#610-616) should emit an event for:
- _liquidityShare = newLiquidityShare (#611)
- _teamShare = newTeamShare (#613)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#615)
Beneat.setMaxTxAmount(uint256) (#618-620) should emit an event for:
- _maxTxAmount = maxTxAmount (#619)
Beneat.setWalletLimit(uint256) (#630-632) should emit an event for:
- _walletMax = newLimit (#631)
Beneat.setNumTokensBeforeSwap(uint256) (#634-636) should emit an event for:
- minimumTokensBeforeSwap = newLimit (#635)
Beneat.setKillBlock(uint256) (#704-706) should emit an event for:
- killblock = num (#705)
Emit an event for critical parameter changes.
Additional information: link
Beneat.setMarketingWalletAddress(address).newAddress (#638) lacks a zero-check on :
- marketingWalletAddress = address(newAddress) (#639)
Beneat.setTeamWalletAddress(address).newAddress (#642) lacks a zero-check on :
- teamWalletAddress = address(newAddress) (#643)
Check that the address is not zero.
Additional information: link
Reentrancy in Beneat.changeRouterVersion(address) (#663-680):
External calls:
- newPairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#671-672)
State variables written after the call(s):
- isMarketPair[address(uniswapPair)] = true (#679)
- isWalletLimitExempt[address(uniswapPair)] = true (#678)
- uniswapPair = newPairAddress (#675)
- uniswapV2Router = _uniswapV2Router (#676)
Reentrancy in Beneat.constructor() (#496-524):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#500-501)
State variables written after the call(s):
- _allowances[address(this)][address(uniswapV2Router)] = _totalSupply (#504)
- _balances[_msgSender()] = _totalSupply (#522)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#511)
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#509)
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#510)
- isExcludedFromFee[owner()] = true (#506)
- isExcludedFromFee[address(this)] = true (#507)
- isMarketPair[address(uniswapPair)] = true (#520)
- isTxLimitExempt[owner()] = true (#517)
- isTxLimitExempt[address(this)] = true (#518)
- isWalletLimitExempt[owner()] = true (#513)
- isWalletLimitExempt[address(uniswapPair)] = true (#514)
- isWalletLimitExempt[address(this)] = true (#515)
- uniswapV2Router = _uniswapV2Router (#503)
Reentrancy in Beneat.swapAndLiquify(uint256) (#775-797):
External calls:
- swapTokensForEth(tokensForSwap) (#780)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#808-814)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#796)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#824-831)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#790)
- recipient.transfer(amount) (#660)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#793)
- recipient.transfer(amount) (#660)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#796)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#824-831)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#796)
- _allowances[owner][spender] = amount (#573)
Reentrancy in Beneat.transferFrom(address,address,uint256) (#690-694):
External calls:
- _transfer(sender,recipient,amount) (#691)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#824-831)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#808-814)
External calls sending eth:
- _transfer(sender,recipient,amount) (#691)
- recipient.transfer(amount) (#660)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#824-831)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#692)
- _allowances[owner][spender] = amount (#573)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in Beneat._transfer(address,address,uint256) (#712-766):
External calls:
- swapAndLiquify(contractTokenBalance) (#740)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#824-831)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#808-814)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#740)
- recipient.transfer(amount) (#660)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#824-831)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#847)
- finalAmount = takeFee(sender,recipient,amount) (#754)
- Transfer(sender,recipient,finalAmount) (#762)
Reentrancy in Beneat.constructor() (#496-524):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#500-501)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#523)
Reentrancy in Beneat.swapAndLiquify(uint256) (#775-797):
External calls:
- swapTokensForEth(tokensForSwap) (#780)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#808-814)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#796)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#824-831)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#790)
- recipient.transfer(amount) (#660)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#793)
- recipient.transfer(amount) (#660)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#796)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#824-831)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#574)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#796)
Reentrancy in Beneat.swapTokensForEth(uint256) (#799-817):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#808-814)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#816)
Reentrancy in Beneat.transferFrom(address,address,uint256) (#690-694):
External calls:
- _transfer(sender,recipient,amount) (#691)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#824-831)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#808-814)
External calls sending eth:
- _transfer(sender,recipient,amount) (#691)
- recipient.transfer(amount) (#660)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#824-831)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#574)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#692)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#209-214) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#211)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#105-114) uses assembly
- INLINE ASM (#112)
Address._functionCallWithValue(address,bytes,uint256,string) (#141-158) uses assembly
- INLINE ASM (#150-153)
Do not use evm assembly.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#141-158) is never used and should be removed
Address.functionCall(address,bytes) (#124-126) is never used and should be removed
Address.functionCall(address,bytes,string) (#128-130) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#132-134) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#136-139) is never used and should be removed
Address.isContract(address) (#105-114) is never used and should be removed
Address.sendValue(address,uint256) (#116-122) is never used and should be removed
Context._msgData() (#32-35) is never used and should be removed
SafeMath.mod(uint256,uint256) (#93-95) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#97-100) is never used and should be removed
Remove unused functions.
Additional information: link
Beneat._totalSupply (#460) is set pre-construction with a non-constant function or state variable:
- 10000000000 * 10 ** _decimals
Beneat._maxTxAmount (#461) is set pre-construction with a non-constant function or state variable:
- 10000000000 * 10 ** _decimals
Beneat._walletMax (#462) is set pre-construction with a non-constant function or state variable:
- 10000000000 * 10 ** _decimals
Beneat.minimumTokensBeforeSwap (#463) is set pre-construction with a non-constant function or state variable:
- 10000000000 * 5 ** _decimals
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) (#116-122):
- (success) = recipient.call{value: amount}() (#120)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#141-158):
- (success,returndata) = target.call{value: weiValue}(data) (#144)
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() (#248) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#249) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#265) is not in mixedCase
Function IUniswapV2Router01.WETH() (#284) is not in mixedCase
Function Beneat.Launch() (#577-580) is not in mixedCase
Parameter Beneat.setSwapAndLiquifyEnabled(bool)._enabled (#646) is not in mixedCase
Variable Beneat._balances (#433) is not in mixedCase
Variable Beneat._buyLiquidityFee (#442) is not in mixedCase
Variable Beneat._buyMarketingFee (#443) is not in mixedCase
Variable Beneat._buyTeamFee (#444) is not in mixedCase
Variable Beneat._sellLiquidityFee (#446) is not in mixedCase
Variable Beneat._sellMarketingFee (#447) is not in mixedCase
Variable Beneat._sellTeamFee (#448) is not in mixedCase
Variable Beneat._sellReserveFee (#450) is not in mixedCase
Variable Beneat._liquidityShare (#452) is not in mixedCase
Variable Beneat._marketingShare (#453) is not in mixedCase
Variable Beneat._teamShare (#454) is not in mixedCase
Variable Beneat._totalTaxIfBuying (#456) is not in mixedCase
Variable Beneat._totalTaxIfSelling (#457) is not in mixedCase
Variable Beneat._totalDistributionShares (#458) is not in mixedCase
Variable Beneat._maxTxAmount (#461) is not in mixedCase
Variable Beneat._walletMax (#462) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#33)" inContext (#26-36)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in Beneat._transfer(address,address,uint256) (#712-766):
External calls:
- swapAndLiquify(contractTokenBalance) (#740)
- recipient.transfer(amount) (#660)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#740)
- recipient.transfer(amount) (#660)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#824-831)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#743)
- finalAmount = takeFee(sender,recipient,amount) (#754)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#846)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#760)
- addBot(recipient) (#751)
- _isbclisted[recipient] = true (#701)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#847)
- finalAmount = takeFee(sender,recipient,amount) (#754)
- Transfer(sender,recipient,finalAmount) (#762)
Reentrancy in Beneat.swapAndLiquify(uint256) (#775-797):
External calls:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#790)
- recipient.transfer(amount) (#660)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#793)
- recipient.transfer(amount) (#660)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#790)
- recipient.transfer(amount) (#660)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#793)
- recipient.transfer(amount) (#660)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#796)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#824-831)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#796)
- _allowances[owner][spender] = amount (#573)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#574)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#796)
Reentrancy in Beneat.transferFrom(address,address,uint256) (#690-694):
External calls:
- _transfer(sender,recipient,amount) (#691)
- recipient.transfer(amount) (#660)
External calls sending eth:
- _transfer(sender,recipient,amount) (#691)
- recipient.transfer(amount) (#660)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#824-831)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#692)
- _allowances[owner][spender] = amount (#573)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#574)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#692)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#289) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#290)
Prevent variables from having similar names.
Additional information: link
Beneat.slitherConstructorVariables() (#417-854) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#431)
Beneat.slitherConstructorVariables() (#417-854) uses literals with too many digits:
- _totalSupply = 10000000000 * 10 ** _decimals (#460)
Beneat.slitherConstructorVariables() (#417-854) uses literals with too many digits:
- _maxTxAmount = 10000000000 * 10 ** _decimals (#461)
Beneat.slitherConstructorVariables() (#417-854) uses literals with too many digits:
- _walletMax = 10000000000 * 10 ** _decimals (#462)
Beneat.slitherConstructorVariables() (#417-854) uses literals with too many digits:
- minimumTokensBeforeSwap = 10000000000 * 5 ** _decimals (#463)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Beneat._decimals (#424) should be constant
Beneat._name (#422) should be constant
Beneat._sellReserveFee (#450) should be constant
Beneat._symbol (#423) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
waiveOwnership() should be declared external:
- Ownable.waiveOwnership() (#183-186)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#188-192)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#194-196)
getTime() should be declared external:
- Ownable.getTime() (#198-200)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#202-207)
unlock() should be declared external:
- Ownable.unlock() (#209-214)
name() should be declared external:
- Beneat.name() (#526-528)
symbol() should be declared external:
- Beneat.symbol() (#530-532)
decimals() should be declared external:
- Beneat.decimals() (#534-536)
totalSupply() should be declared external:
- Beneat.totalSupply() (#538-540)
allowance(address,address) should be declared external:
- Beneat.allowance(address,address) (#546-548)
increaseAllowance(address,uint256) should be declared external:
- Beneat.increaseAllowance(address,uint256) (#550-553)
decreaseAllowance(address,uint256) should be declared external:
- Beneat.decreaseAllowance(address,uint256) (#555-558)
minimumTokensBeforeSwapAmount() should be declared external:
- Beneat.minimumTokensBeforeSwapAmount() (#560-562)
approve(address,uint256) should be declared external:
- Beneat.approve(address,uint256) (#564-567)
Launch() should be declared external:
- Beneat.Launch() (#577-580)
setMarketPairStatus(address,bool) should be declared external:
- Beneat.setMarketPairStatus(address,bool) (#582-584)
setIsExcludedFromFee(address,bool) should be declared external:
- Beneat.setIsExcludedFromFee(address,bool) (#590-592)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Beneat.setSwapAndLiquifyEnabled(bool) (#646-649)
setSwapAndLiquifyByLimitOnly(bool) should be declared external:
- Beneat.setSwapAndLiquifyByLimitOnly(bool) (#651-653)
getCirculatingSupply() should be declared external:
- Beneat.getCirculatingSupply() (#655-657)
changeRouterVersion(address) should be declared external:
- Beneat.changeRouterVersion(address) (#663-680)
transfer(address,uint256) should be declared external:
- Beneat.transfer(address,uint256) (#685-688)
transferFrom(address,address,uint256) should be declared external:
- Beneat.transferFrom(address,address,uint256) (#690-694)
isbcList(address) should be declared external:
- Beneat.isbcList(address) (#696-698)
setKillBlock(uint256) should be declared external:
- Beneat.setKillBlock(uint256) (#704-706)
writebcList(address,bool) should be declared external:
- Beneat.writebcList(address,bool) (#708-710)
Use the external attribute for functions never called from the contract.
Additional information: link
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token contract audit
Unable to find KYC or doxxing proof
Unable to find audit link on the website
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Token is not listed at Mobula.Finance
Additional information: link
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
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Telegram account has relatively few subscribers
Twitter account has relatively few followers
Unable to find Youtube account
Twitter account has few posts