SHIBA PEPSI IS A SHAPE OF SHIBA WITH A PERSONALITY LIKE PEPSI, PEPSI NEVER FEARS AGAINST THE GREAT FLOW OF COLA , SO PEPSHIB IS NEVER Afraid of BTC RED, PEPSI SHIBA ARMY WILL GO AGAINST BTC FLOW
PEPSHIB.swapBack() (#316-359) sends eth to arbitrary user
Dangerous calls:
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#351)
- (pepsienergySuccess) = address(pepsienergyFeeReceiver).call{gas: 30000,value: amountBNBpepsienergy}() (#353)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#355)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in PEPSHIB._transferFrom(address,address,uint256) (#237-270):
External calls:
- swapBack() (#261)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,autoLiquidityReceiver,block.timestamp) (#363-370)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#334-340)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#351)
- (pepsienergySuccess) = address(pepsienergyFeeReceiver).call{gas: 30000,value: amountBNBpepsienergy}() (#353)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#355)
External calls sending eth:
- swapBack() (#261)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,autoLiquidityReceiver,block.timestamp) (#363-370)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#351)
- (pepsienergySuccess) = address(pepsienergyFeeReceiver).call{gas: 30000,value: amountBNBpepsienergy}() (#353)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#355)
State variables written after the call(s):
- _balances[sender] = _balances[sender] - amount (#263)
- _balances[recipient] = _balances[recipient] + amountReceived (#266)
- amountReceived = takeFee(recipient,amount) (#265)
- _balances[address(this)] = _balances[address(this)] + (feeAmount) (#303)
Apply the check-effects-interactions pattern.
Additional information: link
Contract ownership is not renounced (belongs to a wallet)
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
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.
PEPSHIB.addLiquidity(uint256,uint256) (#361-373) ignores return value by router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,autoLiquidityReceiver,block.timestamp) (#363-370)
Ensure that all the return values of the function calls are used.
Additional information: link
PEPSHIB.takeFee(address,uint256) (#300-307) performs a multiplication on the result of a division:
-feeAmount = amount / 100 * (totalFee) (#301)
PEPSHIB.swapBack() (#316-359) performs a multiplication on the result of a division:
-amountToLiquify = tokensToSell / (totalFee) * (liquidityFee) / (2) (#325)
PEPSHIB.setSwapBackSettings(bool,uint256,uint256) (#420-424) performs a multiplication on the result of a division:
-swapThreshold = _totalSupply / (10000) * (_percentage_min_base10000) (#422)
PEPSHIB.setSwapBackSettings(bool,uint256,uint256) (#420-424) performs a multiplication on the result of a division:
-maxSwapSize = _totalSupply / (10000) * (_percentage_max_base10000) (#423)
PEPSHIB.setMaxWalletPercent_base1000(uint256) (#434-436) performs a multiplication on the result of a division:
-_maxWalletToken = _totalSupply / (1000) * (maxWallPercent_base1000) (#435)
PEPSHIB.setMaxBuyTxPercent_base1000(uint256) (#438-440) performs a multiplication on the result of a division:
-_maxBuyTxAmount = _totalSupply / (1000) * (maxBuyTXPercentage_base1000) (#439)
PEPSHIB.setMaxSellTxPercent_base1000(uint256) (#442-444) performs a multiplication on the result of a division:
-_maxSellTxAmount = _totalSupply / (1000) * (maxSellTXPercentage_base1000) (#443)
PEPSHIB.slitherConstructorVariables() (#137-459) performs a multiplication on the result of a division:
-_maxBuyTxAmount = _totalSupply / (100) * (30) (#173)
PEPSHIB.slitherConstructorVariables() (#137-459) performs a multiplication on the result of a division:
-_maxSellTxAmount = _totalSupply / (100) * (30) (#174)
PEPSHIB.slitherConstructorVariables() (#137-459) performs a multiplication on the result of a division:
-_maxWalletToken = _totalSupply / (100) * (30) (#175)
PEPSHIB.slitherConstructorVariables() (#137-459) performs a multiplication on the result of a division:
-swapThreshold = _totalSupply / 1000 * 1 (#187)
PEPSHIB.slitherConstructorVariables() (#137-459) performs a multiplication on the result of a division:
-maxSwapSize = _totalSupply / 100 * 1 (#188)
Consider ordering multiplication before division.
Additional information: link
PEPSHIB.setBuyFees(uint256,uint256,uint256,uint256) (#397-403) should emit an event for:
- BuyliquidityFee = _liquidityFee (#398)
- BuypepsienergyFee = _pepsienergyFee (#399)
- BuymarketingFee = _marketingFee (#400)
- BuycharityFee = _devFee (#401)
- BuytotalFee = _liquidityFee + (_pepsienergyFee) + (_marketingFee) + (_devFee) (#402)
PEPSHIB.setSellFees(uint256,uint256,uint256,uint256) (#405-411) should emit an event for:
- SellliquidityFee = _liquidityFee (#406)
- SellpepsienergyFee = _pepsienergyFee (#407)
- SellmarketingFee = _marketingFee (#408)
- SellcharityFee = _devFee (#409)
- SelltotalFee = _liquidityFee + (_pepsienergyFee) + (_marketingFee) + (_devFee) (#410)
PEPSHIB.setSwapBackSettings(bool,uint256,uint256) (#420-424) should emit an event for:
- swapThreshold = _totalSupply / (10000) * (_percentage_min_base10000) (#422)
- maxSwapSize = _totalSupply / (10000) * (_percentage_max_base10000) (#423)
PEPSHIB.setMaxWalletPercent_base1000(uint256) (#434-436) should emit an event for:
- _maxWalletToken = _totalSupply / (1000) * (maxWallPercent_base1000) (#435)
PEPSHIB.setMaxBuyTxPercent_base1000(uint256) (#438-440) should emit an event for:
- _maxBuyTxAmount = _totalSupply / (1000) * (maxBuyTXPercentage_base1000) (#439)
PEPSHIB.setMaxSellTxPercent_base1000(uint256) (#442-444) should emit an event for:
- _maxSellTxAmount = _totalSupply / (1000) * (maxSellTXPercentage_base1000) (#443)
Emit an event for critical parameter changes.
Additional information: link
PEPSHIB.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#413) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#414)
PEPSHIB.setFeeReceivers(address,address,address,address)._marketingFeeReceiver (#413) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#415)
PEPSHIB.setFeeReceivers(address,address,address,address)._pepsienergyFeeReceiver (#413) lacks a zero-check on :
- pepsienergyFeeReceiver = _pepsienergyFeeReceiver (#416)
PEPSHIB.setFeeReceivers(address,address,address,address)._devFeeReceiver (#413) lacks a zero-check on :
- devFeeReceiver = _devFeeReceiver (#417)
Check that the address is not zero.
Additional information: link
Reentrancy in PEPSHIB.constructor() (#194-204):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#196)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = type()(uint256).max (#197)
- _balances[msg.sender] = _totalSupply (#202)
- isFeeExempt[msg.sender] = true (#199)
- isTxLimitExempt[msg.sender] = true (#200)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in PEPSHIB._transferFrom(address,address,uint256) (#237-270):
External calls:
- swapBack() (#261)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,autoLiquidityReceiver,block.timestamp) (#363-370)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#334-340)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#351)
- (pepsienergySuccess) = address(pepsienergyFeeReceiver).call{gas: 30000,value: amountBNBpepsienergy}() (#353)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#355)
External calls sending eth:
- swapBack() (#261)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,autoLiquidityReceiver,block.timestamp) (#363-370)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#351)
- (pepsienergySuccess) = address(pepsienergyFeeReceiver).call{gas: 30000,value: amountBNBpepsienergy}() (#353)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#355)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#304)
- amountReceived = takeFee(recipient,amount) (#265)
- Transfer(sender,recipient,amountReceived) (#268)
Reentrancy in PEPSHIB.addLiquidity(uint256,uint256) (#361-373):
External calls:
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,autoLiquidityReceiver,block.timestamp) (#363-370)
Event emitted after the call(s):
- AutoLiquify(bnbAmount,tokenAmount) (#371)
Reentrancy in PEPSHIB.constructor() (#194-204):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#196)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#203)
Reentrancy in PEPSHIB.swapBack() (#316-359):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#334-340)
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#351)
- (pepsienergySuccess) = address(pepsienergyFeeReceiver).call{gas: 30000,value: amountBNBpepsienergy}() (#353)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#355)
- addLiquidity(amountToLiquify,amountBNBLiquidity) (#358)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,autoLiquidityReceiver,block.timestamp) (#363-370)
External calls sending eth:
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#351)
- (pepsienergySuccess) = address(pepsienergyFeeReceiver).call{gas: 30000,value: amountBNBpepsienergy}() (#353)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#355)
- addLiquidity(amountToLiquify,amountBNBLiquidity) (#358)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,autoLiquidityReceiver,block.timestamp) (#363-370)
Event emitted after the call(s):
- AutoLiquify(bnbAmount,tokenAmount) (#371)
- addLiquidity(amountToLiquify,amountBNBLiquidity) (#358)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.Ownershipunlock() (#69-74) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked) (#71)
Avoid relying on block.timestamp.
Additional information: link
PEPSHIB.BuytotalFee (#164) is set pre-construction with a non-constant function or state variable:
- BuyliquidityFee + BuycharityFee + BuymarketingFee + BuypepsienergyFee
PEPSHIB.SelltotalFee (#170) is set pre-construction with a non-constant function or state variable:
- SellliquidityFee + SellcharityFee + SellmarketingFee + SellpepsienergyFee
PEPSHIB._maxBuyTxAmount (#173) is set pre-construction with a non-constant function or state variable:
- _totalSupply / (100) * (30)
PEPSHIB._maxSellTxAmount (#174) is set pre-construction with a non-constant function or state variable:
- _totalSupply / (100) * (30)
PEPSHIB._maxWalletToken (#175) is set pre-construction with a non-constant function or state variable:
- _totalSupply / (100) * (30)
PEPSHIB.swapThreshold (#187) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 1000 * 1
PEPSHIB.maxSwapSize (#188) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 100 * 1
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 PEPSHIB.swapBack() (#316-359):
- (MarketingSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#351)
- (pepsienergySuccess) = address(pepsienergyFeeReceiver).call{gas: 30000,value: amountBNBpepsienergy}() (#353)
- (devSuccess) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#355)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function Ownable.Ownershiplock(uint256) (#62-67) is not in mixedCase
Function Ownable.Ownershipunlock() (#69-74) is not in mixedCase
Function IDEXRouter.WETH() (#87) is not in mixedCase
Parameter PEPSHIB.setBuyFees(uint256,uint256,uint256,uint256)._liquidityFee (#397) is not in mixedCase
Parameter PEPSHIB.setBuyFees(uint256,uint256,uint256,uint256)._pepsienergyFee (#397) is not in mixedCase
Parameter PEPSHIB.setBuyFees(uint256,uint256,uint256,uint256)._marketingFee (#397) is not in mixedCase
Parameter PEPSHIB.setBuyFees(uint256,uint256,uint256,uint256)._devFee (#397) is not in mixedCase
Parameter PEPSHIB.setSellFees(uint256,uint256,uint256,uint256)._liquidityFee (#405) is not in mixedCase
Parameter PEPSHIB.setSellFees(uint256,uint256,uint256,uint256)._pepsienergyFee (#405) is not in mixedCase
Parameter PEPSHIB.setSellFees(uint256,uint256,uint256,uint256)._marketingFee (#405) is not in mixedCase
Parameter PEPSHIB.setSellFees(uint256,uint256,uint256,uint256)._devFee (#405) is not in mixedCase
Parameter PEPSHIB.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#413) is not in mixedCase
Parameter PEPSHIB.setFeeReceivers(address,address,address,address)._marketingFeeReceiver (#413) is not in mixedCase
Parameter PEPSHIB.setFeeReceivers(address,address,address,address)._pepsienergyFeeReceiver (#413) is not in mixedCase
Parameter PEPSHIB.setFeeReceivers(address,address,address,address)._devFeeReceiver (#413) is not in mixedCase
Parameter PEPSHIB.setSwapBackSettings(bool,uint256,uint256)._enabled (#420) is not in mixedCase
Parameter PEPSHIB.setSwapBackSettings(bool,uint256,uint256)._percentage_min_base10000 (#420) is not in mixedCase
Parameter PEPSHIB.setSwapBackSettings(bool,uint256,uint256)._percentage_max_base10000 (#420) is not in mixedCase
Function PEPSHIB.setMaxWalletPercent_base1000(uint256) (#434-436) is not in mixedCase
Parameter PEPSHIB.setMaxWalletPercent_base1000(uint256).maxWallPercent_base1000 (#434) is not in mixedCase
Function PEPSHIB.setMaxBuyTxPercent_base1000(uint256) (#438-440) is not in mixedCase
Parameter PEPSHIB.setMaxBuyTxPercent_base1000(uint256).maxBuyTXPercentage_base1000 (#438) is not in mixedCase
Function PEPSHIB.setMaxSellTxPercent_base1000(uint256) (#442-444) is not in mixedCase
Parameter PEPSHIB.setMaxSellTxPercent_base1000(uint256).maxSellTXPercentage_base1000 (#442) is not in mixedCase
Variable PEPSHIB.WBNB (#139) is not in mixedCase
Variable PEPSHIB.DEAD (#140) is not in mixedCase
Variable PEPSHIB.ZERO (#141) is not in mixedCase
Constant PEPSHIB._name (#143) is not in UPPER_CASE_WITH_UNDERSCORES
Constant PEPSHIB._symbol (#144) is not in UPPER_CASE_WITH_UNDERSCORES
Constant PEPSHIB._decimals (#145) is not in UPPER_CASE_WITH_UNDERSCORES
Variable PEPSHIB._totalSupply (#146) is not in mixedCase
Variable PEPSHIB._balances (#148) is not in mixedCase
Variable PEPSHIB._allowances (#149) is not in mixedCase
Variable PEPSHIB.BuyliquidityFee (#160) is not in mixedCase
Variable PEPSHIB.BuycharityFee (#161) is not in mixedCase
Variable PEPSHIB.BuymarketingFee (#162) is not in mixedCase
Variable PEPSHIB.BuypepsienergyFee (#163) is not in mixedCase
Variable PEPSHIB.BuytotalFee (#164) is not in mixedCase
Variable PEPSHIB.SellliquidityFee (#166) is not in mixedCase
Variable PEPSHIB.SellcharityFee (#167) is not in mixedCase
Variable PEPSHIB.SellmarketingFee (#168) is not in mixedCase
Variable PEPSHIB.SellpepsienergyFee (#169) is not in mixedCase
Variable PEPSHIB.SelltotalFee (#170) is not in mixedCase
Variable PEPSHIB._maxBuyTxAmount (#173) is not in mixedCase
Variable PEPSHIB._maxSellTxAmount (#174) is not in mixedCase
Variable PEPSHIB._maxWalletToken (#175) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#92) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#93)
Variable PEPSHIB.setSwapBackSettings(bool,uint256,uint256)._percentage_max_base10000 (#420) is too similar to PEPSHIB.setSwapBackSettings(bool,uint256,uint256)._percentage_min_base10000 (#420)
Prevent variables from having similar names.
Additional information: link
PEPSHIB.slitherConstructorVariables() (#137-459) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#140)
PEPSHIB.slitherConstructorVariables() (#137-459) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#141)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
PEPSHIB.ZERO (#141) is never used in PEPSHIB (#137-459)
Remove unused state variables.
Additional information: link
PEPSHIB.DEAD (#140) should be constant
PEPSHIB.WBNB (#139) should be constant
PEPSHIB.ZERO (#141) should be constant
PEPSHIB._totalSupply (#146) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#52-56)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#58-60)
Ownershiplock(uint256) should be declared external:
- Ownable.Ownershiplock(uint256) (#62-67)
Ownershipunlock() should be declared external:
- Ownable.Ownershipunlock() (#69-74)
rescueToken(address,uint256) should be declared external:
- PEPSHIB.rescueToken(address,uint256) (#447-449)
Use the external attribute for functions never called from the contract.
Additional information: link
Contract has 15% buy tax and 15% sell tax.
Taxes are suspiciously high (over 10%) and contract ownership is not renounced. Token has a high risk of becoming a honeypot.
Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.
Average 30d PancakeSwap liquidity is low.
Average 30d PancakeSwap volume is low.
Average 30d number of PancakeSwap swaps is low.
Token is deployed only at one blockchain
Token has only one trading pair
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 on CoinHunt
Additional information: link
Unable to find code repository for the project
Young tokens have high risks of scam / price dump / death
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
Alexa traffic rank is very low
Additional information: link
Young tokens have high risks of scam / 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
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts