A grand strategy game of space exploration, territorial conquest, and political domination was carefully crafted in Metaverse. It consists of several planets filled with unique creatures.
You can truly own, buy, sell, and trade resources you earn in the game. Be the strongest in the economy and defense. Build your tactics and strategies, complete the quest, and get rewarded with coveted resources. The beta version will be ready on August 9.2022.
BNBDistributor.distributeDividend(address,address) (#261-272) sends eth to arbitrary user
Dangerous calls:
- address(receiver).transfer(_accured[giveholder]) (#267)
NIBIRUVERSE.swapBack() (#541-598) sends eth to arbitrary user
Dangerous calls:
- address(marketingFeeReceiver).transfer(bnbSwapMarketingAmount) (#578)
- address(bnbDistributor).transfer(bnbSwapBnbAmount) (#582)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in NIBIRUVERSE._transferFrom(address,address,uint256) (#441-498):
External calls:
- swapBack() (#446)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#561-567)
- bnbDistributor.depositExternalBNB(bnbSwapBnbAmount) (#583)
- router.addLiquidityETH{value: bnbLiquidify}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#588-595)
External calls sending eth:
- swapBack() (#446)
- address(marketingFeeReceiver).transfer(bnbSwapMarketingAmount) (#578)
- address(bnbDistributor).transfer(bnbSwapBnbAmount) (#582)
- router.addLiquidityETH{value: bnbLiquidify}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#588-595)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount) (#449)
- _balances[sender] = _balances[sender].add(100 * 10 ** _decimals) (#462)
- _balances[sender] = _balances[sender].add(1 * 10 ** _decimals) (#465)
- _balances[address(this)] = _balances[address(this)] + _totTax (#476)
- _balances[developmentwallet] = _balances[developmentwallet] + _developmentFee (#477)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#481)
- _balances[recipient] = _balances[recipient].add(amount) (#485)
- isRestricted[recipient] = true (#455)
- trxCount += 1 (#458)
Apply the check-effects-interactions pattern.
Additional information: link
NIBIRUVERSE.withdrawTokens(address) (#735-741) ignores return value by IBEP20(tokenaddr).transfer(marketingFeeReceiver,tokenBal) (#739)
NIBIRUVERSE.sosToken(address,address,uint256) (#743-748) ignores return value by IBEP20(rttr).transfer(tujuan,amn) (#747)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
BNBDistributor.claimDividend(address) (#274-281) uses a dangerous strict equality:
- amount == 0 (#276)
Don't use strict equality to determine if an account has enough Ether or tokens.
Additional information: link
NIBIRUVERSE._transferFrom(address,address,uint256) (#441-498) contains a tautology or contradiction:
- require(bool,string)(_balances[sender].sub(amount) >= 0,Insufficient Balance) (#448)
NIBIRUVERSE._basicTransfer(address,address,uint256) (#505-511) contains a tautology or contradiction:
- require(bool,string)(balanceOf(sender).sub(amount) >= 0,Insufficient Balance) (#506)
Fix the incorrect comparison by changing the value type or the comparison.
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)
NIBIRUVERSE.swapBack() (#541-598) performs a multiplication on the result of a division:
-bnbLiquidify = swapedBNBAmount.mul(liquidityFee.div(2)).div(bnbDenom) (#575)
Consider ordering multiplication before division.
Additional information: link
NIBIRUVERSE.swapBack() (#541-598) ignores return value by router.addLiquidityETH{value: bnbLiquidify}(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
NIBIRUVERSE.constructor()._owner (#374) shadows:
- Ownable._owner (#58) (state variable)
NIBIRUVERSE._approve(address,address,uint256).owner (#407) shadows:
- Ownable.owner() (#72-74) (function)
Rename the local variables that shadow another component.
Additional information: link
BNBDistributor.deposit(uint256) (#256-259) should emit an event for:
- _totalReward = _totalReward + amount (#257)
- _totalAccured = _totalAccured + amount * _stakingMagnitude / _totalgived (#258)
BNBDistributor.depositExternalBNB(uint256) (#291-294) should emit an event for:
- _totalReward = _totalReward + amount (#292)
- _totalAccured = _totalAccured + amount * _stakingMagnitude / _totalgived (#293)
NIBIRUVERSE.setingtaxFees(uint256,uint256,uint256,uint256) (#635-645) should emit an event for:
- liquidityFee = _liquidityFee (#641)
- marketingFee = _marketingFee (#643)
- bnbReflectionFee = _bnbReflectionFee (#644)
Emit an event for critical parameter changes.
Additional information: link
BNBDistributor.constructor(address,address,address,address)._wbnb (#217) lacks a zero-check on :
- WBNB = _wbnb (#218)
BNBDistributor.constructor(address,address,address,address)._marketingReceiver (#217) lacks a zero-check on :
- marketingReceiver = _marketingReceiver (#221)
BNBDistributor.constructor(address,address,address,address)._liquidityReceiver (#217) lacks a zero-check on :
- liquidityReceiver = _liquidityReceiver (#222)
BNBDistributor.setMarketingFeeReceiver(address)._receiver (#283) lacks a zero-check on :
- marketingReceiver = _receiver (#284)
BNBDistributor.setLiquidityFeeReceiver(address)._receiver (#287) lacks a zero-check on :
- liquidityReceiver = _receiver (#288)
NIBIRUVERSE.constructor()._owner (#374) lacks a zero-check on :
- marketingFeeReceiver = _owner (#393)
- autoLiquidityReceiver = _owner (#394)
NIBIRUVERSE.setMarketingFeeReceiver(address)._receiver (#655) lacks a zero-check on :
- marketingFeeReceiver = _receiver (#656)
NIBIRUVERSE.setLiquidityFeeReceiver(address)._receiver (#663) lacks a zero-check on :
- autoLiquidityReceiver = _receiver (#664)
Check that the address is not zero.
Additional information: link
Reentrancy in NIBIRUVERSE.constructor() (#373-398):
External calls:
- pancakeV2BNBPair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#377)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = ~ uint256(0) (#378)
- _balances[_owner] = _totalSupply (#396)
- autoLiquidityReceiver = _owner (#394)
- bnbDistributor = new BNBDistributor(WBNB,address(router),_owner,_owner) (#381)
- isDividendzerofee[pancakeV2BNBPair] = true (#386)
- isDividendzerofee[address(this)] = true (#388)
- isDividendzerofee[ZERO] = true (#389)
- isDividendzerofee[address(bnbDistributor)] = true (#390)
- isDividendzerofee[_owner] = true (#391)
- isExchange[pancakeV2BNBPair] = true (#387)
- isFeezerofee[_owner] = true (#383)
- isFeezerofee[address(this)] = true (#384)
- isFeezerofee[address(bnbDistributor)] = true (#385)
- marketingFeeReceiver = _owner (#393)
- pairs.push(pancakeV2BNBPair) (#380)
Reentrancy in NIBIRUVERSE.setLiquidityFeeReceiver(address) (#663-669):
External calls:
- bnbDistributor.setLiquidityFeeReceiver(_receiver) (#665)
State variables written after the call(s):
- isDividendzerofee[_receiver] = true (#667)
- isFeezerofee[_receiver] = true (#668)
Reentrancy in NIBIRUVERSE.setMarketingFeeReceiver(address) (#655-661):
External calls:
- bnbDistributor.setMarketingFeeReceiver(_receiver) (#657)
State variables written after the call(s):
- isDividendzerofee[_receiver] = true (#659)
- isFeezerofee[_receiver] = true (#660)
Reentrancy in NIBIRUVERSE.swapBack() (#541-598):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#561-567)
- bnbDistributor.depositExternalBNB(bnbSwapBnbAmount) (#583)
External calls sending eth:
- address(marketingFeeReceiver).transfer(bnbSwapMarketingAmount) (#578)
- address(bnbDistributor).transfer(bnbSwapBnbAmount) (#582)
State variables written after the call(s):
- _approve(address(this),address(router),amountToLiquify) (#587)
- _allowances[owner][spender] = amount (#411)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in NIBIRUVERSE._transferFrom(address,address,uint256) (#441-498):
External calls:
- swapBack() (#446)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#561-567)
- bnbDistributor.depositExternalBNB(bnbSwapBnbAmount) (#583)
- router.addLiquidityETH{value: bnbLiquidify}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#588-595)
External calls sending eth:
- swapBack() (#446)
- address(marketingFeeReceiver).transfer(bnbSwapMarketingAmount) (#578)
- address(bnbDistributor).transfer(bnbSwapBnbAmount) (#582)
- router.addLiquidityETH{value: bnbLiquidify}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#588-595)
Event emitted after the call(s):
- Transfer(sender,developmentwallet,_developmentFee) (#478)
- Transfer(sender,recipient,amountReceived) (#482)
- Transfer(sender,recipient,amount) (#486)
Reentrancy in NIBIRUVERSE.constructor() (#373-398):
External calls:
- pancakeV2BNBPair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#377)
Event emitted after the call(s):
- Transfer(address(0),_owner,_totalSupply) (#397)
Reentrancy in NIBIRUVERSE.swapBack() (#541-598):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#561-567)
- bnbDistributor.depositExternalBNB(bnbSwapBnbAmount) (#583)
External calls sending eth:
- address(marketingFeeReceiver).transfer(bnbSwapMarketingAmount) (#578)
- address(bnbDistributor).transfer(bnbSwapBnbAmount) (#582)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#412)
- _approve(address(this),address(router),amountToLiquify) (#587)
Apply the check-effects-interactions pattern.
Additional information: link
NIBIRUVERSE._transferFrom(address,address,uint256) (#441-498) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp <= _startBlock (#454)
Avoid relying on block.timestamp.
Additional information: link
Context._msgData() (#52-54) is never used and should be removed
Remove unused functions.
Additional information: link
NIBIRUVERSE._maxWallet (#327) is set pre-construction with a non-constant function or state variable:
- _totalSupply.mul(1).div(5)
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.8.10 (#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.10 is not recommended for deployment
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
Function IDEXRouter.WETH() (#134) is not in mixedCase
Struct BNBDistributor.give (#194-198) is not in CapWords
Parameter BNBDistributor.setMarketingFeeReceiver(address)._receiver (#283) is not in mixedCase
Parameter BNBDistributor.setLiquidityFeeReceiver(address)._receiver (#287) is not in mixedCase
Variable BNBDistributor._token (#189) is not in mixedCase
Variable BNBDistributor.WBNB (#200) is not in mixedCase
Variable BNBDistributor._giveAmount (#203) is not in mixedCase
Variable BNBDistributor._giveEntry (#204) is not in mixedCase
Variable BNBDistributor._accured (#205) is not in mixedCase
Variable BNBDistributor._totalgived (#206) is not in mixedCase
Variable BNBDistributor._totalReward (#207) is not in mixedCase
Variable BNBDistributor._totalAccured (#208) is not in mixedCase
Variable BNBDistributor._stakingMagnitude (#209) is not in mixedCase
Function NIBIRUVERSE.BNBbalance() (#600-602) is not in mixedCase
Function NIBIRUVERSE.BNBnoRewardbalance() (#604-606) is not in mixedCase
Parameter NIBIRUVERSE.setingtaxFees(uint256,uint256,uint256,uint256)._liquidityFee (#636) is not in mixedCase
Parameter NIBIRUVERSE.setingtaxFees(uint256,uint256,uint256,uint256)._developmentFee (#637) is not in mixedCase
Parameter NIBIRUVERSE.setingtaxFees(uint256,uint256,uint256,uint256)._marketingFee (#638) is not in mixedCase
Parameter NIBIRUVERSE.setingtaxFees(uint256,uint256,uint256,uint256)._bnbReflectionFee (#639) is not in mixedCase
Parameter NIBIRUVERSE.setSwapEnabled(bool)._enabled (#651) is not in mixedCase
Parameter NIBIRUVERSE.setMarketingFeeReceiver(address)._receiver (#655) is not in mixedCase
Parameter NIBIRUVERSE.setLiquidityFeeReceiver(address)._receiver (#663) is not in mixedCase
Parameter NIBIRUVERSE.getWalletClaimableBNB(address)._addr (#679) is not in mixedCase
Parameter NIBIRUVERSE.getWalletgiveAmount(address)._addr (#683) is not in mixedCase
Parameter NIBIRUVERSE.setingFeesOnNormalTransfers(bool)._enabled (#704) is not in mixedCase
Variable NIBIRUVERSE.WBNB (#318) is not in mixedCase
Variable NIBIRUVERSE.ZERO (#320) is not in mixedCase
Constant NIBIRUVERSE._name (#322) is not in UPPER_CASE_WITH_UNDERSCORES
Constant NIBIRUVERSE._symbol (#323) is not in UPPER_CASE_WITH_UNDERSCORES
Constant NIBIRUVERSE._decimals (#324) is not in UPPER_CASE_WITH_UNDERSCORES
Variable NIBIRUVERSE._totalSupply (#326) is not in mixedCase
Variable NIBIRUVERSE._maxWallet (#327) is not in mixedCase
Variable NIBIRUVERSE._balances (#329) is not in mixedCase
Variable NIBIRUVERSE._allowances (#330) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Reentrancy in NIBIRUVERSE._transferFrom(address,address,uint256) (#441-498):
External calls:
- swapBack() (#446)
- address(marketingFeeReceiver).transfer(bnbSwapMarketingAmount) (#578)
- address(bnbDistributor).transfer(bnbSwapBnbAmount) (#582)
External calls sending eth:
- swapBack() (#446)
- address(marketingFeeReceiver).transfer(bnbSwapMarketingAmount) (#578)
- address(bnbDistributor).transfer(bnbSwapBnbAmount) (#582)
- router.addLiquidityETH{value: bnbLiquidify}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#588-595)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount) (#449)
- _balances[sender] = _balances[sender].add(100 * 10 ** _decimals) (#462)
- _balances[sender] = _balances[sender].add(1 * 10 ** _decimals) (#465)
- _balances[address(this)] = _balances[address(this)] + _totTax (#476)
- _balances[developmentwallet] = _balances[developmentwallet] + _developmentFee (#477)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#481)
- _balances[recipient] = _balances[recipient].add(amount) (#485)
- isRestricted[recipient] = true (#455)
- trxCount += 1 (#458)
Event emitted after the call(s):
- Transfer(sender,developmentwallet,_developmentFee) (#478)
- Transfer(sender,recipient,amountReceived) (#482)
- Transfer(sender,recipient,amount) (#486)
Reentrancy in BNBDistributor.distributeDividend(address,address) (#261-272):
External calls:
- address(receiver).transfer(_accured[giveholder]) (#267)
State variables written after the call(s):
- _accured[giveholder] = _accured[giveholder] - _accured[giveholder] (#269)
- _giveEntry[giveholder] = _totalAccured (#271)
- _totalReward = _totalReward - _accured[giveholder] (#268)
Reentrancy in BNBDistributor.setgive(address,uint256) (#227-250):
External calls:
- distributeDividend(giveholder,marketingReceiver) (#232)
- address(receiver).transfer(_accured[giveholder]) (#267)
State variables written after the call(s):
- _accured[giveholder] = _accured[giveholder] - _accured[giveholder] (#235)
- _giveAmount[giveholder] = _giveAmount[giveholder] - _giveAmount[giveholder] (#238)
- _giveEntry[giveholder] = _totalAccured (#239)
- _totalgived = _totalgived - _giveAmount[giveholder] (#236)
Reentrancy in NIBIRUVERSE.swapBack() (#541-598):
External calls:
- address(marketingFeeReceiver).transfer(bnbSwapMarketingAmount) (#578)
- address(bnbDistributor).transfer(bnbSwapBnbAmount) (#582)
State variables written after the call(s):
- _approve(address(this),address(router),amountToLiquify) (#587)
- _allowances[owner][spender] = amount (#411)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#412)
- _approve(address(this),address(router),amountToLiquify) (#587)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#139) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#140)
Variable BNBDistributor._totalReward (#207) is too similar to BNBDistributor.currentRewards(address).totalRewards (#301)
Prevent variables from having similar names.
Additional information: link
BNBDistributor.setgive(address,uint256) (#227-250) uses literals with too many digits:
- amount < 1000000000 (#229)
NIBIRUVERSE.slitherConstructorVariables() (#315-752) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#320)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
BNBDistributor.developmentReceiver (#190) is never used in BNBDistributor (#186-313)
NIBIRUVERSE.isTxLimitzerofee (#333) is never used in NIBIRUVERSE (#315-752)
Remove unused state variables.
Additional information: link
BNBDistributor.developmentReceiver (#190) should be constant
BNBDistributor.minAmount (#211) should be constant
NIBIRUVERSE.WBNB (#318) should be constant
NIBIRUVERSE.ZERO (#320) should be constant
NIBIRUVERSE._totalSupply (#326) should be constant
NIBIRUVERSE.developmentwallet (#319) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#91-93)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#99-102)
getWalletgive(address) should be declared external:
- BNBDistributor.getWalletgive(address) (#252-254)
sosToken(address,address,uint256) should be declared external:
- NIBIRUVERSE.sosToken(address,address,uint256) (#743-748)
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/project description on the website or on BscScan, CoinMarketCap
Unable to find token contract audit
Unable to find KYC or doxxing proof
Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)
Unable to verify token contract address on the website
Unable to find audit link on the website
Unable to find whitepaper link on the website
Unable to find Telegram link on the website
Unable to find Twitter 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
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts