ShibaFlokiX Token Logo

SFX [ShibaFlokiX] Token

About SFX

Listings

Not Found
Token 2 years

Description

Not Found

Social

Laser Scorebeta Last Audit: 30 November 2021

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


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

ShibaFlokiX.swapBack(uint256) (#1691-1725) sends eth to arbitrary user
Dangerous calls:
- (success,None) = address(dividendTracker).call{value: amountBNBReflection / 2}() (#1713)
- (success,None) = address(marketingWallet).call{value: amountBNBMarketing}() (#1719)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in DividendPayingToken.distributeDividends() (#1040-1055):
External calls:
- buyTokens(msg.value,nextRewardToken) (#1043)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: bnbAmountInWei}(0,path,address(this),block.timestamp) (#1065-1070)
State variables written after the call(s):
- nextRewardToken = rewardTokens[rewardTokenCounter] (#1054)
Apply the check-effects-interactions pattern.

Additional information: link

ShibaFlokiX.rescueTokens(address,address,uint256) (#1743-1748) ignores return value by IERC20(_ERC20address).transfer(_recipient,_amount) (#1746)
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.

ShibaFlokiX._transfer(address,address,uint256) (#1551-1635) uses a dangerous strict equality:
- from != owner() && from != presaleRouterAddress && from != presaleAddress && ! automatedMarketMakerPairs[to] && block.number == tradingActiveBlock (#1568)
Don't use strict equality to determine if an account has enough Ether or tokens.

Additional information: link

ShibaFlokiX.swapBack(uint256).success (#1712) is written in both
(success) = address(dividendTracker).call{value: amountBNBReflection / 2}() (#1712)
(success,None) = address(dividendTracker).call{value: amountBNBReflection / 2}() (#1713)
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.

ShibaFlokiX._transfer(address,address,uint256) (#1551-1635) performs a multiplication on the result of a division:
-fees = amount.mul(totalFees).div(feeDivisor) (#1603)
-fees = fees.mul(sellFeeIncreaseFactor).div(100) (#1611)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in ShibaFlokiX.updateDividendTracker(address) (#1378-1395):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1385)
- newDividendTracker.excludeFromDividends(address(this)) (#1386)
- newDividendTracker.excludeFromDividends(owner()) (#1387)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1388)
- newDividendTracker.excludeFromDividends(address(uniswapV2Pair)) (#1389)
- newDividendTracker.excludeFromDividends(address(0xdead)) (#1390)
State variables written after the call(s):
- dividendTracker = newDividendTracker (#1394)
Apply the check-effects-interactions pattern.

Additional information: link

ShibaFlokiX._transfer(address,address,uint256).lastProcessedIndex (#1630) 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

ShibaFlokiX.addLiquidity(uint256,uint256) (#1675-1689) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityWallet),block.timestamp) (#1680-1687)
Ensure that all the return values of the function calls are used.

Additional information: link

ShibaFlokiX.constructor().totalSupply (#1257) shadows:
- ERC20.totalSupply() (#302-304) (function)
- IERC20.totalSupply() (#152) (function)
Rename the local variables that shadow another component.

Additional information: link

ShibaFlokiX.updateFees(uint256,uint256,uint256,uint256,uint256) (#1397-1422) should emit an event for:
- marketingFee = _marketingFee (#1411)
- rewardsFee = _rewardsFee (#1412)
- liquidityFee = _liquidityFee (#1413)
- feeDivisor = _feeDivisor (#1415)
- totalFees = marketingFee + rewardsFee + liquidityFee + buybackFee (#1416)
Emit an event for critical parameter changes.

Additional information: link

ShibaFlokiX.updateLiquidityWallet(address).newLiquidityWallet (#1458) lacks a zero-check on :
- liquidityWallet = newLiquidityWallet (#1460)
Check that the address is not zero.

Additional information: link

ShibaFlokiX.airdropToWalletsWithAmounts(address[],uint256[]) (#1366-1375) has external calls inside a loop: dividendTracker.setBalance(address(wallet),balanceOf(wallet)) (#1373)
Favor pull over push strategy for external calls.

Additional information: link

Variable 'ShibaFlokiX._transfer(address,address,uint256).claims (#1630)' in ShibaFlokiX._transfer(address,address,uint256) (#1551-1635) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1631)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

Reentrancy in ShibaFlokiX.swapBack(uint256) (#1691-1725):
External calls:
- swapTokensForEth(amountToSwap) (#1701)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1647-1653)
- (success) = address(dividendTracker).call{value: amountBNBReflection / 2}() (#1712)
- (success,None) = address(dividendTracker).call{value: amountBNBReflection / 2}() (#1713)
- (success,None) = address(marketingWallet).call{value: amountBNBMarketing}() (#1719)
- addLiquidity(amountToLiquify,amountBNBLiquidity) (#1722)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityWallet),block.timestamp) (#1680-1687)
External calls sending eth:
- (success) = address(dividendTracker).call{value: amountBNBReflection / 2}() (#1712)
- (success,None) = address(dividendTracker).call{value: amountBNBReflection / 2}() (#1713)
- (success,None) = address(marketingWallet).call{value: amountBNBMarketing}() (#1719)
- addLiquidity(amountToLiquify,amountBNBLiquidity) (#1722)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityWallet),block.timestamp) (#1680-1687)
State variables written after the call(s):
- addLiquidity(amountToLiquify,amountBNBLiquidity) (#1722)
- _allowances[owner][spender] = amount (#494)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ShibaFlokiX.updateDividendTracker(address) (#1378-1395):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1385)
- newDividendTracker.excludeFromDividends(address(this)) (#1386)
- newDividendTracker.excludeFromDividends(owner()) (#1387)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1388)
- newDividendTracker.excludeFromDividends(address(uniswapV2Pair)) (#1389)
- newDividendTracker.excludeFromDividends(address(0xdead)) (#1390)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (#1392)
Apply the check-effects-interactions pattern.

Additional information: link

DividendTracker.canAutoClaim(uint256) (#1868-1874) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1869)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1873)
Avoid relying on block.timestamp.

Additional information: link

SafeMathInt.mul(int256,int256) (#775-782) is never used and should be removed
Remove unused functions.

Additional information: link

solc-0.8.8 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 ShibaFlokiX.swapBack(uint256) (#1691-1725):
- (success) = address(dividendTracker).call{value: amountBNBReflection / 2}() (#1712)
- (success,None) = address(dividendTracker).call{value: amountBNBReflection / 2}() (#1713)
- (success,None) = address(marketingWallet).call{value: amountBNBMarketing}() (#1719)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Parameter DividendTracker.getAccountAtIndex(uint256,address)._rewardToken (#1849) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#15)" inContext (#9-18)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable DividendPayingToken._withdrawDividendOfUser(address,address)._withdrawableDividend (#1082) is too similar to DividendTracker.getAccount(address,address).withdrawableDividends (#1809)
Prevent variables from having similar names.

Additional information: link

DividendTracker.getAccountAtIndex(uint256,address) (#1849-1866) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#1860)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#770) is never used in SafeMathInt (#768-826)
Remove unused state variables.

Additional information: link

ShibaFlokiX.maxWallet (#1179) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

rescueTokens(address,address,uint256) should be declared external:
- ShibaFlokiX.rescueTokens(address,address,uint256) (#1743-1748)
Use the external attribute for functions never called from the contract.

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 account


Twitter account link seems to be invalid


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Unable to find website, listings and other project-related information


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 SFX