FluidShiba Token Logo

FluidShiba Token

ALERT: rug pull scam

About FluidShiba

Listings

Token 2 years

🧬FluidShiba 🧬

When it comes to next Shiba trending , FluidShiba was born to reach the mindset of taking care of the community as much as possible because community plays a very important part in the growth of a project. Stealth launched by a based and experienced developer team, FluidShiba want to create a solid community by active voice chat, 24/7 support with SHIB reflections by holding FluidShiba.

100% locked
more marketing coming
dev doxxed

⚡️Tokenomics ⚡️
3% Liquidity
4% Reflections
6% Marketing

Contract : 0x08423c1e6ed35e47c21938938c09da85aeec40f1

Chart : https://poocoin.app/tokens/0x08423c1e6ed35e47c21938938c09da85aeec40f1
locked

Website: https://www.fluidshiba.com/
Telegram: https://t.me/fluidshiba

Social

Laser Scorebeta Last Audit: 17 February 2022

report
Token seems to be a scam (type: rug pull scam).

Anti-Scam

Links


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

FluidShiba.swapBack() (#576-621) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#604)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in FluidShiba._transferFrom(address,address,uint256) (#479-527):
External calls:
- swapBack() (#506)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#587-593)
- distributor.deposit{value: amountBNBReflection}() (#603)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#604)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#610-617)
External calls sending eth:
- swapBack() (#506)
- distributor.deposit{value: amountBNBReflection}() (#603)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#604)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#610-617)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#509)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#512)
- amountReceived = takeFee(sender,amount) (#511)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#547)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#309-320) ignores return value by MATIC.transfer(shareholder,amount) (#315)
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.

FluidShiba.swapBack().tmpSuccess (#604) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#604)
tmpSuccess = false (#607)
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.

Pragma version^0.7.4 (#6) 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 FluidShiba.swapBack() (#576-621):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#604)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Reentrancy in DividendDistributor.distributeDividend(address) (#309-320):
External calls:
- MATIC.transfer(shareholder,amount) (#315)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#317)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#318)
Reentrancy in DividendDistributor.process(uint256) (#278-302):
External calls:
- distributeDividend(shareholders[currentIndex]) (#294)
- MATIC.transfer(shareholder,amount) (#315)
State variables written after the call(s):
- currentIndex ++ (#299)
Reentrancy in DividendDistributor.setShare(address,uint256) (#242-256):
External calls:
- distributeDividend(shareholder) (#244)
- MATIC.transfer(shareholder,amount) (#315)
State variables written after the call(s):
- shares[shareholder].amount = amount (#254)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#255)
Apply the check-effects-interactions pattern.

Additional information: link

FluidShiba.swapBack() (#576-621) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#610-617)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#237-240) should emit an event for:
- minPeriod = _minPeriod (#238)
- minDistribution = _minDistribution (#239)
FluidShiba.setTxLimit(uint256) (#624-626) should emit an event for:
- _maxTxAmount = amount (#625)
FluidShiba.setFees(uint256,uint256,uint256,uint256) (#650-657) should emit an event for:
- liquidityFee = _liquidityFee (#651)
- reflectionFee = _reflectionFee (#652)
- marketingFee = _marketingFee (#653)
- totalFee = _liquidityFee.add(_reflectionFee).add(_marketingFee) (#654)
- feeDenominator = _feeDenominator (#655)
FluidShiba.setSwapBackSettings(bool,uint256) (#664-667) should emit an event for:
- swapThreshold = _amount (#666)
FluidShiba.setTargetLiquidity(uint256,uint256) (#669-672) should emit an event for:
- targetLiquidity = _target (#670)
- targetLiquidityDenominator = _denominator (#671)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#118) lacks a zero-check on :
- owner = adr (#119)
FluidShiba.setFeeReceivers(address,address)._autoLiquidityReceiver (#659) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#660)
FluidShiba.setFeeReceivers(address,address)._marketingFeeReceiver (#659) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#661)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#309-320) has external calls inside a loop: MATIC.transfer(shareholder,amount) (#315)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in FluidShiba.constructor() (#410-440):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#412)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#413)
- _balances[msg.sender] = _totalSupply (#438)
- autoLiquidityReceiver = DEAD (#435)
- distributor = new DividendDistributor(address(router)) (#415)
- isDividendExempt[pair] = true (#430)
- isDividendExempt[address(this)] = true (#431)
- isDividendExempt[DEAD] = true (#432)
- isFeeExempt[msg.sender] = true (#417)
- isTimelockExempt[msg.sender] = true (#421)
- isTimelockExempt[DEAD] = true (#422)
- isTimelockExempt[address(this)] = true (#423)
- isTxLimitExempt[msg.sender] = true (#418)
- marketingFeeReceiver = msg.sender (#436)
Reentrancy in DividendDistributor.deposit() (#258-276):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#265-270)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#275)
- totalDividends = totalDividends.add(amount) (#274)
Reentrancy in DividendDistributor.distributeDividend(address) (#309-320):
External calls:
- MATIC.transfer(shareholder,amount) (#315)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#316)
Reentrancy in DividendDistributor.setShare(address,uint256) (#242-256):
External calls:
- distributeDividend(shareholder) (#244)
- MATIC.transfer(shareholder,amount) (#315)
State variables written after the call(s):
- addShareholder(shareholder) (#248)
- shareholderIndexes[shareholder] = shareholders.length (#342)
- removeShareholder(shareholder) (#250)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#348)
- addShareholder(shareholder) (#248)
- shareholders.push(shareholder) (#343)
- removeShareholder(shareholder) (#250)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#347)
- shareholders.pop() (#349)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#253)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in FluidShiba._transferFrom(address,address,uint256) (#479-527):
External calls:
- swapBack() (#506)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#587-593)
- distributor.deposit{value: amountBNBReflection}() (#603)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#604)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#610-617)
- distributor.setShare(sender,_balances[sender]) (#516)
- distributor.setShare(recipient,_balances[recipient]) (#520)
- distributor.process(distributorGas) (#523)
External calls sending eth:
- swapBack() (#506)
- distributor.deposit{value: amountBNBReflection}() (#603)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#604)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#610-617)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#525)
Reentrancy in FluidShiba._transferFrom(address,address,uint256) (#479-527):
External calls:
- swapBack() (#506)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#587-593)
- distributor.deposit{value: amountBNBReflection}() (#603)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#604)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#610-617)
External calls sending eth:
- swapBack() (#506)
- distributor.deposit{value: amountBNBReflection}() (#603)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#604)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#610-617)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#548)
- amountReceived = takeFee(sender,amount) (#511)
Reentrancy in FluidShiba.constructor() (#410-440):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#412)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#439)
Reentrancy in FluidShiba.swapBack() (#576-621):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#587-593)
- distributor.deposit{value: amountBNBReflection}() (#603)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#604)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#610-617)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#603)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#604)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#610-617)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#619)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#304-307) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#305-306)
FluidShiba._transferFrom(address,address,uint256) (#479-527) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait for cooldown between buys) (#497)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#278-302) has costly operations inside a loop:
- currentIndex = 0 (#290)
DividendDistributor.distributeDividend(address) (#309-320) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#314)
DividendDistributor.process(uint256) (#278-302) has costly operations inside a loop:
- currentIndex ++ (#299)
Use a local variable to hold the loop computation result.

Additional information: link

FluidShiba._maxTxAmount (#366) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 1 / 100
FluidShiba._maxWalletToken (#369) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 1) / 100
FluidShiba.swapThreshold (#406) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 10 / 10000
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

Function IDEXRouter.WETH() (#133) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#237) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#237) is not in mixedCase
Variable DividendDistributor._token (#189) is not in mixedCase
Variable DividendDistributor.MATIC (#197) is not in mixedCase
Variable DividendDistributor.WBNB (#198) is not in mixedCase
Parameter FluidShiba.cooldownEnabled(bool,uint8)._status (#569) is not in mixedCase
Parameter FluidShiba.cooldownEnabled(bool,uint8)._interval (#569) is not in mixedCase
Parameter FluidShiba.setFees(uint256,uint256,uint256,uint256)._liquidityFee (#650) is not in mixedCase
Parameter FluidShiba.setFees(uint256,uint256,uint256,uint256)._reflectionFee (#650) is not in mixedCase
Parameter FluidShiba.setFees(uint256,uint256,uint256,uint256)._marketingFee (#650) is not in mixedCase
Parameter FluidShiba.setFees(uint256,uint256,uint256,uint256)._feeDenominator (#650) is not in mixedCase
Parameter FluidShiba.setFeeReceivers(address,address)._autoLiquidityReceiver (#659) is not in mixedCase
Parameter FluidShiba.setFeeReceivers(address,address)._marketingFeeReceiver (#659) is not in mixedCase
Parameter FluidShiba.setSwapBackSettings(bool,uint256)._enabled (#664) is not in mixedCase
Parameter FluidShiba.setSwapBackSettings(bool,uint256)._amount (#664) is not in mixedCase
Parameter FluidShiba.setTargetLiquidity(uint256,uint256)._target (#669) is not in mixedCase
Parameter FluidShiba.setTargetLiquidity(uint256,uint256)._denominator (#669) is not in mixedCase
Parameter FluidShiba.setDistributionCriteria(uint256,uint256)._minPeriod (#674) is not in mixedCase
Parameter FluidShiba.setDistributionCriteria(uint256,uint256)._minDistribution (#674) is not in mixedCase
Variable FluidShiba.MATIC (#356) is not in mixedCase
Variable FluidShiba.WBNB (#357) is not in mixedCase
Variable FluidShiba.DEAD (#358) is not in mixedCase
Variable FluidShiba.ZERO (#359) is not in mixedCase
Constant FluidShiba._name (#361) is not in UPPER_CASE_WITH_UNDERSCORES
Constant FluidShiba._symbol (#362) is not in UPPER_CASE_WITH_UNDERSCORES
Constant FluidShiba._decimals (#363) is not in UPPER_CASE_WITH_UNDERSCORES
Variable FluidShiba._totalSupply (#365) is not in mixedCase
Variable FluidShiba._maxTxAmount (#366) is not in mixedCase
Variable FluidShiba._maxWalletToken (#369) is not in mixedCase
Variable FluidShiba._balances (#371) is not in mixedCase
Variable FluidShiba._allowances (#372) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

FluidShiba.slitherConstructorVariables() (#353-698) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#358)
FluidShiba.slitherConstructorVariables() (#353-698) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#359)
FluidShiba.slitherConstructorVariables() (#353-698) uses literals with too many digits:
- distributorGas = 500000 (#398)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

FluidShiba.MATIC (#356) is never used in FluidShiba (#353-698)
Remove unused state variables.

Additional information: link

DividendDistributor.WBNB (#198) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#211) should be constant
FluidShiba.DEAD (#358) should be constant
FluidShiba.MATIC (#356) should be constant
FluidShiba.WBNB (#357) should be constant
FluidShiba.ZERO (#359) should be constant
FluidShiba._totalSupply (#365) should be constant
FluidShiba.launchedAt (#394) should be constant
FluidShiba.tradingOpen (#395) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

authorize(address) should be declared external:
- Auth.authorize(address) (#95-97)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#118-122)
cooldownEnabled(bool,uint8) should be declared external:
- FluidShiba.cooldownEnabled(bool,uint8) (#569-572)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam

Additional information: link


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.


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


Token is deployed only at one blockchain


Token has only one trading pair


Telegram account link seems to be invalid


Twitter account has relatively few followers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


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 code repository for the project


Young tokens have high risks of price dump / death


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

Price for FluidShiba

News for FluidShiba