🐸PePe has the purest meme bloodlines and ⚽️World Cup will release the greatest passion!
🌌$PePe will recast the glory of Meme during the World Cup!
🎡$PePe is built on the Binance Smart Chain, with low tax and NFT for World Cup Betting!
PEPE.sendETHToFee(uint256) (#312-315) sends eth to arbitrary user
Dangerous calls:
- _developmentAddress.transfer(amount.div(2)) (#313)
- _marketingAddress.transfer(amount.div(2)) (#314)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in PEPE._transfer(address,address,uint256) (#259-296):
External calls:
- swapTokensForEth(contractTokenBalance) (#271)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#303-309)
External calls sending eth:
- sendETHToFee(address(this).balance) (#274)
- _developmentAddress.transfer(amount.div(2)) (#313)
- _marketingAddress.transfer(amount.div(2)) (#314)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#295)
- _rOwned[address(this)] = _rOwned[address(this)].add(rTeam) (#353)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#343)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#344)
- _tokenTransfer(from,to,amount) (#295)
- _rTotal = _rTotal.sub(rFee) (#357)
Apply the check-effects-interactions pattern.
Additional information: link
PEPE.rescueForeignTokens(address,address,uint256) (#322-325) ignores return value by Token(_tokenAddr).transfer(_to,_amount) (#324)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
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.
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.
PEPE._approve(address,address,uint256).owner (#252) shadows:
- Ownable.owner() (#119-121) (function)
PEPE.allowance(address,address).owner (#228) shadows:
- Ownable.owner() (#119-121) (function)
Rename the local variables that shadow another component.
Additional information: link
PEPE.setNewMarketingAddress(address).markt (#335) lacks a zero-check on :
- _marketingAddress = markt (#337)
Ownable.transferOwnership(address).newOwner (#134) lacks a zero-check on :
- _owner = newOwner (#136)
PEPE.setNewDevAddress(address).dev (#328) lacks a zero-check on :
- _developmentAddress = dev (#330)
Check that the address is not zero.
Additional information: link
Ownable._previousOwner (#111) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.
Reentrancy in PEPE._transfer(address,address,uint256) (#259-296):
External calls:
- swapTokensForEth(contractTokenBalance) (#271)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#303-309)
External calls sending eth:
- sendETHToFee(address(this).balance) (#274)
- _developmentAddress.transfer(amount.div(2)) (#313)
- _marketingAddress.transfer(amount.div(2)) (#314)
State variables written after the call(s):
- _redisFee = _redisFeeOnBuy (#279)
- _redisFee = _redisFeeOnSell (#284)
- _redisFee = 0 (#289)
- _tokenTransfer(from,to,amount) (#295)
- _tFeeTotal = _tFeeTotal.add(tFee) (#358)
- _taxFee = _taxFeeOnBuy (#280)
- _taxFee = _taxFeeOnSell (#285)
- _taxFee = 0 (#290)
Reentrancy in PEPE.transferFrom(address,address,uint256) (#240-244):
External calls:
- _transfer(sender,recipient,amount) (#241)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#303-309)
External calls sending eth:
- _transfer(sender,recipient,amount) (#241)
- _developmentAddress.transfer(amount.div(2)) (#313)
- _marketingAddress.transfer(amount.div(2)) (#314)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#242)
- _allowances[owner][spender] = amount (#255)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in PEPE._transfer(address,address,uint256) (#259-296):
External calls:
- swapTokensForEth(contractTokenBalance) (#271)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#303-309)
External calls sending eth:
- sendETHToFee(address(this).balance) (#274)
- _developmentAddress.transfer(amount.div(2)) (#313)
- _marketingAddress.transfer(amount.div(2)) (#314)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#347)
- _tokenTransfer(from,to,amount) (#295)
Reentrancy in PEPE.transferFrom(address,address,uint256) (#240-244):
External calls:
- _transfer(sender,recipient,amount) (#241)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#303-309)
External calls sending eth:
- _transfer(sender,recipient,amount) (#241)
- _developmentAddress.transfer(amount.div(2)) (#313)
- _marketingAddress.transfer(amount.div(2)) (#314)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#256)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#242)
Apply the check-effects-interactions pattern.
Additional information: link
Event PEPEdevAddressUpdated(address,address) (#327) is not in CapWords
Constant PEPE._symbol (#165) is not in UPPER_CASE_WITH_UNDERSCORES
Event PEPEmarketingAddressUpdated(address,address) (#334) is not in CapWords
Constant PEPE._decimals (#166) is not in UPPER_CASE_WITH_UNDERSCORES
Event PEPEtokensRescued(address,address,uint256) (#321) is not in CapWords
Parameter PEPE.rescueForeignTokens(address,address,uint256)._to (#322) is not in mixedCase
Constant PEPE._tTotal (#151) is not in UPPER_CASE_WITH_UNDERSCORES
Function IUniswapV2Router02.WETH() (#52) is not in mixedCase
Parameter PEPE.rescueForeignTokens(address,address,uint256)._amount (#322) is not in mixedCase
Parameter PEPE.toggleSwap(bool)._swapEnabled (#424) is not in mixedCase
Parameter PEPE.rescueForeignTokens(address,address,uint256)._tokenAddr (#322) is not in mixedCase
Constant PEPE._name (#164) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.
Additional information: link
Reentrancy in PEPE._transfer(address,address,uint256) (#259-296):
External calls:
- sendETHToFee(address(this).balance) (#274)
- _developmentAddress.transfer(amount.div(2)) (#313)
- _marketingAddress.transfer(amount.div(2)) (#314)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#295)
- _rOwned[address(this)] = _rOwned[address(this)].add(rTeam) (#353)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#343)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#344)
- _tokenTransfer(from,to,amount) (#295)
- _rTotal = _rTotal.sub(rFee) (#357)
- _redisFee = _redisFeeOnBuy (#279)
- _redisFee = _redisFeeOnSell (#284)
- _redisFee = 0 (#289)
- _tokenTransfer(from,to,amount) (#295)
- _tFeeTotal = _tFeeTotal.add(tFee) (#358)
- _taxFee = _taxFeeOnBuy (#280)
- _taxFee = _taxFeeOnSell (#285)
- _taxFee = 0 (#290)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#347)
- _tokenTransfer(from,to,amount) (#295)
Reentrancy in PEPE.transferFrom(address,address,uint256) (#240-244):
External calls:
- _transfer(sender,recipient,amount) (#241)
- _developmentAddress.transfer(amount.div(2)) (#313)
- _marketingAddress.transfer(amount.div(2)) (#314)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#242)
- _allowances[owner][spender] = amount (#255)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#256)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#242)
Apply the check-effects-interactions pattern.
Additional information: link
Variable PEPE._transferStandard(address,address,uint256).rTransferAmount (#342) is too similar to PEPE._transferStandard(address,address,uint256).tTransferAmount (#342)
Variable PEPE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#381) is too similar to PEPE._getTValues(uint256,uint256,uint256).tTransferAmount (#373)
Variable PEPE._getValues(uint256).rTransferAmount (#366) is too similar to PEPE._getValues(uint256).tTransferAmount (#364)
Variable PEPE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#381) is too similar to PEPE._transferStandard(address,address,uint256).tTransferAmount (#342)
Variable PEPE._getValues(uint256).rTransferAmount (#366) is too similar to PEPE._transferStandard(address,address,uint256).tTransferAmount (#342)
Variable PEPE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#381) is too similar to PEPE._getValues(uint256).tTransferAmount (#364)
Variable PEPE._transferStandard(address,address,uint256).rTransferAmount (#342) is too similar to PEPE._getValues(uint256).tTransferAmount (#364)
Variable PEPE._transferStandard(address,address,uint256).rTransferAmount (#342) is too similar to PEPE._getTValues(uint256,uint256,uint256).tTransferAmount (#373)
Variable PEPE._getValues(uint256).rTransferAmount (#366) is too similar to PEPE._getTValues(uint256,uint256,uint256).tTransferAmount (#373)
Prevent variables from having similar names.
Additional information: link
PEPE.constructor() (#182-196) uses literals with too many digits:
- Transfer(address(0x0000000000000000000000000000000000000000),_msgSender(),_tTotal) (#195)
PEPE.slitherConstructorConstantVariables() (#142-434) uses literals with too many digits:
- _tTotal = 100000000000 * 10 ** 6 * 10 ** 9 (#151)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Ownable._previousOwner (#111) is never used in PEPE (#142-434)
PEPE._tOwned (#146) is never used in PEPE (#142-434)
Remove unused state variables.
Additional information: link
noUse() should be declared external:
- PEPE.noUse() (#420-422)
nouse2() should be declared external:
- PEPE.nouse2() (#232-233)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#128-131)
rescueForeignTokens(address,address,uint256) should be declared external:
- PEPE.rescueForeignTokens(address,address,uint256) (#322-325)
setNewMarketingAddress(address) should be declared external:
- PEPE.setNewMarketingAddress(address) (#335-339)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- PEPE.excludeMultipleAccountsFromFees(address[],bool) (#428-432)
transferFrom(address,address,uint256) should be declared external:
- PEPE.transferFrom(address,address,uint256) (#240-244)
setFee(uint256,uint256,uint256,uint256) should be declared external:
- PEPE.setFee(uint256,uint256,uint256,uint256) (#409-418)
allowance(address,address) should be declared external:
- PEPE.allowance(address,address) (#228-230)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#134-137)
setNewDevAddress(address) should be declared external:
- PEPE.setNewDevAddress(address) (#328-332)
symbol() should be declared external:
- PEPE.symbol() (#207-209)
decimals() should be declared external:
- PEPE.decimals() (#211-213)
totalSupply() should be declared external:
- PEPE.totalSupply() (#215-217)
transfer(address,uint256) should be declared external:
- PEPE.transfer(address,uint256) (#223-226)
approve(address,uint256) should be declared external:
- PEPE.approve(address,uint256) (#235-238)
name() should be declared external:
- PEPE.name() (#203-205)
toggleSwap(bool) should be declared external:
- PEPE.toggleSwap(bool) (#424-426)
Use the external attribute for functions never called from the contract.
Additional information: link
Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.
Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.
Token has no transactions for more than 100 days. It seems dead / abandoned.
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 verify that token and website are owned by the same team (no listings + unable to find contract on website)
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
Token is not listed at Mobula.Finance
Additional information: link
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Token is marked as risky (blacklisted creator, fake name, dead project, etc.)
Additional information: link
Token has a considerable age, but social accounts / website are missing or have few users
Token has a considerable age, but average PancakeSwap 30d trading volume is low
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