https://t.co/IKnir1Rm5f https://t.co/x8a9cQYOeu
Reentrancy in PepeFGI._transfer(address,address,uint256) (#241-278):
External calls:
- swapTokensForEth(contractTokenBalance) (#253)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#285-291)
External calls sending eth:
- sendETHToFee(address(this).balance) (#256)
- _developmentAddress.transfer(amount.div(2)) (#295)
- _marketingAddress.transfer(amount.div(2)) (#296)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#277)
- _rOwned[address(this)] = _rOwned[address(this)].add(rTeam) (#335)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#325)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#326)
- _tokenTransfer(from,to,amount) (#277)
- _rTotal = _rTotal.sub(rFee) (#339)
Apply the check-effects-interactions pattern.
Additional information: link
PepeFGI.rescueForeignTokens(address,address,uint256) (#304-307) ignores return value by Token(_tokenAddr).transfer(_to,_amount) (#306)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
PepeFGI.sendETHToFee(uint256) (#294-297) sends eth to arbitrary user
Dangerous calls:
- _developmentAddress.transfer(amount.div(2)) (#295)
- _marketingAddress.transfer(amount.div(2)) (#296)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
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.
PepeFGI.allowance(address,address).owner (#213) shadows:
- Ownable.owner() (#105-107) (function)
PepeFGI._approve(address,address,uint256).owner (#234) shadows:
- Ownable.owner() (#105-107) (function)
Rename the local variables that shadow another component.
Additional information: link
Ownable.transferOwnership(address).newOwner (#120) lacks a zero-check on :
- _owner = newOwner (#122)
PepeFGI.setNewDevAddress(address).dev (#310) lacks a zero-check on :
- _developmentAddress = dev (#312)
PepeFGI.setNewMarketingAddress(address).markt (#317) lacks a zero-check on :
- _marketingAddress = markt (#319)
Check that the address is not zero.
Additional information: link
Reentrancy in PepeFGI._transfer(address,address,uint256) (#241-278):
External calls:
- swapTokensForEth(contractTokenBalance) (#253)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#285-291)
External calls sending eth:
- sendETHToFee(address(this).balance) (#256)
- _developmentAddress.transfer(amount.div(2)) (#295)
- _marketingAddress.transfer(amount.div(2)) (#296)
State variables written after the call(s):
- _redisFee = _redisFeeOnBuy (#261)
- _redisFee = _redisFeeOnSell (#266)
- _redisFee = 0 (#271)
- _tokenTransfer(from,to,amount) (#277)
- _tFeeTotal = _tFeeTotal.add(tFee) (#340)
- _taxFee = _taxFeeOnBuy (#262)
- _taxFee = _taxFeeOnSell (#267)
- _taxFee = 0 (#272)
Reentrancy in PepeFGI.constructor() (#167-181):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#172-173)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#175)
- _isExcludedFromFee[address(this)] = true (#176)
- _isExcludedFromFee[_developmentAddress] = true (#177)
- _isExcludedFromFee[_marketingAddress] = true (#178)
Reentrancy in PepeFGI.transferFrom(address,address,uint256) (#222-226):
External calls:
- _transfer(sender,recipient,amount) (#223)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#285-291)
External calls sending eth:
- _transfer(sender,recipient,amount) (#223)
- _developmentAddress.transfer(amount.div(2)) (#295)
- _marketingAddress.transfer(amount.div(2)) (#296)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#224)
- _allowances[owner][spender] = amount (#237)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in PepeFGI._transfer(address,address,uint256) (#241-278):
External calls:
- swapTokensForEth(contractTokenBalance) (#253)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#285-291)
External calls sending eth:
- sendETHToFee(address(this).balance) (#256)
- _developmentAddress.transfer(amount.div(2)) (#295)
- _marketingAddress.transfer(amount.div(2)) (#296)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#329)
- _tokenTransfer(from,to,amount) (#277)
Reentrancy in PepeFGI.constructor() (#167-181):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#172-173)
Event emitted after the call(s):
- Transfer(address(0x0000000000000000000000000000000000000000),_msgSender(),_tTotal) (#180)
Reentrancy in PepeFGI.transferFrom(address,address,uint256) (#222-226):
External calls:
- _transfer(sender,recipient,amount) (#223)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#285-291)
External calls sending eth:
- _transfer(sender,recipient,amount) (#223)
- _developmentAddress.transfer(amount.div(2)) (#295)
- _marketingAddress.transfer(amount.div(2)) (#296)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#238)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#224)
Apply the check-effects-interactions pattern.
Additional information: link
Function IUniswapV2Router02.WETH() (#38) is not in mixedCase
Event PepeFGItokensRescued(address,address,uint256) (#303) is not in CapWords
Event PepeFGIdevAddressUpdated(address,address) (#309) is not in CapWords
Event PepeFGImarketingAddressUpdated(address,address) (#316) is not in CapWords
Parameter PepeFGI.rescueForeignTokens(address,address,uint256)._tokenAddr (#304) is not in mixedCase
Parameter PepeFGI.rescueForeignTokens(address,address,uint256)._to (#304) is not in mixedCase
Parameter PepeFGI.rescueForeignTokens(address,address,uint256)._amount (#304) is not in mixedCase
Parameter PepeFGI.toggleSwap(bool)._swapEnabled (#402) is not in mixedCase
Constant PepeFGI._tTotal (#136) is not in UPPER_CASE_WITH_UNDERSCORES
Constant PepeFGI._name (#149) is not in UPPER_CASE_WITH_UNDERSCORES
Constant PepeFGI._symbol (#150) is not in UPPER_CASE_WITH_UNDERSCORES
Constant PepeFGI._decimals (#151) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.
Additional information: link
Reentrancy in PepeFGI._transfer(address,address,uint256) (#241-278):
External calls:
- sendETHToFee(address(this).balance) (#256)
- _developmentAddress.transfer(amount.div(2)) (#295)
- _marketingAddress.transfer(amount.div(2)) (#296)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#277)
- _rOwned[address(this)] = _rOwned[address(this)].add(rTeam) (#335)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#325)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#326)
- _tokenTransfer(from,to,amount) (#277)
- _rTotal = _rTotal.sub(rFee) (#339)
- _redisFee = _redisFeeOnBuy (#261)
- _redisFee = _redisFeeOnSell (#266)
- _redisFee = 0 (#271)
- _tokenTransfer(from,to,amount) (#277)
- _tFeeTotal = _tFeeTotal.add(tFee) (#340)
- _taxFee = _taxFeeOnBuy (#262)
- _taxFee = _taxFeeOnSell (#267)
- _taxFee = 0 (#272)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#329)
- _tokenTransfer(from,to,amount) (#277)
Reentrancy in PepeFGI.transferFrom(address,address,uint256) (#222-226):
External calls:
- _transfer(sender,recipient,amount) (#223)
- _developmentAddress.transfer(amount.div(2)) (#295)
- _marketingAddress.transfer(amount.div(2)) (#296)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#224)
- _allowances[owner][spender] = amount (#237)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#238)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#224)
Apply the check-effects-interactions pattern.
Additional information: link
Variable PepeFGI._getValues(uint256).rTransferAmount (#348) is too similar to PepeFGI._getTValues(uint256,uint256,uint256).tTransferAmount (#355)
Variable PepeFGI._transferStandard(address,address,uint256).rTransferAmount (#324) is too similar to PepeFGI._getTValues(uint256,uint256,uint256).tTransferAmount (#355)
Variable PepeFGI._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#363) is too similar to PepeFGI._getTValues(uint256,uint256,uint256).tTransferAmount (#355)
Variable PepeFGI._transferStandard(address,address,uint256).rTransferAmount (#324) is too similar to PepeFGI._transferStandard(address,address,uint256).tTransferAmount (#324)
Variable PepeFGI._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#363) is too similar to PepeFGI._transferStandard(address,address,uint256).tTransferAmount (#324)
Variable PepeFGI._transferStandard(address,address,uint256).rTransferAmount (#324) is too similar to PepeFGI._getValues(uint256).tTransferAmount (#346)
Variable PepeFGI._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#363) is too similar to PepeFGI._getValues(uint256).tTransferAmount (#346)
Variable PepeFGI._getValues(uint256).rTransferAmount (#348) is too similar to PepeFGI._transferStandard(address,address,uint256).tTransferAmount (#324)
Variable PepeFGI._getValues(uint256).rTransferAmount (#348) is too similar to PepeFGI._getValues(uint256).tTransferAmount (#346)
Prevent variables from having similar names.
Additional information: link
PepeFGI.constructor() (#167-181) uses literals with too many digits:
- Transfer(address(0x0000000000000000000000000000000000000000),_msgSender(),_tTotal) (#180)
PepeFGI.slitherConstructorConstantVariables() (#127-412) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 6 * 10 ** 9 (#136)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#114-117)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#120-123)
name() should be declared external:
- PepeFGI.name() (#188-190)
symbol() should be declared external:
- PepeFGI.symbol() (#192-194)
decimals() should be declared external:
- PepeFGI.decimals() (#196-198)
totalSupply() should be declared external:
- PepeFGI.totalSupply() (#200-202)
transfer(address,uint256) should be declared external:
- PepeFGI.transfer(address,uint256) (#208-211)
allowance(address,address) should be declared external:
- PepeFGI.allowance(address,address) (#213-215)
approve(address,uint256) should be declared external:
- PepeFGI.approve(address,uint256) (#217-220)
transferFrom(address,address,uint256) should be declared external:
- PepeFGI.transferFrom(address,address,uint256) (#222-226)
rescueForeignTokens(address,address,uint256) should be declared external:
- PepeFGI.rescueForeignTokens(address,address,uint256) (#304-307)
setNewDevAddress(address) should be declared external:
- PepeFGI.setNewDevAddress(address) (#310-314)
setNewMarketingAddress(address) should be declared external:
- PepeFGI.setNewMarketingAddress(address) (#317-321)
setFee(uint256,uint256,uint256,uint256) should be declared external:
- PepeFGI.setFee(uint256,uint256,uint256,uint256) (#391-400)
toggleSwap(bool) should be declared external:
- PepeFGI.toggleSwap(bool) (#402-404)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- PepeFGI.excludeMultipleAccountsFromFees(address[],bool) (#406-410)
Use the external attribute for functions never called from the contract.
Additional information: link
Ownable._previousOwner (#97) is never used in PepeFGI (#127-412)
PepeFGI._tOwned (#131) is never used in PepeFGI (#127-412)
Remove unused state variables.
Additional information: link
Ownable._previousOwner (#97) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
solc-0.8.14 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
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 KYC or doxxing proof
Unable to find token/project description on the website or on BscScan, CoinMarketCap
Unable to find token contract audit
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 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
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
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