Fiverr Token Logo

5rr [Fiverr] Token

About 5rr

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 anonymous. As long as we are unable to find website score is limited.


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

Fiverr.swapBack() (#607-646) sends eth to arbitrary user
Dangerous calls:
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#632)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in Fiverr._transferFrom(address,address,uint256) (#502-550):
External calls:
- swapBack() (#529)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#618-624)
- distributor.deposit{value: amountBNBReflection}() (#631)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#632)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#636-643)
External calls sending eth:
- swapBack() (#529)
- distributor.deposit{value: amountBNBReflection}() (#631)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#632)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#636-643)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#532)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#535)
- amountReceived = takeFee(sender,amount) (#534)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#583)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#324-335) ignores return value by BETH.transfer(shareholder,amount) (#330)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

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.

Reentrancy in DividendDistributor.setShare(address,uint256) (#257-271):
External calls:
- distributeDividend(shareholder) (#259)
- BETH.transfer(shareholder,amount) (#330)
State variables written after the call(s):
- shares[shareholder].amount = amount (#269)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#270)
Apply the check-effects-interactions pattern.

Additional information: link

Fiverr.swapBack() (#607-646) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#636-643)
Ensure that all the return values of the function calls are used.

Additional information: link

Fiverr.setTargetLiquidity(uint256,uint256) (#763-766) should emit an event for:
- targetLiquidity = _target (#764)
- targetLiquidityDenominator = _denominator (#765)
Emit an event for critical parameter changes.

Additional information: link

Fiverr.setFeeReceivers(address,address)._marketingFeeReceiver (#753) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#755)
Check that the address is not zero.

Additional information: link

Reentrancy in Fiverr.triggerManualBuyback(uint256,bool) (#656-662):
External calls:
- buyTokens(amount,DEAD) (#657)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#684-689)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#659)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Fiverr.triggerManualBuyback(uint256,bool) (#656-662):
External calls:
- buyTokens(amount,DEAD) (#657)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#684-689)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#660)
Apply the check-effects-interactions pattern.

Additional information: link

Fiverr.getTotalFee(bool) (#568-572) uses timestamp for comparisons
Dangerous comparisons:
- selling && buybackMultiplierTriggeredAt.add(buybackMultiplierLength) > block.timestamp (#570)
Avoid relying on block.timestamp.

Additional information: link

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

Additional information: link

Fiverr.triggerAutoBuyback() (#668-677) is never used and should be removed
Remove unused functions.

Additional information: link

Fiverr.swapThreshold (#434) 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

solc-0.8.6 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 Fiverr.swapBack() (#607-646):
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#632)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable Fiverr._allowances (#386) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

Fiverr.slitherConstructorVariables() (#368-805) uses literals with too many digits:
- distributorGas = 500000 (#426)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Fiverr.BETH (#371) is never used in Fiverr (#368-805)
Remove unused state variables.

Additional information: link

Fiverr._totalSupply (#380) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

getUnpaidEarnings(address) should be declared external:
- Fiverr.getUnpaidEarnings(address) (#781-783)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


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


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 has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death

Price for 5rr