JungleFEG Token Logo

JFEG [JungleFEG] Token

About JFEG

Listings

Not Found
Token 2 years

Description

Not Found

Social

Laser Scorebeta Last Audit: 14 January 2022

report
Token seems to be a scam (type: honeypot scam).

Anti-Scam

Links


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


Contract creator or owner is blacklisted for past scams

JungleFEG.swapBack() (#1083-1117) sends eth to arbitrary user
Dangerous calls:
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1108)
JungleFEG.addLiquidity(uint256,uint256) (#1133-1143) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1135-1142)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in JungleFEG._transfer(address,address,uint256) (#991-1081):
External calls:
- swapBack() (#1044)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1135-1142)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1124-1130)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1107)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1108)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1115)
External calls sending eth:
- swapBack() (#1044)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1135-1142)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1107)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1108)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1115)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1079)
- _liquidityTokensToSwap += tLiquidity * _buyLiquidityFee / _liquidityFee (#1346)
- _liquidityTokensToSwap += tLiquidity * _sellLiquidityFee / _liquidityFee (#1350)
- _tokenTransfer(from,to,amount,takeFee) (#1079)
- _marketingTokensToSwap += tLiquidity * _buyMarketingFee / _liquidityFee (#1348)
- _marketingTokensToSwap += tLiquidity * _sellMarketingFee / _liquidityFee (#1352)
- _tokenTransfer(from,to,amount,takeFee) (#1079)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1179)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1199)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1221)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1242)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1180)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1201)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1222)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1244)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1356)
- _tokenTransfer(from,to,amount,takeFee) (#1079)
- _rTotal = _rTotal.sub(rFee) (#1251)
- _tokenTransfer(from,to,amount,takeFee) (#1079)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1220)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1241)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1200)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1243)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1358)
- _tokenTransfer(from,to,amount,takeFee) (#1079)
- _teamTokensToSwap += tLiquidity * _buyTeamFee / _liquidityFee (#1347)
- _teamTokensToSwap += tLiquidity * _sellTeamFee / _liquidityFee (#1351)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable._lockTime (#209) is never initialized. It is used in:
- Ownable.getUnlockTime() (#245-247)
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


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.

JungleFEG._transfer(address,address,uint256) (#991-1081) uses a dangerous strict equality:
- from != owner() && to != uniswapV2Pair && block.number == tradingActiveBlock (#1013)
Don't use strict equality to determine if an account has enough Ether or tokens.

Additional information: link

JungleFEG.swapBack().success (#1107) is written in both
(success) = address(teamAddress).call{value: bnbForTeam}() (#1107)
(success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1108)
Fix or remove the writes.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#124-136):
- (success) = recipient.call{value: amount}() (#131)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#180-203):
- (success,returndata) = target.call{value: weiValue}(data) (#188-190)
Low level call in JungleFEG.swapBack() (#1083-1117):
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1107)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1108)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1115)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Pragma version0.8.9 (#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.9 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

Reentrancy in JungleFEG.swapBack() (#1083-1117):
External calls:
- swapTokensForBNB(amountToSwapForBNB) (#1094)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1124-1130)
State variables written after the call(s):
- _liquidityTokensToSwap = 0 (#1103)
- _marketingTokensToSwap = 0 (#1104)
- _teamTokensToSwap = 0 (#1105)
Apply the check-effects-interactions pattern.

Additional information: link

JungleFEG.addLiquidity(uint256,uint256) (#1133-1143) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1135-1142)
Ensure that all the return values of the function calls are used.

Additional information: link

JungleFEG.allowance(address,address).owner (#792) shadows:
- Ownable.owner() (#222-224) (function)
JungleFEG._approve(address,address,uint256).owner (#980) shadows:
- Ownable.owner() (#222-224) (function)
Rename the local variables that shadow another component.

Additional information: link

JungleFEG.setGasPriceLimit(uint256) (#907-910) should emit an event for:
- gasPriceLimit = gas * 1000000000 (#909)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in JungleFEG._transfer(address,address,uint256) (#991-1081):
External calls:
- swapBack() (#1044)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1135-1142)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1124-1130)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1107)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1108)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1115)
External calls sending eth:
- swapBack() (#1044)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1135-1142)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1107)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1108)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1115)
State variables written after the call(s):
- removeAllFee() (#1056)
- _liquidityFee = 0 (#1380)
- _liquidityFee = _buyLiquidityFee + _buyMarketingFee + _buyTeamFee (#1058)
- removeAllFee() (#1063)
- _liquidityFee = 0 (#1380)
- _liquidityFee = _sellLiquidityFee + _sellMarketingFee + _sellTeamFee (#1065)
- _liquidityFee = _liquidityFee * 3 (#1070)
- removeAllFee() (#1074)
- _liquidityFee = 0 (#1380)
- _tokenTransfer(from,to,amount,takeFee) (#1079)
- _liquidityFee = _previousLiquidityFee (#1385)
- _liquidityFee = 0 (#1380)
- removeAllFee() (#1056)
- _previousLiquidityFee = _liquidityFee (#1377)
- removeAllFee() (#1063)
- _previousLiquidityFee = _liquidityFee (#1377)
- removeAllFee() (#1074)
- _previousLiquidityFee = _liquidityFee (#1377)
- _tokenTransfer(from,to,amount,takeFee) (#1079)
- _previousLiquidityFee = _liquidityFee (#1377)
- removeAllFee() (#1056)
- _previousTaxFee = _taxFee (#1376)
- removeAllFee() (#1063)
- _previousTaxFee = _taxFee (#1376)
- removeAllFee() (#1074)
- _previousTaxFee = _taxFee (#1376)
- _tokenTransfer(from,to,amount,takeFee) (#1079)
- _previousTaxFee = _taxFee (#1376)
- _tokenTransfer(from,to,amount,takeFee) (#1079)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1252)
- removeAllFee() (#1056)
- _taxFee = 0 (#1379)
- _taxFee = _buyTaxFee (#1057)
- removeAllFee() (#1063)
- _taxFee = 0 (#1379)
- _taxFee = _sellTaxFee (#1064)
- _taxFee = _taxFee * 3 (#1069)
- removeAllFee() (#1074)
- _taxFee = 0 (#1379)
- _tokenTransfer(from,to,amount,takeFee) (#1079)
- _taxFee = _previousTaxFee (#1384)
- _taxFee = 0 (#1379)
- buyOrSellSwitch = TRANSFER (#1052)
- buyOrSellSwitch = BUY (#1059)
- buyOrSellSwitch = SELL (#1066)
- buyOrSellSwitch = TRANSFER (#1075)
Reentrancy in JungleFEG.changeRouterVersion(address) (#1461-1485):
External calls:
- _pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1475-1478)
State variables written after the call(s):
- uniswapV2Pair = _pair (#1480)
- uniswapV2Router = _uniswapV2Router (#1483)
Reentrancy in JungleFEG.constructor() (#732-760):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#741-742)
State variables written after the call(s):
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#747)
- _excluded.push(account) (#959)
- _excluded[i] = _excluded[_excluded.length - 1] (#966)
- _excluded.pop() (#969)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#747)
- _isExcluded[account] = true (#958)
- _isExcluded[account] = false (#968)
- _isExcludedFromFee[owner()] = true (#749)
- _isExcludedFromFee[address(this)] = true (#750)
- _isExcludedFromFee[marketingAddress] = true (#751)
- _isExcludedFromFee[liquidityAddress] = true (#752)
- _isExcludedFromFee[teamAddress] = true (#753)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#747)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#976)
- excludeFromMaxTransaction(owner(),true) (#755)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#976)
- excludeFromMaxTransaction(address(this),true) (#756)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#976)
- excludeFromMaxTransaction(address(0xdead),true) (#757)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#976)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#747)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#956)
- _tOwned[account] = 0 (#967)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#747)
- automatedMarketMakerPairs[pair] = value (#896)
- uniswapV2Pair = _uniswapV2Pair (#745)
- uniswapV2Router = _uniswapV2Router (#744)
Reentrancy in JungleFEG.swapBack() (#1083-1117):
External calls:
- swapTokensForBNB(amountToSwapForBNB) (#1094)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1124-1130)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1107)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1108)
- addLiquidity(tokensForLiquidity,bnbForLiquidity) (#1110)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1135-1142)
External calls sending eth:
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1107)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1108)
- addLiquidity(tokensForLiquidity,bnbForLiquidity) (#1110)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1135-1142)
State variables written after the call(s):
- addLiquidity(tokensForLiquidity,bnbForLiquidity) (#1110)
- _allowances[owner][spender] = amount (#987)
Reentrancy in JungleFEG.transferFrom(address,address,uint256) (#810-825):
External calls:
- _transfer(sender,recipient,amount) (#815)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1135-1142)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1124-1130)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1107)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1108)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1115)
External calls sending eth:
- _transfer(sender,recipient,amount) (#815)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1135-1142)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1107)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1108)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1115)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#816-823)
- _allowances[owner][spender] = amount (#987)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in JungleFEG._transfer(address,address,uint256) (#991-1081):
External calls:
- swapBack() (#1044)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1135-1142)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1124-1130)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1107)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1108)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1115)
External calls sending eth:
- swapBack() (#1044)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1135-1142)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1107)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1108)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1115)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1183)
- _tokenTransfer(from,to,amount,takeFee) (#1079)
- Transfer(sender,recipient,tTransferAmount) (#1225)
- _tokenTransfer(from,to,amount,takeFee) (#1079)
- Transfer(sender,recipient,tTransferAmount) (#1204)
- _tokenTransfer(from,to,amount,takeFee) (#1079)
- Transfer(sender,recipient,tTransferAmount) (#1247)
- _tokenTransfer(from,to,amount,takeFee) (#1079)
Reentrancy in JungleFEG.changeRouterVersion(address) (#1461-1485):
External calls:
- _pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1475-1478)
Event emitted after the call(s):
- UpdatedRouter(_router) (#1484)
Reentrancy in JungleFEG.constructor() (#732-760):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#741-742)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#900)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#747)
- Transfer(address(0),_msgSender(),_tTotal) (#759)
Reentrancy in JungleFEG.swapBack() (#1083-1117):
External calls:
- swapTokensForBNB(amountToSwapForBNB) (#1094)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1124-1130)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1107)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1108)
- addLiquidity(tokensForLiquidity,bnbForLiquidity) (#1110)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1135-1142)
External calls sending eth:
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1107)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1108)
- addLiquidity(tokensForLiquidity,bnbForLiquidity) (#1110)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1135-1142)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#988)
- addLiquidity(tokensForLiquidity,bnbForLiquidity) (#1110)
- SwapAndLiquify(amountToSwapForBNB,bnbForLiquidity,tokensForLiquidity) (#1111)
Reentrancy in JungleFEG.transferForeignToken(address,address) (#1490-1500):
External calls:
- _sent = IERC20(_token).transfer(_to,_contractBalance) (#1498)
Event emitted after the call(s):
- TransferForeignToken(_token,_contractBalance) (#1499)
Reentrancy in JungleFEG.transferFrom(address,address,uint256) (#810-825):
External calls:
- _transfer(sender,recipient,amount) (#815)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1135-1142)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1124-1130)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1107)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1108)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1115)
External calls sending eth:
- _transfer(sender,recipient,amount) (#815)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1135-1142)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1107)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1108)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1115)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#988)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#816-823)
Apply the check-effects-interactions pattern.

Additional information: link

JungleFEG._transfer(address,address,uint256) (#991-1081) uses timestamp for comparisons
Dangerous comparisons:
- boughtEarly[from] && earlyBuyPenaltyEnd <= block.number (#1068)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#111-122) uses assembly
- INLINE ASM (#118-120)
Address._functionCallWithValue(address,bytes,uint256,string) (#180-203) uses assembly
- INLINE ASM (#195-198)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#180-203) is never used and should be removed
Address.functionCall(address,bytes) (#138-143) is never used and should be removed
Address.functionCall(address,bytes,string) (#145-151) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#153-165) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#167-178) is never used and should be removed
Address.isContract(address) (#111-122) is never used and should be removed
Address.sendValue(address,uint256) (#124-136) is never used and should be removed
Context._msgData() (#10-13) is never used and should be removed
SafeMath.mod(uint256,uint256) (#96-98) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#100-107) is never used and should be removed
Remove unused functions.

Additional information: link

JungleFEG._previousTaxFee (#642) is set pre-construction with a non-constant function or state variable:
- _taxFee
JungleFEG._previousLiquidityFee (#645) 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

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#319) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#321) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#351) is not in mixedCase
Function IUniswapV2Router01.WETH() (#395) is not in mixedCase
Parameter JungleFEG.addPresaleAddressForExclusions(address,address)._presaleAddress (#876) is not in mixedCase
Parameter JungleFEG.addPresaleAddressForExclusions(address,address)._presaleRouterAddress (#876) is not in mixedCase
Parameter JungleFEG.calculateTaxFee(uint256)._amount (#1361) is not in mixedCase
Parameter JungleFEG.calculateLiquidityFee(uint256)._amount (#1365) is not in mixedCase
Parameter JungleFEG.setMarketingAddress(address)._marketingAddress (#1431) is not in mixedCase
Parameter JungleFEG.setTeamAddress(address)._teamAddress (#1438) is not in mixedCase
Parameter JungleFEG.setLiquidityAddress(address)._liquidityAddress (#1445) is not in mixedCase
Parameter JungleFEG.setSwapAndLiquifyEnabled(bool)._enabled (#1452) is not in mixedCase
Parameter JungleFEG.changeRouterVersion(address)._router (#1461) is not in mixedCase
Parameter JungleFEG.transferForeignToken(address,address)._token (#1490) is not in mixedCase
Parameter JungleFEG.transferForeignToken(address,address)._to (#1490) is not in mixedCase
Constant JungleFEG._tTotal (#624) is not in UPPER_CASE_WITH_UNDERSCORES
Constant JungleFEG._name (#630) is not in UPPER_CASE_WITH_UNDERSCORES
Constant JungleFEG._symbol (#631) is not in UPPER_CASE_WITH_UNDERSCORES
Constant JungleFEG._decimals (#633) is not in UPPER_CASE_WITH_UNDERSCORES
Variable JungleFEG._buyTaxFee (#647) is not in mixedCase
Variable JungleFEG._buyLiquidityFee (#648) is not in mixedCase
Variable JungleFEG._buyMarketingFee (#649) is not in mixedCase
Variable JungleFEG._buyTeamFee (#650) is not in mixedCase
Variable JungleFEG._sellTaxFee (#652) is not in mixedCase
Variable JungleFEG._sellLiquidityFee (#653) is not in mixedCase
Variable JungleFEG._sellMarketingFee (#654) is not in mixedCase
Variable JungleFEG._sellTeamFee (#655) is not in mixedCase
Variable JungleFEG._isExcludedMaxTransactionAmount (#670) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#11)" inContext (#5-14)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#400) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#401)
Variable JungleFEG._transferToExcluded(address,address,uint256).rTransferAmount (#1193) is too similar to JungleFEG._transferToExcluded(address,address,uint256).tTransferAmount (#1195)
Variable JungleFEG._transferFromExcluded(address,address,uint256).rTransferAmount (#1214) is too similar to JungleFEG._getValues(uint256).tTransferAmount (#1268)
Variable JungleFEG._transferFromExcluded(address,address,uint256).rTransferAmount (#1214) is too similar to JungleFEG._transferFromExcluded(address,address,uint256).tTransferAmount (#1216)
Variable JungleFEG._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1320) is too similar to JungleFEG._getTValues(uint256).tTransferAmount (#1299)
Variable JungleFEG._getValues(uint256).rTransferAmount (#1272) is too similar to JungleFEG._getTValues(uint256).tTransferAmount (#1299)
Variable JungleFEG._transferToExcluded(address,address,uint256).rTransferAmount (#1193) is too similar to JungleFEG._transferFromExcluded(address,address,uint256).tTransferAmount (#1216)
Variable JungleFEG._transferStandard(address,address,uint256).rTransferAmount (#1173) is too similar to JungleFEG._getValues(uint256).tTransferAmount (#1268)
Variable JungleFEG._transferToExcluded(address,address,uint256).rTransferAmount (#1193) is too similar to JungleFEG._getValues(uint256).tTransferAmount (#1268)
Variable JungleFEG._transferFromExcluded(address,address,uint256).rTransferAmount (#1214) is too similar to JungleFEG._transferStandard(address,address,uint256).tTransferAmount (#1175)
Variable JungleFEG._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1320) is too similar to JungleFEG._getValues(uint256).tTransferAmount (#1268)
Variable JungleFEG._transferStandard(address,address,uint256).rTransferAmount (#1173) is too similar to JungleFEG._transferStandard(address,address,uint256).tTransferAmount (#1175)
Variable JungleFEG._transferToExcluded(address,address,uint256).rTransferAmount (#1193) is too similar to JungleFEG._transferStandard(address,address,uint256).tTransferAmount (#1175)
Variable JungleFEG._transferFromExcluded(address,address,uint256).rTransferAmount (#1214) is too similar to JungleFEG._getTValues(uint256).tTransferAmount (#1299)
Variable JungleFEG._transferStandard(address,address,uint256).rTransferAmount (#1173) is too similar to JungleFEG._getTValues(uint256).tTransferAmount (#1299)
Variable JungleFEG._transferFromExcluded(address,address,uint256).rTransferAmount (#1214) is too similar to JungleFEG._transferBothExcluded(address,address,uint256).tTransferAmount (#1237)
Variable JungleFEG._transferToExcluded(address,address,uint256).rTransferAmount (#1193) is too similar to JungleFEG._getTValues(uint256).tTransferAmount (#1299)
Variable JungleFEG._transferFromExcluded(address,address,uint256).rTransferAmount (#1214) is too similar to JungleFEG._transferToExcluded(address,address,uint256).tTransferAmount (#1195)
Variable JungleFEG.reflectionFromToken(uint256,bool).rTransferAmount (#934) is too similar to JungleFEG._transferFromExcluded(address,address,uint256).tTransferAmount (#1216)
Variable JungleFEG._getValues(uint256).rTransferAmount (#1272) is too similar to JungleFEG._transferBothExcluded(address,address,uint256).tTransferAmount (#1237)
Variable JungleFEG._getValues(uint256).rTransferAmount (#1272) is too similar to JungleFEG._transferStandard(address,address,uint256).tTransferAmount (#1175)
Variable JungleFEG._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1320) is too similar to JungleFEG._transferFromExcluded(address,address,uint256).tTransferAmount (#1216)
Variable JungleFEG._transferStandard(address,address,uint256).rTransferAmount (#1173) is too similar to JungleFEG._transferToExcluded(address,address,uint256).tTransferAmount (#1195)
Variable JungleFEG._transferBothExcluded(address,address,uint256).rTransferAmount (#1235) is too similar to JungleFEG._getValues(uint256).tTransferAmount (#1268)
Variable JungleFEG._getValues(uint256).rTransferAmount (#1272) is too similar to JungleFEG._transferFromExcluded(address,address,uint256).tTransferAmount (#1216)
Variable JungleFEG._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1320) is too similar to JungleFEG._transferToExcluded(address,address,uint256).tTransferAmount (#1195)
Variable JungleFEG._transferBothExcluded(address,address,uint256).rTransferAmount (#1235) is too similar to JungleFEG._transferBothExcluded(address,address,uint256).tTransferAmount (#1237)
Variable JungleFEG.reflectionFromToken(uint256,bool).rTransferAmount (#934) is too similar to JungleFEG._transferToExcluded(address,address,uint256).tTransferAmount (#1195)
Variable JungleFEG._getValues(uint256).rTransferAmount (#1272) is too similar to JungleFEG._transferToExcluded(address,address,uint256).tTransferAmount (#1195)
Variable JungleFEG._transferToExcluded(address,address,uint256).rTransferAmount (#1193) is too similar to JungleFEG._transferBothExcluded(address,address,uint256).tTransferAmount (#1237)
Variable JungleFEG._transferBothExcluded(address,address,uint256).rTransferAmount (#1235) is too similar to JungleFEG._transferStandard(address,address,uint256).tTransferAmount (#1175)
Variable JungleFEG._transferBothExcluded(address,address,uint256).rTransferAmount (#1235) is too similar to JungleFEG._transferFromExcluded(address,address,uint256).tTransferAmount (#1216)
Variable JungleFEG._transferBothExcluded(address,address,uint256).rTransferAmount (#1235) is too similar to JungleFEG._transferToExcluded(address,address,uint256).tTransferAmount (#1195)
Variable JungleFEG.reflectionFromToken(uint256,bool).rTransferAmount (#934) is too similar to JungleFEG._getTValues(uint256).tTransferAmount (#1299)
Variable JungleFEG.reflectionFromToken(uint256,bool).rTransferAmount (#934) is too similar to JungleFEG._transferStandard(address,address,uint256).tTransferAmount (#1175)
Variable JungleFEG._transferStandard(address,address,uint256).rTransferAmount (#1173) is too similar to JungleFEG._transferBothExcluded(address,address,uint256).tTransferAmount (#1237)
Variable JungleFEG.reflectionFromToken(uint256,bool).rTransferAmount (#934) is too similar to JungleFEG._getValues(uint256).tTransferAmount (#1268)
Variable JungleFEG._getValues(uint256).rTransferAmount (#1272) is too similar to JungleFEG._getValues(uint256).tTransferAmount (#1268)
Variable JungleFEG._transferBothExcluded(address,address,uint256).rTransferAmount (#1235) is too similar to JungleFEG._getTValues(uint256).tTransferAmount (#1299)
Variable JungleFEG._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1320) is too similar to JungleFEG._transferBothExcluded(address,address,uint256).tTransferAmount (#1237)
Variable JungleFEG.reflectionFromToken(uint256,bool).rTransferAmount (#934) is too similar to JungleFEG._transferBothExcluded(address,address,uint256).tTransferAmount (#1237)
Variable JungleFEG._transferStandard(address,address,uint256).rTransferAmount (#1173) is too similar to JungleFEG._transferFromExcluded(address,address,uint256).tTransferAmount (#1216)
Variable JungleFEG._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1320) is too similar to JungleFEG._transferStandard(address,address,uint256).tTransferAmount (#1175)
Prevent variables from having similar names.

Additional information: link

JungleFEG.slitherConstructorVariables() (#598-1507) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#611-612)
JungleFEG.slitherConstructorVariables() (#598-1507) uses literals with too many digits:
- gasMaxLimit = 50000000 (#667)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (#208) is never used in JungleFEG (#598-1507)
Remove unused state variables.

Additional information: link

JungleFEG.minimumTokensBeforeSwap (#676) should be constant
Ownable._lockTime (#209) should be constant
Ownable._previousOwner (#208) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#245-247)
getTime() should be declared external:
- Ownable.getTime() (#249-251)
setSwapAndLiquifyEnabled(bool) should be declared external:
- JungleFEG.setSwapAndLiquifyEnabled(bool) (#1452-1455)
Use the external attribute for functions never called from the contract.

Additional information: link

JungleFEG.includeInReward(address) (#962-973) has costly operations inside a loop:
- _excluded.pop() (#969)
Use a local variable to hold the loop computation result.

Additional information: link

Holders:


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


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 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


Telegram account has relatively few subscribers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


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/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 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


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

Price for JFEG