Dinuu Token Logo

DUU [Dinuu] Token

About DUU

Listings

Token 3 years

Website

white paper

The DinoDefi Team is pleased to announce a new addition to our highly robust and professional Defi platform – Dinuu (DUU.) With a fixed APY of 383025.8%, investors will enjoy a simple and highly efficient way of earning DUU Tokens. 🚀 Huge NFT Give Away – all investors contributing 1 BNB or more will earn a DINO EGG NFT. ✅ Mint a GOLDEN EGG to earn a share of over 131 000 USD worth of DUU.🚀

Social

Laser Scorebeta Last Audit: 20 August 2022

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

Dinuu.swapBack() (#762-800) sends eth to arbitrary user
Dangerous calls:
- (success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndSIF.mul(treasuryFee).div(treasuryFee.add(safuuInsuranceFundFee))}() (#788-793)
- (success,None) = address(safuuInsuranceFundReceiver).call{gas: 30000,value: amountETHToTreasuryAndSIF.mul(safuuInsuranceFundFee).div(treasuryFee.add(safuuInsuranceFundFee))}() (#794-799)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in Dinuu._transferFrom(address,address,uint256) (#648-687):
External calls:
- rebase() (#660)
- pairContract.sync() (#607)
- addLiquidity() (#664)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#739-745)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#750-757)
- swapBack() (#668)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#776-782)
- (success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndSIF.mul(treasuryFee).div(treasuryFee.add(safuuInsuranceFundFee))}() (#788-793)
- (success,None) = address(safuuInsuranceFundReceiver).call{gas: 30000,value: amountETHToTreasuryAndSIF.mul(safuuInsuranceFundFee).div(treasuryFee.add(safuuInsuranceFundFee))}() (#794-799)
External calls sending eth:
- addLiquidity() (#664)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#750-757)
- swapBack() (#668)
- (success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndSIF.mul(treasuryFee).div(treasuryFee.add(safuuInsuranceFundFee))}() (#788-793)
- (success,None) = address(safuuInsuranceFundReceiver).call{gas: 30000,value: amountETHToTreasuryAndSIF.mul(safuuInsuranceFundFee).div(treasuryFee.add(safuuInsuranceFundFee))}() (#794-799)
State variables written after the call(s):
- _gonBalances[sender] = _gonBalances[sender].sub(gonAmount) (#672)
- _gonBalances[recipient] = _gonBalances[recipient].add(gonAmountReceived) (#676-678)
- gonAmountReceived = takeFee(sender,recipient,gonAmount) (#673-675)
- _gonBalances[firePit] = _gonBalances[firePit].add(gonAmount.div(feeDenominator).mul(firePitFee)) (#704-706)
- _gonBalances[address(this)] = _gonBalances[address(this)].add(gonAmount.div(feeDenominator).mul(_treasuryFee.add(safuuInsuranceFundFee))) (#707-709)
- _gonBalances[autoLiquidityReceiver] = _gonBalances[autoLiquidityReceiver].add(gonAmount.div(feeDenominator).mul(liquidityFee)) (#710-712)
- swapBack() (#668)
- inSwap = true (#534)
- inSwap = false (#536)
Apply the check-effects-interactions pattern.

Additional information: link

Dinuu._name (#491) shadows:
- ERC20Detailed._name (#456)
Dinuu._symbol (#492) shadows:
- ERC20Detailed._symbol (#457)
Dinuu._decimals (#493) shadows:
- ERC20Detailed._decimals (#458)
Remove the state variable shadowing.

Additional information: link


Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.

Dinuu.swapBack().success (#788) is written in both
(success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndSIF.mul(treasuryFee).div(treasuryFee.add(safuuInsuranceFundFee))}() (#788-793)
(success,None) = address(safuuInsuranceFundReceiver).call{gas: 30000,value: amountETHToTreasuryAndSIF.mul(safuuInsuranceFundFee).div(treasuryFee.add(safuuInsuranceFundFee))}() (#794-799)
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.


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains


Contract ownership is not renounced (belongs to a wallet)

Dinuu.rebase() (#590-610) performs a multiplication on the result of a division:
-times = deltaTime.div(1800) (#595)
-epoch = times.mul(30) (#596)
Dinuu.rebase() (#590-610) performs a multiplication on the result of a division:
-times = deltaTime.div(1800) (#595)
-_lastRebasedTime = _lastRebasedTime.add(times.mul(1800)) (#605)
Dinuu.takeFee(address,address,uint256) (#689-716) performs a multiplication on the result of a division:
-feeAmount = gonAmount.div(feeDenominator).mul(_totalFee) (#702)
Dinuu.takeFee(address,address,uint256) (#689-716) performs a multiplication on the result of a division:
-_gonBalances[firePit] = _gonBalances[firePit].add(gonAmount.div(feeDenominator).mul(firePitFee)) (#704-706)
Dinuu.takeFee(address,address,uint256) (#689-716) performs a multiplication on the result of a division:
-_gonBalances[address(this)] = _gonBalances[address(this)].add(gonAmount.div(feeDenominator).mul(_treasuryFee.add(safuuInsuranceFundFee))) (#707-709)
Dinuu.takeFee(address,address,uint256) (#689-716) performs a multiplication on the result of a division:
-_gonBalances[autoLiquidityReceiver] = _gonBalances[autoLiquidityReceiver].add(gonAmount.div(feeDenominator).mul(liquidityFee)) (#710-712)
Dinuu.getLiquidityBacking(uint256) (#954-962) performs a multiplication on the result of a division:
-liquidityBalance = _gonBalances[pair].div(_gonsPerFragment) (#959)
-accuracy.mul(liquidityBalance.mul(2)).div(getCirculatingSupply()) (#960-961)
Consider ordering multiplication before division.

Additional information: link

Dinuu.addLiquidity() (#718-760) ignores return value by router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#750-757)
Ensure that all the return values of the function calls are used.

Additional information: link

Dinuu.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#943) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#948)
Dinuu.setFeeReceivers(address,address,address,address)._treasuryReceiver (#944) lacks a zero-check on :
- treasuryReceiver = _treasuryReceiver (#949)
Dinuu.setFeeReceivers(address,address,address,address)._safuuInsuranceFundReceiver (#945) lacks a zero-check on :
- safuuInsuranceFundReceiver = _safuuInsuranceFundReceiver (#950)
Dinuu.setFeeReceivers(address,address,address,address)._firePit (#946) lacks a zero-check on :
- firePit = _firePit (#951)
Dinuu.setPairAddress(address)._pairAddress (#973) lacks a zero-check on :
- pairAddress = _pairAddress (#974)
- pair = _pairAddress (#976)
Check that the address is not zero.

Additional information: link

Reentrancy in Dinuu.addLiquidity() (#718-760):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#739-745)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#750-757)
External calls sending eth:
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#750-757)
State variables written after the call(s):
- _lastAddLiquidityTime = block.timestamp (#759)
Reentrancy in Dinuu.constructor() (#556-588):
External calls:
- pair = ICapswapV2Factory(_router.factory()).createPair(address(this),_router.WETH()) (#563-564)
State variables written after the call(s):
- _allowedFragments[address(this)][address(router)] = uint256(- 1) (#571)
- _autoAddLiquidity = true (#582)
- _autoRebase = true (#581)
- _gonBalances[treasuryReceiver] = TOTAL_GONS (#577)
- _gonsPerFragment = TOTAL_GONS.div(_totalSupply) (#578)
- _initRebaseStartTime = block.timestamp (#579)
- _isFeeExempt[treasuryReceiver] = true (#583)
- _isFeeExempt[address(this)] = true (#584)
- _lastRebasedTime = block.timestamp (#580)
- _transferOwnership(treasuryReceiver) (#586)
- _owner = newOwner (#451)
- _totalSupply = INITIAL_FRAGMENTS_SUPPLY (#576)
- autoLiquidityReceiver = 0x3ff519b73ff870931552773B0D3565c4351419D6 (#566)
- firePit = 0x9cd695a9d7288c61fc2F319f52198c9687Eaff41 (#569)
- pairAddress = pair (#573)
- pairContract = ICapswapV2Pair(pair) (#574)
- safuuInsuranceFundReceiver = 0xA40Ce1D01155AEac08e59C88FfDFD333A3a25E07 (#568)
- treasuryReceiver = 0x4d0A21DCAe6afb82d3f916DCb80e1bb5Feb4360a (#567)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Dinuu._transferFrom(address,address,uint256) (#648-687):
External calls:
- rebase() (#660)
- pairContract.sync() (#607)
- addLiquidity() (#664)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#739-745)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#750-757)
- swapBack() (#668)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#776-782)
- (success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndSIF.mul(treasuryFee).div(treasuryFee.add(safuuInsuranceFundFee))}() (#788-793)
- (success,None) = address(safuuInsuranceFundReceiver).call{gas: 30000,value: amountETHToTreasuryAndSIF.mul(safuuInsuranceFundFee).div(treasuryFee.add(safuuInsuranceFundFee))}() (#794-799)
External calls sending eth:
- addLiquidity() (#664)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#750-757)
- swapBack() (#668)
- (success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndSIF.mul(treasuryFee).div(treasuryFee.add(safuuInsuranceFundFee))}() (#788-793)
- (success,None) = address(safuuInsuranceFundReceiver).call{gas: 30000,value: amountETHToTreasuryAndSIF.mul(safuuInsuranceFundFee).div(treasuryFee.add(safuuInsuranceFundFee))}() (#794-799)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount.div(_gonsPerFragment)) (#714)
- gonAmountReceived = takeFee(sender,recipient,gonAmount) (#673-675)
- Transfer(sender,recipient,gonAmountReceived.div(_gonsPerFragment)) (#681-685)
Reentrancy in Dinuu.constructor() (#556-588):
External calls:
- pair = ICapswapV2Factory(_router.factory()).createPair(address(this),_router.WETH()) (#563-564)
Event emitted after the call(s):
- OwnershipTransferred(_owner,newOwner) (#450)
- _transferOwnership(treasuryReceiver) (#586)
- Transfer(address(0x0),treasuryReceiver,_totalSupply) (#587)
Reentrancy in Dinuu.rebase() (#590-610):
External calls:
- pairContract.sync() (#607)
Event emitted after the call(s):
- LogRebase(epoch,_totalSupply) (#609)
Apply the check-effects-interactions pattern.

Additional information: link

Dinuu.rebase() (#590-610) uses timestamp for comparisons
Dangerous comparisons:
- i < times (#598)
Dinuu.shouldRebase() (#828-835) uses timestamp for comparisons
Dangerous comparisons:
- _autoRebase && (_totalSupply < MAX_SUPPLY) && msg.sender != pair && ! inSwap && block.timestamp >= (_lastRebasedTime + 1800) (#829-834)
Dinuu.shouldAddLiquidity() (#837-843) uses timestamp for comparisons
Dangerous comparisons:
- _autoAddLiquidity && ! inSwap && msg.sender != pair && block.timestamp >= (_lastAddLiquidityTime + 172800) (#838-842)
Avoid relying on block.timestamp.

Additional information: link

Dinuu.isContract(address) (#991-995) uses assembly
- INLINE ASM (#993)
Do not use evm assembly.

Additional information: link

SafeMath.mod(uint256,uint256) (#101-104) is never used and should be removed
SafeMathInt.abs(int256) (#46-49) is never used and should be removed
SafeMathInt.add(int256,int256) (#40-44) is never used and should be removed
SafeMathInt.div(int256,int256) (#28-32) is never used and should be removed
SafeMathInt.mul(int256,int256) (#20-26) is never used and should be removed
SafeMathInt.sub(int256,int256) (#34-38) is never used and should be removed
Remove unused functions.

Additional information: link

Dinuu.totalFee (#515-518) is set pre-construction with a non-constant function or state variable:
- liquidityFee.add(treasuryFee).add(safuuInsuranceFundFee).add(firePitFee)
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 (#14) allows old versions
solc-0.7.4 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

Low level call in Dinuu.swapBack() (#762-800):
- (success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndSIF.mul(treasuryFee).div(treasuryFee.add(safuuInsuranceFundFee))}() (#788-793)
- (success,None) = address(safuuInsuranceFundReceiver).call{gas: 30000,value: amountETHToTreasuryAndSIF.mul(safuuInsuranceFundFee).div(treasuryFee.add(safuuInsuranceFundFee))}() (#794-799)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function ICapswapV2Pair.DOMAIN_SEPARATOR() (#203) is not in mixedCase
Function ICapswapV2Pair.PERMIT_TYPEHASH() (#204) is not in mixedCase
Function ICapswapV2Pair.MINIMUM_LIQUIDITY() (#221) is not in mixedCase
Function ICapswapV2Router02.WETH() (#243) is not in mixedCase
Parameter Dinuu.setAutoRebase(bool)._flag (#851) is not in mixedCase
Parameter Dinuu.setAutoAddLiquidity(bool)._flag (#860) is not in mixedCase
Parameter Dinuu.checkFeeExempt(address)._addr (#923) is not in mixedCase
Parameter Dinuu.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#943) is not in mixedCase
Parameter Dinuu.setFeeReceivers(address,address,address,address)._treasuryReceiver (#944) is not in mixedCase
Parameter Dinuu.setFeeReceivers(address,address,address,address)._safuuInsuranceFundReceiver (#945) is not in mixedCase
Parameter Dinuu.setFeeReceivers(address,address,address,address)._firePit (#946) is not in mixedCase
Parameter Dinuu.setWhitelist(address)._addr (#964) is not in mixedCase
Parameter Dinuu.setBotBlacklist(address,bool)._botAddress (#968) is not in mixedCase
Parameter Dinuu.setBotBlacklist(address,bool)._flag (#968) is not in mixedCase
Parameter Dinuu.setPairAddress(address)._pairAddress (#973) is not in mixedCase
Parameter Dinuu.setLP(address)._address (#979) is not in mixedCase
Variable Dinuu._name (#491) is not in mixedCase
Variable Dinuu._symbol (#492) is not in mixedCase
Variable Dinuu._decimals (#493) is not in mixedCase
Variable Dinuu._isFeeExempt (#496) is not in mixedCase
Variable Dinuu.DEAD (#521) is not in mixedCase
Variable Dinuu.ZERO (#522) is not in mixedCase
Variable Dinuu._autoRebase (#544) is not in mixedCase
Variable Dinuu._autoAddLiquidity (#545) is not in mixedCase
Variable Dinuu._initRebaseStartTime (#546) is not in mixedCase
Variable Dinuu._lastRebasedTime (#547) is not in mixedCase
Variable Dinuu._lastAddLiquidityTime (#548) is not in mixedCase
Variable Dinuu._totalSupply (#549) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable ICapswapV2Router02.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#248) is too similar to ICapswapV2Router02.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#249)
Prevent variables from having similar names.

Additional information: link

Dinuu.slitherConstructorVariables() (#484-999) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#521)
Dinuu.slitherConstructorVariables() (#484-999) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#522)
Dinuu.slitherConstructorConstantVariables() (#484-999) uses literals with too many digits:
- INITIAL_FRAGMENTS_SUPPLY = 500000 * 10 ** DECIMALS (#507-508)
Dinuu.slitherConstructorConstantVariables() (#484-999) uses literals with too many digits:
- MAX_SUPPLY = 5000000 * 10 ** DECIMALS (#542)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#18) is never used in SafeMathInt (#16-50)
Remove unused state variables.

Additional information: link

Dinuu.DEAD (#521) should be constant
Dinuu.ZERO (#522) should be constant
Dinuu._decimals (#493) should be constant
Dinuu._name (#491) should be constant
Dinuu._symbol (#492) should be constant
Dinuu.feeDenominator (#519) should be constant
Dinuu.firePitFee (#514) should be constant
Dinuu.liquidityFee (#510) should be constant
Dinuu.safuuInsuranceFundFee (#512) should be constant
Dinuu.sellFee (#513) should be constant
Dinuu.swapEnabled (#529) should be constant
Dinuu.treasuryFee (#511) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

owner() should be declared external:
- Ownable.owner() (#426-428)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#439-442)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#444-446)
name() should be declared external:
- ERC20Detailed.name() (#470-472)
symbol() should be declared external:
- ERC20Detailed.symbol() (#474-476)
decimals() should be declared external:
- ERC20Detailed.decimals() (#478-480)
getLiquidityBacking(uint256) should be declared external:
- Dinuu.getLiquidityBacking(uint256) (#954-962)
setPairAddress(address) should be declared external:
- Dinuu.setPairAddress(address) (#973-977)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


Telegram account link seems to be invalid


Unable to find Blog account (Reddit or Medium)


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 Telegram 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


Young tokens have high risks of scam / price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Token is relatively young, but twitter if very old (probably it's fake).

Price for DUU