Ultra Safuu is the next revolutionary DeFi release of BSC, designed to provide high passive returns to $ULTRASAFUU holders by simply holding a token that allows smart contracts to do all the work.
With Ultra Safuu you can Earn 392,537% APY. One of the Best Auto-Staking & Auto-Compounding Protocol in Crypto. Our moto is to help people create an alternate source of income for themselves, so that they can earn even while they are asleep just by holding Ultra Safuu.
Contract creator or owner is blacklisted for past scams
ULTRASAFUU.swapBack() (#693-730) sends eth to arbitrary user
Dangerous calls:
- (success) = address(treasuryFund).call{gas: 30000,value: amountETHToTreasuryAndRRFF.mul(treasuryFee).div(treasuryFee.add(ringRiskFreeFundFee))}() (#718-723)
- (success,None) = address(ringRiskFreeFund).call{gas: 30000,value: amountETHToTreasuryAndRRFF.mul(ringRiskFreeFundFee).div(treasuryFee.add(ringRiskFreeFundFee))}() (#724-729)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in ULTRASAFUU._transferFrom(address,address,uint256) (#580-618):
External calls:
- rebase() (#591)
- pairContract.sync() (#540)
- addLiquidity() (#595)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#670-676)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityFund,block.timestamp) (#681-688)
- swapBack() (#599)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#706-712)
- (success) = address(treasuryFund).call{gas: 30000,value: amountETHToTreasuryAndRRFF.mul(treasuryFee).div(treasuryFee.add(ringRiskFreeFundFee))}() (#718-723)
- (success,None) = address(ringRiskFreeFund).call{gas: 30000,value: amountETHToTreasuryAndRRFF.mul(ringRiskFreeFundFee).div(treasuryFee.add(ringRiskFreeFundFee))}() (#724-729)
External calls sending eth:
- addLiquidity() (#595)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityFund,block.timestamp) (#681-688)
- swapBack() (#599)
- (success) = address(treasuryFund).call{gas: 30000,value: amountETHToTreasuryAndRRFF.mul(treasuryFee).div(treasuryFee.add(ringRiskFreeFundFee))}() (#718-723)
- (success,None) = address(ringRiskFreeFund).call{gas: 30000,value: amountETHToTreasuryAndRRFF.mul(ringRiskFreeFundFee).div(treasuryFee.add(ringRiskFreeFundFee))}() (#724-729)
State variables written after the call(s):
- _gonBalances[sender] = _gonBalances[sender].sub(gonAmount) (#603)
- _gonBalances[recipient] = _gonBalances[recipient].add(gonAmountReceived) (#607-609)
- gonAmountReceived = takeFee(sender,recipient,gonAmount) (#604-606)
- _gonBalances[supplyControl] = _gonBalances[supplyControl].add(gonAmount.div(feeDenominator).mul(supplyControlFee)) (#635-637)
- _gonBalances[address(this)] = _gonBalances[address(this)].add(gonAmount.div(feeDenominator).mul(_treasuryFee.add(ringRiskFreeFundFee))) (#638-640)
- _gonBalances[autoLiquidityFund] = _gonBalances[autoLiquidityFund].add(gonAmount.div(feeDenominator).mul(liquidityFee)) (#641-643)
- swapBack() (#599)
- inSwap = true (#453)
- inSwap = false (#455)
Apply the check-effects-interactions pattern.
Additional information: link
ULTRASAFUU._decimals (#412) shadows:
- ERC20Detailed._decimals (#378)
ULTRASAFUU._symbol (#411) shadows:
- ERC20Detailed._symbol (#377)
ULTRASAFUU._name (#410) shadows:
- ERC20Detailed._name (#376)
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.
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
Contract ownership is not renounced (belongs to a wallet)
ULTRASAFUU.swapBack().success (#718) is written in both
(success) = address(treasuryFund).call{gas: 30000,value: amountETHToTreasuryAndRRFF.mul(treasuryFee).div(treasuryFee.add(ringRiskFreeFundFee))}() (#718-723)
(success,None) = address(ringRiskFreeFund).call{gas: 30000,value: amountETHToTreasuryAndRRFF.mul(ringRiskFreeFundFee).div(treasuryFee.add(ringRiskFreeFundFee))}() (#724-729)
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.
decimals() should be declared external:
- ERC20Detailed.decimals() (#398-400)
symbol() should be declared external:
- ERC20Detailed.symbol() (#394-396)
name() should be declared external:
- ERC20Detailed.name() (#390-392)
index() should be declared external:
- ULTRASAFUU.index() (#932-934)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#359-362)
owner() should be declared external:
- Ownable.owner() (#346-348)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#364-366)
Use the external attribute for functions never called from the contract.
Additional information: link
Low level call in ULTRASAFUU.swapBack() (#693-730):
- (success) = address(treasuryFund).call{gas: 30000,value: amountETHToTreasuryAndRRFF.mul(treasuryFee).div(treasuryFee.add(ringRiskFreeFundFee))}() (#718-723)
- (success,None) = address(ringRiskFreeFund).call{gas: 30000,value: amountETHToTreasuryAndRRFF.mul(ringRiskFreeFundFee).div(treasuryFee.add(ringRiskFreeFundFee))}() (#724-729)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Pragma version^0.7.4 (#11) 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
SafeMathInt.MAX_INT256 (#15) is never used in SafeMathInt (#13-47)
Remove unused state variables.
Additional information: link
Reentrancy in ULTRASAFUU.addLiquidity() (#649-691):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#670-676)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityFund,block.timestamp) (#681-688)
External calls sending eth:
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityFund,block.timestamp) (#681-688)
State variables written after the call(s):
- _lastAddLiquidityTime = block.timestamp (#690)
Apply the check-effects-interactions pattern.
Additional information: link
ULTRASAFUU.rebase() (#509-543) performs a multiplication on the result of a division:
-times = deltaTime.div(900) (#514)
-_lastRebasedTime = _lastRebasedTime.add(times.mul(900)) (#538)
ULTRASAFUU.takeFee(address,address,uint256) (#620-647) performs a multiplication on the result of a division:
-_gonBalances[autoLiquidityFund] = _gonBalances[autoLiquidityFund].add(gonAmount.div(feeDenominator).mul(liquidityFee)) (#641-643)
ULTRASAFUU.getLiquidityBacking(uint256) (#883-891) performs a multiplication on the result of a division:
-liquidityBalance = _gonBalances[pair].div(_gonsPerFragment) (#888)
-accuracy.mul(liquidityBalance.mul(2)).div(getCirculatingSupply()) (#889-890)
ULTRASAFUU.takeFee(address,address,uint256) (#620-647) performs a multiplication on the result of a division:
-_gonBalances[address(this)] = _gonBalances[address(this)].add(gonAmount.div(feeDenominator).mul(_treasuryFee.add(ringRiskFreeFundFee))) (#638-640)
ULTRASAFUU.takeFee(address,address,uint256) (#620-647) performs a multiplication on the result of a division:
-feeAmount = gonAmount.div(feeDenominator).mul(_totalFee) (#633)
ULTRASAFUU.rebase() (#509-543) performs a multiplication on the result of a division:
-times = deltaTime.div(900) (#514)
-epoch = times.mul(15) (#515)
ULTRASAFUU.takeFee(address,address,uint256) (#620-647) performs a multiplication on the result of a division:
-_gonBalances[supplyControl] = _gonBalances[supplyControl].add(gonAmount.div(feeDenominator).mul(supplyControlFee)) (#635-637)
Consider ordering multiplication before division.
Additional information: link
ULTRASAFUU.addLiquidity() (#649-691) ignores return value by router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityFund,block.timestamp) (#681-688)
Ensure that all the return values of the function calls are used.
Additional information: link
ULTRASAFUU.setFeeReceivers(address,address,address,address)._autoLiquidityFund (#872) lacks a zero-check on :
- autoLiquidityFund = _autoLiquidityFund (#877)
ULTRASAFUU.setFeeReceivers(address,address,address,address)._ringRiskFreeFund (#874) lacks a zero-check on :
- ringRiskFreeFund = _ringRiskFreeFund (#879)
ULTRASAFUU.setFeeReceivers(address,address,address,address)._treasuryFund (#873) lacks a zero-check on :
- treasuryFund = _treasuryFund (#878)
ULTRASAFUU.setPairAddress(address)._pairAddress (#902) lacks a zero-check on :
- pairAddress = _pairAddress (#903)
ULTRASAFUU.setFeeReceivers(address,address,address,address)._supplyControl (#875) lacks a zero-check on :
- supplyControl = _supplyControl (#880)
Check that the address is not zero.
Additional information: link
Reentrancy in ULTRASAFUU._transferFrom(address,address,uint256) (#580-618):
External calls:
- rebase() (#591)
- pairContract.sync() (#540)
- addLiquidity() (#595)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#670-676)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityFund,block.timestamp) (#681-688)
- swapBack() (#599)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#706-712)
- (success) = address(treasuryFund).call{gas: 30000,value: amountETHToTreasuryAndRRFF.mul(treasuryFee).div(treasuryFee.add(ringRiskFreeFundFee))}() (#718-723)
- (success,None) = address(ringRiskFreeFund).call{gas: 30000,value: amountETHToTreasuryAndRRFF.mul(ringRiskFreeFundFee).div(treasuryFee.add(ringRiskFreeFundFee))}() (#724-729)
External calls sending eth:
- addLiquidity() (#595)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityFund,block.timestamp) (#681-688)
- swapBack() (#599)
- (success) = address(treasuryFund).call{gas: 30000,value: amountETHToTreasuryAndRRFF.mul(treasuryFee).div(treasuryFee.add(ringRiskFreeFundFee))}() (#718-723)
- (success,None) = address(ringRiskFreeFund).call{gas: 30000,value: amountETHToTreasuryAndRRFF.mul(ringRiskFreeFundFee).div(treasuryFee.add(ringRiskFreeFundFee))}() (#724-729)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount.div(_gonsPerFragment)) (#645)
- gonAmountReceived = takeFee(sender,recipient,gonAmount) (#604-606)
- Transfer(sender,recipient,gonAmountReceived.div(_gonsPerFragment)) (#612-616)
Reentrancy in ULTRASAFUU.rebase() (#509-543):
External calls:
- pairContract.sync() (#540)
Event emitted after the call(s):
- LogRebase(epoch,_totalSupply) (#542)
Apply the check-effects-interactions pattern.
Additional information: link
ULTRASAFUU.rebase() (#509-543) uses timestamp for comparisons
Dangerous comparisons:
- deltaTimeFromInit >= (8 * 31536000) (#517)
- deltaTimeFromInit >= (5 * 31536000) (#519)
- deltaTimeFromInit >= (3 * 31536000) (#521)
- deltaTimeFromInit >= (2 * 31536000) (#523)
- deltaTimeFromInit >= (31536000) (#525)
- i < times (#531)
ULTRASAFUU.shouldAddLiquidity() (#766-772) uses timestamp for comparisons
Dangerous comparisons:
- _autoAddLiquidity && ! inSwap && msg.sender != pair && block.timestamp >= (_lastAddLiquidityTime + 86400) (#767-771)
ULTRASAFUU.shouldRebase() (#757-764) uses timestamp for comparisons
Dangerous comparisons:
- _autoRebase && (_totalSupply < MAX_SUPPLY) && msg.sender != pair && ! inSwap && block.timestamp >= (_lastRebasedTime + 900) (#758-763)
Avoid relying on block.timestamp.
Additional information: link
ULTRASAFUU.isContract(address) (#918-922) uses assembly
- INLINE ASM (#920)
Do not use evm assembly.
Additional information: link
SafeMathInt.div(int256,int256) (#25-29) is never used and should be removed
SafeMathInt.abs(int256) (#43-46) is never used and should be removed
SafeMathInt.mul(int256,int256) (#17-23) is never used and should be removed
SafeMathInt.sub(int256,int256) (#31-35) is never used and should be removed
SafeMath.mod(uint256,uint256) (#98-101) is never used and should be removed
SafeMathInt.add(int256,int256) (#37-41) is never used and should be removed
Remove unused functions.
Additional information: link
ULTRASAFUU.totalFee (#434-437) is set pre-construction with a non-constant function or state variable:
- liquidityFee.add(treasuryFee).add(ringRiskFreeFundFee).add(supplyControlFee)
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
Parameter ULTRASAFUU.setFeeReceivers(address,address,address,address)._autoLiquidityFund (#872) is not in mixedCase
Variable ULTRASAFUU._name (#410) is not in mixedCase
Variable ULTRASAFUU._isFeeExempt (#415) is not in mixedCase
Parameter ULTRASAFUU.checkFeeExempt(address)._addr (#852) is not in mixedCase
Parameter ULTRASAFUU.setBotBlacklist(address,bool)._botAddress (#897) is not in mixedCase
Variable ULTRASAFUU._autoRebase (#465) is not in mixedCase
Parameter ULTRASAFUU.setPairAddress(address)._pairAddress (#902) is not in mixedCase
Function IPancakeSwapPair.PERMIT_TYPEHASH() (#149) is not in mixedCase
Parameter ULTRASAFUU.setFeeReceivers(address,address,address,address)._supplyControl (#875) is not in mixedCase
Variable ULTRASAFUU._autoAddLiquidity (#466) is not in mixedCase
Parameter ULTRASAFUU.setAutoRebase(bool)._flag (#780) is not in mixedCase
Parameter ULTRASAFUU.setFeeReceivers(address,address,address,address)._treasuryFund (#873) is not in mixedCase
Variable ULTRASAFUU.INDEX (#463) is not in mixedCase
Variable ULTRASAFUU._totalSupply (#470) is not in mixedCase
Parameter ULTRASAFUU.setWhitelist(address)._addr (#893) is not in mixedCase
Variable ULTRASAFUU._symbol (#411) is not in mixedCase
Variable ULTRASAFUU._decimals (#412) is not in mixedCase
Function IPancakeSwapRouter.WETH() (#186) is not in mixedCase
Parameter ULTRASAFUU.setAutoAddLiquidity(bool)._flag (#789) is not in mixedCase
Variable ULTRASAFUU._initRebaseStartTime (#467) is not in mixedCase
Function IPancakeSwapPair.DOMAIN_SEPARATOR() (#148) is not in mixedCase
Parameter ULTRASAFUU.setBotBlacklist(address,bool)._flag (#897) is not in mixedCase
Variable ULTRASAFUU._lastRebasedTime (#468) is not in mixedCase
Function IPancakeSwapPair.MINIMUM_LIQUIDITY() (#166) is not in mixedCase
Parameter ULTRASAFUU.setLP(address)._address (#906) is not in mixedCase
Parameter ULTRASAFUU.setFeeReceivers(address,address,address,address)._ringRiskFreeFund (#874) is not in mixedCase
Variable ULTRASAFUU._lastAddLiquidityTime (#469) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IPancakeSwapRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#191) is too similar to IPancakeSwapRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#192)
Prevent variables from having similar names.
Additional information: link
ULTRASAFUU.constructor() (#477-507) uses literals with too many digits:
- INDEX = gonsForBalance(100000) (#503)
ULTRASAFUU.slitherConstructorConstantVariables() (#403-938) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#441)
ULTRASAFUU.slitherConstructorConstantVariables() (#403-938) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#440)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
ULTRASAFUU._name (#410) should be constant
ULTRASAFUU.treasuryFee (#430) should be constant
ULTRASAFUU.swapEnabled (#448) should be constant
ULTRASAFUU.ringRiskFreeFundFee (#431) should be constant
ULTRASAFUU.feeDenominator (#438) should be constant
ULTRASAFUU._symbol (#411) should be constant
ULTRASAFUU._decimals (#412) should be constant
ULTRASAFUU.sellFee (#432) should be constant
ULTRASAFUU.supplyControlFee (#433) should be constant
ULTRASAFUU.liquidityFee (#429) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
Contract has 14% buy tax and 24% sell tax.
Taxes are suspiciously high (over 10%) and contract ownership is not renounced. Token has a high risk of becoming a honeypot.
Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.
Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.
Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.
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
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Twitter account link seems to be invalid
Unable to find Youtube account