ApolloRebase Token Logo

APR [ApolloRebase] Token

ALERT: rug pull scam

About APR

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 a scam (type: rug pull scam).


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)

APOLLOREBASE.swapBack() (#743-791) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#774)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#775)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in APOLLOREBASE._transferFrom(address,address,uint256) (#586-639):
External calls:
- swapBack() (#618)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#756-762)
- distributor.deposit{value: amountBNBReflection}() (#773)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#774)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#775)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#781-788)
External calls sending eth:
- swapBack() (#618)
- distributor.deposit{value: amountBNBReflection}() (#773)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#774)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#775)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#781-788)
State variables written after the call(s):
- _rBalance[sender] = _rBalance[sender].sub(rAmount,Insufficient Balance) (#621)
- _rBalance[recipient] = _rBalance[recipient].add(amountReceived) (#624)
- amountReceived = takeFee(sender,rAmount,(recipient == pair)) (#623)
- _rBalance[address(this)] = _rBalance[address(this)].add(feeAmount) (#673)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#331-342) ignores return value by RWRD.transfer(shareholder,amount) (#337)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


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

APOLLOREBASE.swapBack().tmpSuccess (#774) is written in both
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#775)
tmpSuccess = false (#778)
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.


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.

rescueToken(address,uint256) should be declared external:
- APOLLOREBASE.rescueToken(address,uint256) (#888-890)
Use the external attribute for functions never called from the contract.

Additional information: link

APOLLOREBASE.slitherConstructorVariables() (#375-1005) performs a multiplication on the result of a division:
-_maxWalletToken = rSupply.div(100).mul(2) (#454)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in DividendDistributor.setShare(address,uint256) (#264-278):
External calls:
- distributeDividend(shareholder) (#266)
- RWRD.transfer(shareholder,amount) (#337)
State variables written after the call(s):
- shares[shareholder].amount = amount (#276)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#277)
Apply the check-effects-interactions pattern.

Additional information: link

APOLLOREBASE.manage_blacklist(address[],bool).i (#732) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

APOLLOREBASE.swapBack() (#743-791) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#781-788)
Ensure that all the return values of the function calls are used.

Additional information: link

APOLLOREBASE.setMaster(address) (#858-860) should emit an event for:
- master = _master (#859)
Emit an event for critical parameter changes.

Additional information: link

APOLLOREBASE.setMaxTxPercent_base1000(uint256) (#920-922) should emit an event for:
- _maxTxAmount = rSupply.div(1000).mul(maxTXPercentage_base1000) (#921)
Emit an event for critical parameter changes.

Additional information: link

APOLLOREBASE.setMaster(address)._master (#858) lacks a zero-check on :
- master = _master (#859)
Check that the address is not zero.

Additional information: link

APOLLOREBASE.multiTransfer_fixed(address,address[],uint256) (#981-1000) has external calls inside a loop: distributor.setShare(addresses[i],balanceOf(addresses[i])) (#992)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in DividendDistributor.setShare(address,uint256) (#264-278):
External calls:
- distributeDividend(shareholder) (#266)
- RWRD.transfer(shareholder,amount) (#337)
State variables written after the call(s):
- addShareholder(shareholder) (#270)
- shareholderIndexes[shareholder] = shareholders.length (#364)
- removeShareholder(shareholder) (#272)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#370)
- addShareholder(shareholder) (#270)
- shareholders.push(shareholder) (#365)
- removeShareholder(shareholder) (#272)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#369)
- shareholders.pop() (#371)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#275)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in APOLLOREBASE.swapBack() (#743-791):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#756-762)
- distributor.deposit{value: amountBNBReflection}() (#773)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#774)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#775)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#781-788)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#773)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#774)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#775)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#781-788)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify.div(rate)) (#789)
Apply the check-effects-interactions pattern.

Additional information: link

APOLLOREBASE._transferFrom(address,address,uint256) (#586-639) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,buy Cooldown exists) (#606)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#300-324) has costly operations inside a loop:
- currentIndex ++ (#321)
Use a local variable to hold the loop computation result.

Additional information: link

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

Additional information: link

APOLLOREBASE.totalFee (#399) is set pre-construction with a non-constant function or state variable:
- marketingFee + reflectionFee + liquidityFee + devFee
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 (#12) 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 APOLLOREBASE.swapBack() (#743-791):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#774)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#775)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable APOLLOREBASE._maxWalletToken (#454) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

APOLLOREBASE.slitherConstructorVariables() (#375-1005) uses literals with too many digits:
- distributorGas = 500000 (#425)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

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

Additional information: link

DividendDistributor.dividendsPerShareAccuracyFactor (#234) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Holders:


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


Number of Binance Smart Chain (BSC) token holders is low.


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


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


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 APR