ShibaDuff Token Logo

SHIBADUFF Token

About SHIBADUFF

Listings

Token 2 years

The ShibaDuff project was conceived and developed by a group of highly motivated people led by a strong passion and knowledge of cryptographic world.
Being the international staff and with great passion for the w assion for the world of cryptography and the simpsons it was decided to create SHIBA and Duff (in honor of Homer Simpson).
Our goal is to reach the whole world with the our token and we want to do it thanks to our determination and together with our communities!

Social

Laser Scorebeta Last Audit: 30 November 2021

report
Token is either risky or in presale. For presale 30+ is a fine score.

Anti-Scam

Links


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

ShibaDuff.addLiquidity(uint256,uint256) (#858-871) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#863-870)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

ShibaDuff._transfer(address,address,uint256) (#684-801) uses a weak PRNG: "_bBSLimit = _bBSLimitMin + uint256(keccak256(bytes)(abi.encodePacked(block.timestamp,block.difficulty))) % (_bBSLimitMax - _bBSLimitMin + 1) (#745)"
Do not use block.timestamp, now or blockhash as a source of randomness

Additional information: link

Reentrancy in ShibaDuff._transfer(address,address,uint256) (#684-801):
External calls:
- swapTokens(contractTokenBalance) (#713)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#830-836)
- buyBackTokens(_bBSLimit) (#748)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#848-853)
External calls sending eth:
- swapTokens(contractTokenBalance) (#713)
- recipient.transfer(amount) (#1154)
- buyBackTokens(_bBSLimit) (#748)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#848-853)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#800)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#977)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#902)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#893)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#923)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#894)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#913)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#914)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#904)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#925)
- _tokenTransfer(from,to,amount,takeFee) (#800)
- _rTotal = _rTotal.sub(rFee) (#932)
- _tokenTransfer(from,to,amount,takeFee) (#800)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#979)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#912)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#922)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#903)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#924)
- buyBackTokens(_bBSLimit) (#748)
- inSwapAndLiquify = true (#530)
- inSwapAndLiquify = false (#532)
Apply the check-effects-interactions pattern.

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.

ShibaDuff._transfer(address,address,uint256).sellHistory (#700) 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

ShibaDuff.addLiquidity(uint256,uint256) (#858-871) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#863-870)
Ensure that all the return values of the function calls are used.

Additional information: link

ShibaDuff._approve(address,address,uint256).owner (#676) shadows:
- Ownable.owner() (#175-177) (function)
Rename the local variables that shadow another component.

Additional information: link

ShibaDuff.setNumTokensSellToAddToBuyBack(uint256) (#1116-1118) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#1117)
Emit an event for critical parameter changes.

Additional information: link

ShibaDuff.setMarketingAddress(address)._marketingAddress (#1120) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#1121)
Check that the address is not zero.

Additional information: link

Reentrancy in ShibaDuff.transferFrom(address,address,uint256) (#594-598):
External calls:
- _transfer(sender,recipient,amount) (#595)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#848-853)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#830-836)
External calls sending eth:
- _transfer(sender,recipient,amount) (#595)
- recipient.transfer(amount) (#1154)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#848-853)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#596)
- _allowances[owner][spender] = amount (#680)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ShibaDuff.transferFrom(address,address,uint256) (#594-598):
External calls:
- _transfer(sender,recipient,amount) (#595)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#848-853)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#830-836)
External calls sending eth:
- _transfer(sender,recipient,amount) (#595)
- recipient.transfer(amount) (#1154)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#848-853)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#681)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#596)
Apply the check-effects-interactions pattern.

Additional information: link

ShibaDuff._removeOldSellHistories() (#1033-1055) uses timestamp for comparisons
Dangerous comparisons:
- _sellHistories[j].time >= maxStartTimeForHistories (#1039)
Avoid relying on block.timestamp.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#142-159) uses assembly
- INLINE ASM (#151-154)
Do not use evm assembly.

Additional information: link

ShibaDuff.addLiquidity(uint256,uint256) (#858-871) is never used and should be removed
Remove unused functions.

Additional information: link

ShibaDuff._previousLiquidityFee (#471) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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.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 Address._functionCallWithValue(address,bytes,uint256,string) (#142-159):
- (success,returndata) = target.call{value: weiValue}(data) (#145)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable ShibaDuff._isEnabledBuyBackAndBurn (#507) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#29)" inContext (#23-32)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in ShibaDuff.transferFrom(address,address,uint256) (#594-598):
External calls:
- _transfer(sender,recipient,amount) (#595)
- recipient.transfer(amount) (#1154)
External calls sending eth:
- _transfer(sender,recipient,amount) (#595)
- recipient.transfer(amount) (#1154)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#848-853)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#596)
- _allowances[owner][spender] = amount (#680)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#681)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#596)
Apply the check-effects-interactions pattern.

Additional information: link

Variable ShibaDuff.reflectionFromToken(uint256,bool).rTransferAmount (#642) is too similar to ShibaDuff._transferFromExcluded(address,address,uint256).tTransferAmount (#911)
Prevent variables from having similar names.

Additional information: link

ShibaDuff.slitherConstructorVariables() (#428-1206) uses literals with too many digits:
- _maxTxAmount = 3000000 * 10 ** 6 * 10 ** 9 (#489)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

ShibaDuff.deadAddress (#433) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

transferForeignToken(address,address) should be declared external:
- ShibaDuff.transferForeignToken(address,address) (#1176-1180)
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.


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


Unable to crawl data from the website


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

Additional information: link


Token was delisted (assigned to inactive / untracked listing) from 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 verify token contract address on the website


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find Telegram link on the website


Unable to find Twitter 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 CoinMarketCap listing / rank


Token has relatively low CoinGecko rank

Price for SHIBADUFF