Announcement Account
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
SHIBNOBIINU._transfer(address,address,uint256) (#700-818) uses a weak PRNG: "_bBSLimit = _bBSLimitMin + uint256(keccak256(bytes)(abi.encodePacked(block.timestamp,block.difficulty))) % (_bBSLimitMax - _bBSLimitMin + 1) (#762)"
Do not use block.timestamp, now or blockhash as a source of randomness
Additional information: link
SHIBNOBIINU.swapETHForTokens(uint256) (#858-873) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#865-870)
SHIBNOBIINU.addLiquidity(uint256,uint256) (#875-888) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#880-887)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in SHIBNOBIINU._transfer(address,address,uint256) (#700-818):
External calls:
- swapTokens(contractTokenBalance) (#730)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#847-853)
External calls sending eth:
- swapTokens(contractTokenBalance) (#730)
- recipient.transfer(amount) (#1171)
State variables written after the call(s):
- _removeOldSellHistories() (#757)
- _sellHistories[i].time = _sellHistories[j].time (#1058)
- _sellHistories[i].bnbAmount = _sellHistories[j].bnbAmount (#1059)
- _sellHistories.pop() (#1069)
Reentrancy in SHIBNOBIINU._transfer(address,address,uint256) (#700-818):
External calls:
- swapTokens(contractTokenBalance) (#730)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#847-853)
- buyBackTokens(_bBSLimit) (#765)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#865-870)
External calls sending eth:
- swapTokens(contractTokenBalance) (#730)
- recipient.transfer(amount) (#1171)
- buyBackTokens(_bBSLimit) (#765)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#865-870)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#817)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#994)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#919)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#910)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#940)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#911)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#930)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#931)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#921)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#942)
- _tokenTransfer(from,to,amount,takeFee) (#817)
- _rTotal = _rTotal.sub(rFee) (#949)
- _tokenTransfer(from,to,amount,takeFee) (#817)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#996)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#929)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#939)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#920)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#941)
- buyBackTokens(_bBSLimit) (#765)
- inSwapAndLiquify = true (#532)
- inSwapAndLiquify = false (#534)
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.
Contract ownership is not renounced (belongs to a wallet)
Contract ticker ($SHIBNOBIINU) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.
SHIBNOBIINU._transfer(address,address,uint256).sellHistory (#717) is a local variable never initialized
SHIBNOBIINU.safeLaunch_Blacklist_REMOVE(address[]).i (#570) is a local variable never initialized
SHIBNOBIINU.safeLaunch_Blacklist_ADD(address[]).i (#563) 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
SHIBNOBIINU.addLiquidity(uint256,uint256) (#875-888) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#880-887)
Ensure that all the return values of the function calls are used.
Additional information: link
SHIBNOBIINU.allowance(address,address).owner (#601) shadows:
- Ownable.owner() (#175-177) (function)
SHIBNOBIINU._approve(address,address,uint256).owner (#692) shadows:
- Ownable.owner() (#175-177) (function)
Rename the local variables that shadow another component.
Additional information: link
SHIBNOBIINU.SetBuyBackMaxTimeForHistories(uint256) (#1074-1076) should emit an event for:
- _buyBackMaxTimeForHistories = newMinutes * 60 (#1075)
SHIBNOBIINU.SetBuyBackDivisor(uint256) (#1078-1080) should emit an event for:
- _buyBackDivisor = newDivisor (#1079)
SHIBNOBIINU.SetBuyBackTimeInterval(uint256) (#1086-1088) should emit an event for:
- _buyBackTimeInterval = newMinutes * 60 (#1087)
SHIBNOBIINU.SetBuyBackRangeRate(uint256) (#1090-1093) should emit an event for:
- _buyBackRangeRate = newPercent (#1092)
SHIBNOBIINU.SetSwapMinutes(uint256) (#1099-1101) should emit an event for:
- _intervalMinutesForSwap = newMinutes * 60 (#1100)
SHIBNOBIINU.setTaxFeePercent(uint256) (#1103-1105) should emit an event for:
- _taxFee = taxFee (#1104)
SHIBNOBIINU.setBuyFee(uint256,uint256) (#1107-1110) should emit an event for:
- _buyTaxFee = buyTaxFee (#1108)
- _buyLiquidityFee = buyLiquidityFee (#1109)
SHIBNOBIINU.setSellFee(uint256,uint256) (#1112-1115) should emit an event for:
- _sellTaxFee = sellTaxFee (#1113)
- _sellLiquidityFee = sellLiquidityFee (#1114)
SHIBNOBIINU.setLiquidityFeePercent(uint256) (#1117-1119) should emit an event for:
- _liquidityFee = liquidityFee (#1118)
SHIBNOBIINU.setBuyBackSellLimit(uint256) (#1121-1123) should emit an event for:
- buyBackSellLimit = buyBackSellSetLimit (#1122)
SHIBNOBIINU.setMaxTxAmount(uint256) (#1125-1127) should emit an event for:
- _maxTxAmount = maxTxAmount (#1126)
SHIBNOBIINU.setMarketingDivisor(uint256) (#1129-1131) should emit an event for:
- marketingDivisor = divisor (#1130)
SHIBNOBIINU.setNumTokensSellToAddToBuyBack(uint256) (#1133-1135) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#1134)
Emit an event for critical parameter changes.
Additional information: link
SHIBNOBIINU.setMarketingAddress(address)._marketingAddress (#1137) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#1138)
Check that the address is not zero.
Additional information: link
Reentrancy in SHIBNOBIINU._transfer(address,address,uint256) (#700-818):
External calls:
- swapTokens(contractTokenBalance) (#730)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#847-853)
- buyBackTokens(_bBSLimit) (#765)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#865-870)
External calls sending eth:
- swapTokens(contractTokenBalance) (#730)
- recipient.transfer(amount) (#1171)
- buyBackTokens(_bBSLimit) (#765)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#865-870)
State variables written after the call(s):
- removeAllFee() (#781)
- _liquidityFee = 0 (#1018)
- _liquidityFee = _buyLiquidityFee (#783)
- removeAllFee() (#787)
- _liquidityFee = 0 (#1018)
- _liquidityFee = _sellLiquidityFee (#789)
- removeAllFee() (#794)
- _liquidityFee = 0 (#1018)
- _liquidityFee = _addressFees[from]._liquidityFee (#796)
- _liquidityFee = _addressFees[from]._sellLiquidityFee (#801)
- removeAllFee() (#808)
- _liquidityFee = 0 (#1018)
- _liquidityFee = _addressFees[to]._buyLiquidityFee (#811)
- _tokenTransfer(from,to,amount,takeFee) (#817)
- _liquidityFee = _previousLiquidityFee (#1023)
- _liquidityFee = 0 (#1018)
- removeAllFee() (#781)
- _previousLiquidityFee = _liquidityFee (#1015)
- removeAllFee() (#787)
- _previousLiquidityFee = _liquidityFee (#1015)
- removeAllFee() (#794)
- _previousLiquidityFee = _liquidityFee (#1015)
- removeAllFee() (#808)
- _previousLiquidityFee = _liquidityFee (#1015)
- _tokenTransfer(from,to,amount,takeFee) (#817)
- _previousLiquidityFee = _liquidityFee (#1015)
- removeAllFee() (#781)
- _previousTaxFee = _taxFee (#1014)
- removeAllFee() (#787)
- _previousTaxFee = _taxFee (#1014)
- removeAllFee() (#794)
- _previousTaxFee = _taxFee (#1014)
- removeAllFee() (#808)
- _previousTaxFee = _taxFee (#1014)
- _tokenTransfer(from,to,amount,takeFee) (#817)
- _previousTaxFee = _taxFee (#1014)
- _tokenTransfer(from,to,amount,takeFee) (#817)
- _tFeeTotal = _tFeeTotal.add(tFee) (#950)
- removeAllFee() (#781)
- _taxFee = 0 (#1017)
- _taxFee = _buyTaxFee (#782)
- removeAllFee() (#787)
- _taxFee = 0 (#1017)
- _taxFee = _sellTaxFee (#788)
- removeAllFee() (#794)
- _taxFee = 0 (#1017)
- _taxFee = _addressFees[from]._taxFee (#795)
- _taxFee = _addressFees[from]._sellTaxFee (#800)
- removeAllFee() (#808)
- _taxFee = 0 (#1017)
- _taxFee = _addressFees[to]._buyTaxFee (#810)
- _tokenTransfer(from,to,amount,takeFee) (#817)
- _taxFee = _previousTaxFee (#1022)
- _taxFee = 0 (#1017)
Reentrancy in SHIBNOBIINU.changeRouterVersion(address) (#1174-1187):
External calls:
- _pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1180-1181)
State variables written after the call(s):
- uniswapV2Pair = _pair (#1183)
- uniswapV2Router = _uniswapV2Router (#1186)
Reentrancy in SHIBNOBIINU.constructor() (#537-559):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#547-548)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#553)
- _isExcludedFromFee[address(this)] = true (#554)
- _startTimeForSwap = block.timestamp (#556)
- uniswapV2Router = _uniswapV2Router (#550)
Reentrancy in SHIBNOBIINU.transferFrom(address,address,uint256) (#610-614):
External calls:
- _transfer(sender,recipient,amount) (#611)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#865-870)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#847-853)
External calls sending eth:
- _transfer(sender,recipient,amount) (#611)
- recipient.transfer(amount) (#1171)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#865-870)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#612)
- _allowances[owner][spender] = amount (#696)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in SHIBNOBIINU._transfer(address,address,uint256) (#700-818):
External calls:
- swapTokens(contractTokenBalance) (#730)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#847-853)
- buyBackTokens(_bBSLimit) (#765)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#865-870)
External calls sending eth:
- swapTokens(contractTokenBalance) (#730)
- recipient.transfer(amount) (#1171)
- buyBackTokens(_bBSLimit) (#765)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#865-870)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#872)
- buyBackTokens(_bBSLimit) (#765)
- Transfer(sender,recipient,tTransferAmount) (#914)
- _tokenTransfer(from,to,amount,takeFee) (#817)
- Transfer(sender,recipient,tTransferAmount) (#934)
- _tokenTransfer(from,to,amount,takeFee) (#817)
- Transfer(sender,recipient,tTransferAmount) (#924)
- _tokenTransfer(from,to,amount,takeFee) (#817)
- Transfer(sender,recipient,tTransferAmount) (#945)
- _tokenTransfer(from,to,amount,takeFee) (#817)
Reentrancy in SHIBNOBIINU.constructor() (#537-559):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#547-548)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#558)
Reentrancy in SHIBNOBIINU.swapETHForTokens(uint256) (#858-873):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#865-870)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#872)
Reentrancy in SHIBNOBIINU.swapTokensForEth(uint256) (#838-856):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#847-853)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#855)
Reentrancy in SHIBNOBIINU.transferFrom(address,address,uint256) (#610-614):
External calls:
- _transfer(sender,recipient,amount) (#611)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#865-870)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#847-853)
External calls sending eth:
- _transfer(sender,recipient,amount) (#611)
- recipient.transfer(amount) (#1171)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#865-870)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#697)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#612)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#210-215) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#212)
SHIBNOBIINU._transfer(address,address,uint256) (#700-818) uses timestamp for comparisons
Dangerous comparisons:
- overMinimumTokenBalance && _startTimeForSwap + _intervalMinutesForSwap <= block.timestamp (#727)
- _sellHistories[i].time >= startTime (#747)
- balance > _bBSLimit (#764)
SHIBNOBIINU.buyBackTokens(uint256) (#832-836) uses timestamp for comparisons
Dangerous comparisons:
- amount > 0 (#833)
SHIBNOBIINU._removeOldSellHistories() (#1050-1072) uses timestamp for comparisons
Dangerous comparisons:
- _sellHistories[j].time >= maxStartTimeForHistories (#1056)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#105-114) uses assembly
- INLINE ASM (#112)
Address._functionCallWithValue(address,bytes,uint256,string) (#142-159) uses assembly
- INLINE ASM (#151-154)
Do not use evm assembly.
Additional information: link
SHIBNOBIINU.includeInReward(address) (#679-690) has costly operations inside a loop:
- _excluded.pop() (#686)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#142-159) is never used and should be removed
Address.functionCall(address,bytes) (#125-127) is never used and should be removed
Address.functionCall(address,bytes,string) (#129-131) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#133-135) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#137-140) is never used and should be removed
Address.isContract(address) (#105-114) is never used and should be removed
Address.sendValue(address,uint256) (#116-122) is never used and should be removed
Context._msgData() (#28-31) is never used and should be removed
SHIBNOBIINU.addLiquidity(uint256,uint256) (#875-888) is never used and should be removed
SafeMath.mod(uint256,uint256) (#93-95) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#97-100) is never used and should be removed
Remove unused functions.
Additional information: link
SHIBNOBIINU._rTotal (#447) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
SHIBNOBIINU._previousTaxFee (#470) is set pre-construction with a non-constant function or state variable:
- _taxFee
SHIBNOBIINU._previousLiquidityFee (#473) 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
Low level call in Address.sendValue(address,uint256) (#116-122):
- (success) = recipient.call{value: amount}() (#120)
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
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#255) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#256) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#272) is not in mixedCase
Function IUniswapV2Router01.WETH() (#293) is not in mixedCase
Function SHIBNOBIINU.safeLaunch_Blacklist_ADD(address[]) (#562-566) is not in mixedCase
Function SHIBNOBIINU.safeLaunch_Blacklist_REMOVE(address[]) (#569-573) is not in mixedCase
Parameter SHIBNOBIINU.calculateTaxFee(uint256)._amount (#999) is not in mixedCase
Parameter SHIBNOBIINU.calculateLiquidityFee(uint256)._amount (#1005) is not in mixedCase
Function SHIBNOBIINU.SetBuyBackMaxTimeForHistories(uint256) (#1074-1076) is not in mixedCase
Function SHIBNOBIINU.SetBuyBackDivisor(uint256) (#1078-1080) is not in mixedCase
Function SHIBNOBIINU.GetBuyBackTimeInterval() (#1082-1084) is not in mixedCase
Function SHIBNOBIINU.SetBuyBackTimeInterval(uint256) (#1086-1088) is not in mixedCase
Function SHIBNOBIINU.SetBuyBackRangeRate(uint256) (#1090-1093) is not in mixedCase
Function SHIBNOBIINU.GetSwapMinutes() (#1095-1097) is not in mixedCase
Function SHIBNOBIINU.SetSwapMinutes(uint256) (#1099-1101) is not in mixedCase
Parameter SHIBNOBIINU.setNumTokensSellToAddToBuyBack(uint256)._minimumTokensBeforeSwap (#1133) is not in mixedCase
Parameter SHIBNOBIINU.setMarketingAddress(address)._marketingAddress (#1137) is not in mixedCase
Parameter SHIBNOBIINU.setSwapAndLiquifyEnabled(bool)._enabled (#1141) is not in mixedCase
Parameter SHIBNOBIINU.setBuyBackEnabled(bool)._enabled (#1146) is not in mixedCase
Parameter SHIBNOBIINU.setAutoBuyBackEnabled(bool)._enabled (#1151) is not in mixedCase
Parameter SHIBNOBIINU.changeRouterVersion(address)._router (#1174) is not in mixedCase
Parameter SHIBNOBIINU.transferForeignToken(address,address)._token (#1193) is not in mixedCase
Parameter SHIBNOBIINU.transferForeignToken(address,address)._to (#1193) is not in mixedCase
Function SHIBNOBIINU.Sweep() (#1199-1202) is not in mixedCase
Parameter SHIBNOBIINU.setAddressFee(address,bool,uint256,uint256)._address (#1204) is not in mixedCase
Parameter SHIBNOBIINU.setAddressFee(address,bool,uint256,uint256)._enable (#1204) is not in mixedCase
Parameter SHIBNOBIINU.setAddressFee(address,bool,uint256,uint256)._addressTaxFee (#1204) is not in mixedCase
Parameter SHIBNOBIINU.setAddressFee(address,bool,uint256,uint256)._addressLiquidityFee (#1204) is not in mixedCase
Parameter SHIBNOBIINU.setBuyAddressFee(address,bool,uint256,uint256)._address (#1210) is not in mixedCase
Parameter SHIBNOBIINU.setBuyAddressFee(address,bool,uint256,uint256)._enable (#1210) is not in mixedCase
Parameter SHIBNOBIINU.setBuyAddressFee(address,bool,uint256,uint256)._addressTaxFee (#1210) is not in mixedCase
Parameter SHIBNOBIINU.setBuyAddressFee(address,bool,uint256,uint256)._addressLiquidityFee (#1210) is not in mixedCase
Parameter SHIBNOBIINU.setSellAddressFee(address,bool,uint256,uint256)._address (#1216) is not in mixedCase
Parameter SHIBNOBIINU.setSellAddressFee(address,bool,uint256,uint256)._enable (#1216) is not in mixedCase
Parameter SHIBNOBIINU.setSellAddressFee(address,bool,uint256,uint256)._addressTaxFee (#1216) is not in mixedCase
Parameter SHIBNOBIINU.setSellAddressFee(address,bool,uint256,uint256)._addressLiquidityFee (#1216) is not in mixedCase
Variable SHIBNOBIINU._isBlacklisted (#443) is not in mixedCase
Variable SHIBNOBIINU._taxFee (#469) is not in mixedCase
Variable SHIBNOBIINU._liquidityFee (#472) is not in mixedCase
Variable SHIBNOBIINU._buyTaxFee (#475) is not in mixedCase
Variable SHIBNOBIINU._buyLiquidityFee (#476) is not in mixedCase
Variable SHIBNOBIINU._sellTaxFee (#478) is not in mixedCase
Variable SHIBNOBIINU._sellLiquidityFee (#479) is not in mixedCase
Variable SHIBNOBIINU._startTimeForSwap (#481) is not in mixedCase
Variable SHIBNOBIINU._intervalMinutesForSwap (#482) is not in mixedCase
Variable SHIBNOBIINU._buyBackRangeRate (#484) is not in mixedCase
Variable SHIBNOBIINU._addressFees (#487) is not in mixedCase
Variable SHIBNOBIINU._maxTxAmount (#491) is not in mixedCase
Variable SHIBNOBIINU._sellHistories (#496) is not in mixedCase
Variable SHIBNOBIINU._isAutoBuyBack (#497) is not in mixedCase
Variable SHIBNOBIINU._buyBackDivisor (#498) is not in mixedCase
Variable SHIBNOBIINU._buyBackTimeInterval (#499) is not in mixedCase
Variable SHIBNOBIINU._buyBackMaxTimeForHistories (#500) is not in mixedCase
Variable SHIBNOBIINU._isEnabledBuyBackAndBurn (#509) 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 SHIBNOBIINU._transfer(address,address,uint256) (#700-818):
External calls:
- swapTokens(contractTokenBalance) (#730)
- recipient.transfer(amount) (#1171)
State variables written after the call(s):
- _removeOldSellHistories() (#757)
- _sellHistories[i].time = _sellHistories[j].time (#1058)
- _sellHistories[i].bnbAmount = _sellHistories[j].bnbAmount (#1059)
- _sellHistories.pop() (#1069)
Reentrancy in SHIBNOBIINU._transfer(address,address,uint256) (#700-818):
External calls:
- swapTokens(contractTokenBalance) (#730)
- recipient.transfer(amount) (#1171)
External calls sending eth:
- swapTokens(contractTokenBalance) (#730)
- recipient.transfer(amount) (#1171)
- buyBackTokens(_bBSLimit) (#765)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#865-870)
State variables written after the call(s):
- removeAllFee() (#781)
- _liquidityFee = 0 (#1018)
- _liquidityFee = _buyLiquidityFee (#783)
- removeAllFee() (#787)
- _liquidityFee = 0 (#1018)
- _liquidityFee = _sellLiquidityFee (#789)
- removeAllFee() (#794)
- _liquidityFee = 0 (#1018)
- _liquidityFee = _addressFees[from]._liquidityFee (#796)
- _liquidityFee = _addressFees[from]._sellLiquidityFee (#801)
- removeAllFee() (#808)
- _liquidityFee = 0 (#1018)
- _liquidityFee = _addressFees[to]._buyLiquidityFee (#811)
- _tokenTransfer(from,to,amount,takeFee) (#817)
- _liquidityFee = _previousLiquidityFee (#1023)
- _liquidityFee = 0 (#1018)
- removeAllFee() (#781)
- _previousLiquidityFee = _liquidityFee (#1015)
- removeAllFee() (#787)
- _previousLiquidityFee = _liquidityFee (#1015)
- removeAllFee() (#794)
- _previousLiquidityFee = _liquidityFee (#1015)
- removeAllFee() (#808)
- _previousLiquidityFee = _liquidityFee (#1015)
- _tokenTransfer(from,to,amount,takeFee) (#817)
- _previousLiquidityFee = _liquidityFee (#1015)
- removeAllFee() (#781)
- _previousTaxFee = _taxFee (#1014)
- removeAllFee() (#787)
- _previousTaxFee = _taxFee (#1014)
- removeAllFee() (#794)
- _previousTaxFee = _taxFee (#1014)
- removeAllFee() (#808)
- _previousTaxFee = _taxFee (#1014)
- _tokenTransfer(from,to,amount,takeFee) (#817)
- _previousTaxFee = _taxFee (#1014)
- _tokenTransfer(from,to,amount,takeFee) (#817)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#994)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#919)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#910)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#940)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#911)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#930)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#931)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#921)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#942)
- _tokenTransfer(from,to,amount,takeFee) (#817)
- _rTotal = _rTotal.sub(rFee) (#949)
- _tokenTransfer(from,to,amount,takeFee) (#817)
- _tFeeTotal = _tFeeTotal.add(tFee) (#950)
- _tokenTransfer(from,to,amount,takeFee) (#817)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#996)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#929)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#939)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#920)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#941)
- removeAllFee() (#781)
- _taxFee = 0 (#1017)
- _taxFee = _buyTaxFee (#782)
- removeAllFee() (#787)
- _taxFee = 0 (#1017)
- _taxFee = _sellTaxFee (#788)
- removeAllFee() (#794)
- _taxFee = 0 (#1017)
- _taxFee = _addressFees[from]._taxFee (#795)
- _taxFee = _addressFees[from]._sellTaxFee (#800)
- removeAllFee() (#808)
- _taxFee = 0 (#1017)
- _taxFee = _addressFees[to]._buyTaxFee (#810)
- _tokenTransfer(from,to,amount,takeFee) (#817)
- _taxFee = _previousTaxFee (#1022)
- _taxFee = 0 (#1017)
- buyBackTokens(_bBSLimit) (#765)
- inSwapAndLiquify = true (#532)
- inSwapAndLiquify = false (#534)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#872)
- buyBackTokens(_bBSLimit) (#765)
- Transfer(sender,recipient,tTransferAmount) (#914)
- _tokenTransfer(from,to,amount,takeFee) (#817)
- Transfer(sender,recipient,tTransferAmount) (#934)
- _tokenTransfer(from,to,amount,takeFee) (#817)
- Transfer(sender,recipient,tTransferAmount) (#924)
- _tokenTransfer(from,to,amount,takeFee) (#817)
- Transfer(sender,recipient,tTransferAmount) (#945)
- _tokenTransfer(from,to,amount,takeFee) (#817)
Reentrancy in SHIBNOBIINU.transferFrom(address,address,uint256) (#610-614):
External calls:
- _transfer(sender,recipient,amount) (#611)
- recipient.transfer(amount) (#1171)
External calls sending eth:
- _transfer(sender,recipient,amount) (#611)
- recipient.transfer(amount) (#1171)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#865-870)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#612)
- _allowances[owner][spender] = amount (#696)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#697)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#612)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#298) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#299)
Variable SHIBNOBIINU._transferToExcluded(address,address,uint256).rTransferAmount (#918) is too similar to SHIBNOBIINU._transferFromExcluded(address,address,uint256).tTransferAmount (#928)
Variable SHIBNOBIINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#970) is too similar to SHIBNOBIINU._getValues(uint256).tTransferAmount (#954)
Variable SHIBNOBIINU._transferBothExcluded(address,address,uint256).rTransferAmount (#938) is too similar to SHIBNOBIINU._transferFromExcluded(address,address,uint256).tTransferAmount (#928)
Variable SHIBNOBIINU._transferStandard(address,address,uint256).rTransferAmount (#909) is too similar to SHIBNOBIINU._transferFromExcluded(address,address,uint256).tTransferAmount (#928)
Variable SHIBNOBIINU._transferFromExcluded(address,address,uint256).rTransferAmount (#928) is too similar to SHIBNOBIINU._transferFromExcluded(address,address,uint256).tTransferAmount (#928)
Variable SHIBNOBIINU._transferToExcluded(address,address,uint256).rTransferAmount (#918) is too similar to SHIBNOBIINU._getValues(uint256).tTransferAmount (#954)
Variable SHIBNOBIINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#970) is too similar to SHIBNOBIINU._transferBothExcluded(address,address,uint256).tTransferAmount (#938)
Variable SHIBNOBIINU._transferToExcluded(address,address,uint256).rTransferAmount (#918) is too similar to SHIBNOBIINU._transferToExcluded(address,address,uint256).tTransferAmount (#918)
Variable SHIBNOBIINU._transferBothExcluded(address,address,uint256).rTransferAmount (#938) is too similar to SHIBNOBIINU._getValues(uint256).tTransferAmount (#954)
Variable SHIBNOBIINU._transferStandard(address,address,uint256).rTransferAmount (#909) is too similar to SHIBNOBIINU._getValues(uint256).tTransferAmount (#954)
Variable SHIBNOBIINU._transferFromExcluded(address,address,uint256).rTransferAmount (#928) is too similar to SHIBNOBIINU._getValues(uint256).tTransferAmount (#954)
Variable SHIBNOBIINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#970) is too similar to SHIBNOBIINU._getTValues(uint256).tTransferAmount (#962)
Variable SHIBNOBIINU._transferToExcluded(address,address,uint256).rTransferAmount (#918) is too similar to SHIBNOBIINU._transferBothExcluded(address,address,uint256).tTransferAmount (#938)
Variable SHIBNOBIINU._transferToExcluded(address,address,uint256).rTransferAmount (#918) is too similar to SHIBNOBIINU._transferStandard(address,address,uint256).tTransferAmount (#909)
Variable SHIBNOBIINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#970) is too similar to SHIBNOBIINU._transferFromExcluded(address,address,uint256).tTransferAmount (#928)
Variable SHIBNOBIINU._transferBothExcluded(address,address,uint256).rTransferAmount (#938) is too similar to SHIBNOBIINU._transferBothExcluded(address,address,uint256).tTransferAmount (#938)
Variable SHIBNOBIINU._getValues(uint256).rTransferAmount (#955) is too similar to SHIBNOBIINU._getTValues(uint256).tTransferAmount (#962)
Variable SHIBNOBIINU.reflectionFromToken(uint256,bool).rTransferAmount (#658) is too similar to SHIBNOBIINU._getTValues(uint256).tTransferAmount (#962)
Variable SHIBNOBIINU._transferToExcluded(address,address,uint256).rTransferAmount (#918) is too similar to SHIBNOBIINU._getTValues(uint256).tTransferAmount (#962)
Variable SHIBNOBIINU._transferStandard(address,address,uint256).rTransferAmount (#909) is too similar to SHIBNOBIINU._transferBothExcluded(address,address,uint256).tTransferAmount (#938)
Variable SHIBNOBIINU._transferStandard(address,address,uint256).rTransferAmount (#909) is too similar to SHIBNOBIINU._transferStandard(address,address,uint256).tTransferAmount (#909)
Variable SHIBNOBIINU._transferBothExcluded(address,address,uint256).rTransferAmount (#938) is too similar to SHIBNOBIINU._getTValues(uint256).tTransferAmount (#962)
Variable SHIBNOBIINU._transferFromExcluded(address,address,uint256).rTransferAmount (#928) is too similar to SHIBNOBIINU._transferBothExcluded(address,address,uint256).tTransferAmount (#938)
Variable SHIBNOBIINU._transferStandard(address,address,uint256).rTransferAmount (#909) is too similar to SHIBNOBIINU._getTValues(uint256).tTransferAmount (#962)
Variable SHIBNOBIINU._transferFromExcluded(address,address,uint256).rTransferAmount (#928) is too similar to SHIBNOBIINU._getTValues(uint256).tTransferAmount (#962)
Variable SHIBNOBIINU._getValues(uint256).rTransferAmount (#955) is too similar to SHIBNOBIINU._transferToExcluded(address,address,uint256).tTransferAmount (#918)
Variable SHIBNOBIINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#970) is too similar to SHIBNOBIINU._transferStandard(address,address,uint256).tTransferAmount (#909)
Variable SHIBNOBIINU._transferBothExcluded(address,address,uint256).rTransferAmount (#938) is too similar to SHIBNOBIINU._transferStandard(address,address,uint256).tTransferAmount (#909)
Variable SHIBNOBIINU._getValues(uint256).rTransferAmount (#955) is too similar to SHIBNOBIINU._transferBothExcluded(address,address,uint256).tTransferAmount (#938)
Variable SHIBNOBIINU._transferFromExcluded(address,address,uint256).rTransferAmount (#928) is too similar to SHIBNOBIINU._transferToExcluded(address,address,uint256).tTransferAmount (#918)
Variable SHIBNOBIINU._getValues(uint256).rTransferAmount (#955) is too similar to SHIBNOBIINU._transferFromExcluded(address,address,uint256).tTransferAmount (#928)
Variable SHIBNOBIINU.reflectionFromToken(uint256,bool).rTransferAmount (#658) is too similar to SHIBNOBIINU._getValues(uint256).tTransferAmount (#954)
Variable SHIBNOBIINU._getValues(uint256).rTransferAmount (#955) is too similar to SHIBNOBIINU._transferStandard(address,address,uint256).tTransferAmount (#909)
Variable SHIBNOBIINU.reflectionFromToken(uint256,bool).rTransferAmount (#658) is too similar to SHIBNOBIINU._transferToExcluded(address,address,uint256).tTransferAmount (#918)
Variable SHIBNOBIINU._transferFromExcluded(address,address,uint256).rTransferAmount (#928) is too similar to SHIBNOBIINU._transferStandard(address,address,uint256).tTransferAmount (#909)
Variable SHIBNOBIINU.reflectionFromToken(uint256,bool).rTransferAmount (#658) is too similar to SHIBNOBIINU._transferBothExcluded(address,address,uint256).tTransferAmount (#938)
Variable SHIBNOBIINU.reflectionFromToken(uint256,bool).rTransferAmount (#658) is too similar to SHIBNOBIINU._transferFromExcluded(address,address,uint256).tTransferAmount (#928)
Variable SHIBNOBIINU.reflectionFromToken(uint256,bool).rTransferAmount (#658) is too similar to SHIBNOBIINU._transferStandard(address,address,uint256).tTransferAmount (#909)
Variable SHIBNOBIINU._transferBothExcluded(address,address,uint256).rTransferAmount (#938) is too similar to SHIBNOBIINU._transferToExcluded(address,address,uint256).tTransferAmount (#918)
Variable SHIBNOBIINU._transferStandard(address,address,uint256).rTransferAmount (#909) is too similar to SHIBNOBIINU._transferToExcluded(address,address,uint256).tTransferAmount (#918)
Variable SHIBNOBIINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#970) is too similar to SHIBNOBIINU._transferToExcluded(address,address,uint256).tTransferAmount (#918)
Variable SHIBNOBIINU._getValues(uint256).rTransferAmount (#955) is too similar to SHIBNOBIINU._getValues(uint256).tTransferAmount (#954)
Prevent variables from having similar names.
Additional information: link
SHIBNOBIINU.prepareForPreSale() (#1156-1161) uses literals with too many digits:
- _maxTxAmount = 1000000000 * 10 ** 6 * 10 ** 9 (#1160)
SHIBNOBIINU.afterPreSale() (#1163-1168) uses literals with too many digits:
- _maxTxAmount = 3000000 * 10 ** 6 * 10 ** 9 (#1167)
SHIBNOBIINU.slitherConstructorVariables() (#428-1223) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#433)
SHIBNOBIINU.slitherConstructorVariables() (#428-1223) uses literals with too many digits:
- _tTotal = 1000000 * 10 ** 6 * 10 ** 9 (#446)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
SHIBNOBIINU._decimals (#452) should be constant
SHIBNOBIINU._isEnabledBuyBackAndBurn (#509) should be constant
SHIBNOBIINU._name (#450) should be constant
SHIBNOBIINU._symbol (#451) should be constant
SHIBNOBIINU._tTotal (#446) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#184-187)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#189-193)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#195-197)
getTime() should be declared external:
- Ownable.getTime() (#199-201)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#203-208)
unlock() should be declared external:
- Ownable.unlock() (#210-215)
name() should be declared external:
- SHIBNOBIINU.name() (#575-577)
symbol() should be declared external:
- SHIBNOBIINU.symbol() (#579-581)
decimals() should be declared external:
- SHIBNOBIINU.decimals() (#583-585)
totalSupply() should be declared external:
- SHIBNOBIINU.totalSupply() (#587-589)
transfer(address,uint256) should be declared external:
- SHIBNOBIINU.transfer(address,uint256) (#596-599)
allowance(address,address) should be declared external:
- SHIBNOBIINU.allowance(address,address) (#601-603)
approve(address,uint256) should be declared external:
- SHIBNOBIINU.approve(address,uint256) (#605-608)
transferFrom(address,address,uint256) should be declared external:
- SHIBNOBIINU.transferFrom(address,address,uint256) (#610-614)
increaseAllowance(address,uint256) should be declared external:
- SHIBNOBIINU.increaseAllowance(address,uint256) (#616-619)
decreaseAllowance(address,uint256) should be declared external:
- SHIBNOBIINU.decreaseAllowance(address,uint256) (#621-624)
isExcludedFromReward(address) should be declared external:
- SHIBNOBIINU.isExcludedFromReward(address) (#626-628)
totalFees() should be declared external:
- SHIBNOBIINU.totalFees() (#630-632)
minimumTokensBeforeSwapAmount() should be declared external:
- SHIBNOBIINU.minimumTokensBeforeSwapAmount() (#634-636)
buyBackSellLimitAmount() should be declared external:
- SHIBNOBIINU.buyBackSellLimitAmount() (#638-640)
deliver(uint256) should be declared external:
- SHIBNOBIINU.deliver(uint256) (#642-649)
reflectionFromToken(uint256,bool) should be declared external:
- SHIBNOBIINU.reflectionFromToken(uint256,bool) (#652-661)
excludeFromReward(address) should be declared external:
- SHIBNOBIINU.excludeFromReward(address) (#669-677)
isExcludedFromFee(address) should be declared external:
- SHIBNOBIINU.isExcludedFromFee(address) (#1026-1028)
excludeFromFee(address) should be declared external:
- SHIBNOBIINU.excludeFromFee(address) (#1030-1032)
includeInFee(address) should be declared external:
- SHIBNOBIINU.includeInFee(address) (#1034-1036)
GetBuyBackTimeInterval() should be declared external:
- SHIBNOBIINU.GetBuyBackTimeInterval() (#1082-1084)
GetSwapMinutes() should be declared external:
- SHIBNOBIINU.GetSwapMinutes() (#1095-1097)
setBuyBackEnabled(bool) should be declared external:
- SHIBNOBIINU.setBuyBackEnabled(bool) (#1146-1149)
setAutoBuyBackEnabled(bool) should be declared external:
- SHIBNOBIINU.setAutoBuyBackEnabled(bool) (#1151-1154)
changeRouterVersion(address) should be declared external:
- SHIBNOBIINU.changeRouterVersion(address) (#1174-1187)
transferForeignToken(address,address) should be declared external:
- SHIBNOBIINU.transferForeignToken(address,address) (#1193-1197)
Use the external attribute for functions never called from the contract.
Additional information: link
Contract has 0% buy tax and 42% sell tax.
Taxes are extremely high (over 30%)
Additional information: link
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.
Average 30d PancakeSwap liquidity is low.
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 website, listings and other project-related information
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
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
Telegram account link seems to be invalid
Twitter account has less than 100 followers
Last post in Twitter was more than 30 days ago
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts