Floki the Creator Token Logo

FLOKICR [Floki the Creator] Token

About FLOKICR

Listings

Not Found
Token 2 years

Floki the Creator - Father of all FLOKIS combining rebase with USDT rewards!

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...)

FlokiTheCreator.swapBack() (#922-991) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#968-971)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#972-975)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in FlokiTheCreator._transferFrom(address,address,uint256) (#719-803):
External calls:
- swapBack() (#773)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#943-949)
- distributor.deposit{value: amountBNBReflection}() (#967)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#968-971)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#972-975)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#981-988)
External calls sending eth:
- swapBack() (#773)
- distributor.deposit{value: amountBNBReflection}() (#967)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#968-971)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#972-975)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#981-988)
State variables written after the call(s):
- _rBalance[sender] = _rBalance[sender].sub(rAmount,Insufficient Balance) (#777-780)
- _rBalance[recipient] = _rBalance[recipient].add(amountReceived) (#786)
- amountReceived = takeFee(sender,rAmount,(recipient == pair)) (#782-785)
- _rBalance[address(this)] = _rBalance[address(this)].add(feeAmount) (#851)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#407-424) ignores return value by RWRD.transfer(shareholder,amount) (#415)
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.

FlokiTheCreator.swapBack().tmpSuccess (#968) is written in both
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#972-975)
tmpSuccess = false (#978)
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.


Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.

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

FlokiTheCreator.slitherConstructorVariables() (#476-1239) performs a multiplication on the result of a division:
-_maxWalletToken = rSupply.div(100).mul(3) (#564)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in DividendDistributor.setShare(address,uint256) (#328-348):
External calls:
- distributeDividend(shareholder) (#334)
- RWRD.transfer(shareholder,amount) (#415)
State variables written after the call(s):
- shares[shareholder].amount = amount (#344)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#345-347)
Apply the check-effects-interactions pattern.

Additional information: link

FlokiTheCreator.manage_houseguests(address[],bool).i (#911) 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

FlokiTheCreator.swapBack() (#922-991) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#981-988)
Ensure that all the return values of the function calls are used.

Additional information: link

FlokiTheCreator.setMaster(address) (#1077-1079) should emit an event for:
- master = _master (#1078)
Emit an event for critical parameter changes.

Additional information: link

FlokiTheCreator.setMaxTxPercent_base1000(uint256) (#1144-1149) should emit an event for:
- _maxTxAmount = rSupply.div(1000).mul(maxTXPercentage_base1000) (#1148)
Emit an event for critical parameter changes.

Additional information: link

FlokiTheCreator.setMaster(address)._master (#1077) lacks a zero-check on :
- master = _master (#1078)
Check that the address is not zero.

Additional information: link

FlokiTheCreator.rebase_updatebalance(address[]) (#1219-1235) has external calls inside a loop: distributor.setShare(addresses[i],balanceOf(addresses[i])) (#1230-1232)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in DividendDistributor.setShare(address,uint256) (#328-348):
External calls:
- distributeDividend(shareholder) (#334)
- RWRD.transfer(shareholder,amount) (#415)
State variables written after the call(s):
- addShareholder(shareholder) (#338)
- shareholderIndexes[shareholder] = shareholders.length (#461)
- removeShareholder(shareholder) (#340)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#469-471)
- addShareholder(shareholder) (#338)
- shareholders.push(shareholder) (#462)
- removeShareholder(shareholder) (#340)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#466-468)
- shareholders.pop() (#472)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#343)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in FlokiTheCreator.swapBack() (#922-991):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#943-949)
- distributor.deposit{value: amountBNBReflection}() (#967)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#968-971)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#972-975)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#981-988)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#967)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#968-971)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#972-975)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#981-988)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify.div(rate)) (#989)
Apply the check-effects-interactions pattern.

Additional information: link

FlokiTheCreator._transferFrom(address,address,uint256) (#719-803) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,buy Cooldown exists) (#753-756)
Avoid relying on block.timestamp.

Additional information: link

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

Additional information: link

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

Additional information: link

FlokiTheCreator.totalFee (#501-502) 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

Low level call in FlokiTheCreator.swapBack() (#922-991):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#968-971)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#972-975)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable FlokiTheCreator._maxWalletToken (#564) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

FlokiTheCreator.slitherConstructorVariables() (#476-1239) uses literals with too many digits:
- distributorGas = 500000 (#529)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#65) is never used in SafeMathInt (#63-97)
Remove unused state variables.

Additional information: link

FlokiTheCreator.ZERO (#482) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

rescueToken(address,uint256) should be declared external:
- FlokiTheCreator.rescueToken(address,uint256) (#1101-1107)
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.


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


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

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 audit link on the website


Unable to find whitepaper link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Young tokens have high risks of 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

Price for FLOKICR