MF Token Logo

🍚 [MF] Token

ALERT: honeypot scam

About 🍚

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 17 February 2022

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


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

Token.addLiquidity(uint256,uint256) (#1352-1365) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1357-1364)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in Token._transfer(address,address,uint256) (#1233-1309):
External calls:
- swapAndLiquify(contractTokenBalance) (#1296)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1357-1364)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1343-1349)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1296)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1357-1364)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1308)
- _balances[_burn] = _balances[_burn].add(tBurn) (#1217)
- _balances[address(this)] = _balances[address(this)].add(tLiquidity) (#1213)
- _balances[_market] = _balances[_market].add(tMarket1) (#1208)
- _balances[_market2] = _balances[_market2].add(tMarket2) (#1209)
- _balances[sender] = _balances[sender].sub(amount) (#1382)
- _balances[recipient] = _balances[recipient].add(tTransferAmount) (#1383)
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 ticker (🍚) 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.

Contract ticker (🍚) has length of 1 chars.
Not a direct threat, but may indicate unreliable intentions of developer.

Token.addLiquidity(uint256,uint256) (#1352-1365) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1357-1364)
Ensure that all the return values of the function calls are used.

Additional information: link

Token.allowance(address,address).owner (#998) shadows:
- Ownable.owner() (#463-465) (function)
Token._approve(address,address,uint256).owner (#1222) shadows:
- Ownable.owner() (#463-465) (function)
Rename the local variables that shadow another component.

Additional information: link

Token.setLiquidityFeePercent(uint256) (#1092-1095) should emit an event for:
- _liquidityFee = liquidityFee (#1093)
- _previousLiquidityFee = _liquidityFee (#1094)
Token.setMarketFeePercent(uint256) (#1097-1100) should emit an event for:
- _marketFee = marketFee (#1098)
- _previousMarketFee = _marketFee (#1099)
Token.setBurnFeePercent(uint256) (#1111-1114) should emit an event for:
- _burnFee = burnFee (#1112)
- _previousBurnFee = _burnFee (#1113)
Token.setMaxTxAmount(uint256) (#1116-1118) should emit an event for:
- _maxTxAmount = maxTxAmount (#1117)
Token.setMaxHavAmount(uint256) (#1120-1122) should emit an event for:
- _maxHavAmount = maxHavAmount (#1121)
Token.setNumTokensSellToAddToLiquidity(uint256) (#1129-1131) should emit an event for:
- numTokensSellToAddToLiquidity = num (#1130)
Emit an event for critical parameter changes.

Additional information: link

Token.setMarketAddress(address,address).market (#1102) lacks a zero-check on :
- _market = market (#1103)
Token.setMarketAddress(address,address).market2 (#1102) lacks a zero-check on :
- _market2 = market2 (#1104)
Token.setLiquifyAddress(address).liquify (#1107) lacks a zero-check on :
- _liquify = liquify (#1108)
Check that the address is not zero.

Additional information: link

Token.swapTokensForEth(uint256) (#1334-1350) has external calls inside a loop: path[1] = uniswapV2Router.WETH() (#1338)
Token.swapTokensForEth(uint256) (#1334-1350) has external calls inside a loop: uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1343-1349)
Token.addLiquidity(uint256,uint256) (#1352-1365) has external calls inside a loop: uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1357-1364)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in Token._transfer(address,address,uint256) (#1233-1309):
External calls:
- swapAndLiquify(contractTokenBalance) (#1296)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1357-1364)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1343-1349)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1296)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1357-1364)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1308)
- _burnFee = _previousBurnFee (#1173)
- _burnFee = 0 (#1167)
- _tokenTransfer(from,to,amount,takeFee) (#1308)
- _liquidityFee = _previousLiquidityFee (#1174)
- _liquidityFee = 0 (#1168)
- _tokenTransfer(from,to,amount,takeFee) (#1308)
- _marketFee = _previousMarketFee (#1172)
- _marketFee = 0 (#1166)
- _tokenTransfer(from,to,amount,takeFee) (#1308)
- _previousBurnFee = _burnFee (#1163)
- _tokenTransfer(from,to,amount,takeFee) (#1308)
- _previousLiquidityFee = _liquidityFee (#1164)
- _tokenTransfer(from,to,amount,takeFee) (#1308)
- _previousMarketFee = _marketFee (#1162)
Reentrancy in Token.constructor(string,string,address[3],uint256[3]) (#920-967):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#946-947)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#956)
- _isExcludedFromFee[address(this)] = true (#957)
- _isExcludedFromFee[_market] = true (#958)
- _isExcludedFromFee[_market2] = true (#959)
- _isExcludedFromFee[_liquify] = true (#960)
- _liquify = owner() (#955)
- automatedMarketMakerPairs[uniswapV2Pair] = true (#952)
- uniswapV2Router = _uniswapV2Router (#950)
Reentrancy in Token.swapAndLiquify(uint256) (#1311-1332):
External calls:
- swapTokensForEth(half) (#1323)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1343-1349)
- addLiquidity(otherHalf,newBalance) (#1329)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1357-1364)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1329)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1357-1364)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1329)
- _allowances[owner][spender] = amount (#1229)
Reentrancy in Token.transferFrom(address,address,uint256) (#1016-1031):
External calls:
- _transfer(sender,recipient,amount) (#1021)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1357-1364)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1343-1349)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1021)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1357-1364)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1022-1029)
- _allowances[owner][spender] = amount (#1229)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Token._transfer(address,address,uint256) (#1233-1309):
External calls:
- swapAndLiquify(contractTokenBalance) (#1296)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1357-1364)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1343-1349)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1296)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1357-1364)
Event emitted after the call(s):
- Transfer(sender,_burn,tBurn) (#1218)
- _tokenTransfer(from,to,amount,takeFee) (#1308)
- Transfer(sender,recipient,tTransferAmount) (#1387)
- _tokenTransfer(from,to,amount,takeFee) (#1308)
Reentrancy in Token.constructor(string,string,address[3],uint256[3]) (#920-967):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#946-947)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#962-966)
Reentrancy in Token.swapAndLiquify(uint256) (#1311-1332):
External calls:
- swapTokensForEth(half) (#1323)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1343-1349)
- addLiquidity(otherHalf,newBalance) (#1329)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1357-1364)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1329)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1357-1364)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1230)
- addLiquidity(otherHalf,newBalance) (#1329)
- SwapAndLiquify(half,newBalance,otherHalf) (#1331)
Reentrancy in Token.transferFrom(address,address,uint256) (#1016-1031):
External calls:
- _transfer(sender,recipient,amount) (#1021)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1357-1364)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1343-1349)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1021)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1357-1364)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1230)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1022-1029)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#513-521) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#518)
Token.setStartTimeForSwap() (#1133-1137) uses timestamp for comparisons
Dangerous comparisons:
- _startTimeForSwap == 0 (#1134)
Token._transfer(address,address,uint256) (#1233-1309) uses timestamp for comparisons
Dangerous comparisons:
- _startTimeForSwap == 0 && ! _isExcludedFromFee[from] && ! _isExcludedFromFee[to] (#1262-1264)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#272-283) uses assembly
- INLINE ASM (#279-281)
Address._functionCallWithValue(address,bytes,uint256,string) (#398-426) uses assembly
- INLINE ASM (#418-421)
Do not use evm assembly.

Additional information: link

Token.lockTheSwap() (#914-918) has costly operations inside a loop:
- inSwapAndLiquify = true (#915)
Token.lockTheSwap() (#914-918) has costly operations inside a loop:
- inSwapAndLiquify = false (#917)
Token.removeAllFee() (#1159-1169) has costly operations inside a loop:
- _previousMarketFee = _marketFee (#1162)
Token.removeAllFee() (#1159-1169) has costly operations inside a loop:
- _previousBurnFee = _burnFee (#1163)
Token.removeAllFee() (#1159-1169) has costly operations inside a loop:
- _previousLiquidityFee = _liquidityFee (#1164)
Token.removeAllFee() (#1159-1169) has costly operations inside a loop:
- _marketFee = 0 (#1166)
Token.removeAllFee() (#1159-1169) has costly operations inside a loop:
- _burnFee = 0 (#1167)
Token.removeAllFee() (#1159-1169) has costly operations inside a loop:
- _liquidityFee = 0 (#1168)
Token.restoreAllFee() (#1171-1175) has costly operations inside a loop:
- _marketFee = _previousMarketFee (#1172)
Token.restoreAllFee() (#1171-1175) has costly operations inside a loop:
- _burnFee = _previousBurnFee (#1173)
Token.restoreAllFee() (#1171-1175) has costly operations inside a loop:
- _liquidityFee = _previousLiquidityFee (#1174)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#398-426) is never used and should be removed
Address.functionCall(address,bytes) (#333-338) is never used and should be removed
Address.functionCall(address,bytes,string) (#346-352) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#365-377) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#385-396) is never used and should be removed
Address.isContract(address) (#272-283) is never used and should be removed
Address.sendValue(address,uint256) (#301-313) is never used and should be removed
Context._msgData() (#245-248) is never used and should be removed
SafeMath.mod(uint256,uint256) (#214-216) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#230-237) is never used and should be removed
Remove unused functions.

Additional information: link

Token._previousMarketFee (#884) is set pre-construction with a non-constant function or state variable:
- _marketFee
Token._previousLiquidityFee (#886) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
Token._previousBurnFee (#888) is set pre-construction with a non-constant function or state variable:
- _burnFee
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) (#301-313):
- (success) = recipient.call{value: amount}() (#308)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#398-426):
- (success,returndata) = target.call{value: weiValue}(data) (#407-409)
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() (#587) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#589) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#620) is not in mixedCase
Function IUniswapV2Router.WETH() (#666) is not in mixedCase
Parameter Token.setSwapAndLiquifyEnabled(bool)._enabled (#1124) is not in mixedCase
Parameter Token.calculateLiquidityFee(uint256)._amount (#1139) is not in mixedCase
Parameter Token.calculateMarketFee(uint256)._amount (#1147) is not in mixedCase
Parameter Token.calculateBurnFee(uint256)._amount (#1155) is not in mixedCase
Function Token._getValues(uint256) (#1184-1201) is not in mixedCase
Variable Token._marketFee (#883) is not in mixedCase
Variable Token._liquidityFee (#885) is not in mixedCase
Variable Token._burnFee (#887) is not in mixedCase
Variable Token._startTimeForSwap (#890) is not in mixedCase
Variable Token._maxTxAmount (#898) is not in mixedCase
Variable Token._maxHavAmount (#899) is not in mixedCase
Variable Token._burn (#902) is not in mixedCase
Variable Token._market (#903) is not in mixedCase
Variable Token._market2 (#904) is not in mixedCase
Variable Token._liquify (#905) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#246)" inContext (#240-249)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IUniswapV2Router.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#671) is too similar to IUniswapV2Router.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#672)
Prevent variables from having similar names.

Additional information: link

Token.slitherConstructorVariables() (#867-1392) uses literals with too many digits:
- _burn = 0x000000000000000000000000000000000000dEaD (#902)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Token.MAX (#876) is never used in Token (#867-1392)
Remove unused state variables.

Additional information: link

Token._burn (#902) should be constant
Token._decimals (#881) should be constant
Token._tTotal (#877) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#482-485)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#491-498)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#500-502)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#505-510)
unlock() should be declared external:
- Ownable.unlock() (#513-521)
name() should be declared external:
- Token.name() (#969-971)
symbol() should be declared external:
- Token.symbol() (#973-975)
decimals() should be declared external:
- Token.decimals() (#977-979)
totalSupply() should be declared external:
- Token.totalSupply() (#981-983)
transfer(address,uint256) should be declared external:
- Token.transfer(address,uint256) (#989-996)
allowance(address,address) should be declared external:
- Token.allowance(address,address) (#998-1005)
approve(address,uint256) should be declared external:
- Token.approve(address,uint256) (#1007-1014)
transferFrom(address,address,uint256) should be declared external:
- Token.transferFrom(address,address,uint256) (#1016-1031)
increaseAllowance(address,uint256) should be declared external:
- Token.increaseAllowance(address,uint256) (#1033-1044)
decreaseAllowance(address,uint256) should be declared external:
- Token.decreaseAllowance(address,uint256) (#1046-1060)
excludeFromFee(address) should be declared external:
- Token.excludeFromFee(address) (#1062-1064)
includeInFee(address) should be declared external:
- Token.includeInFee(address) (#1066-1068)
excludeMultiFromFee(address[],bool) should be declared external:
- Token.excludeMultiFromFee(address[],bool) (#1070-1077)
setMarketAddress(address,address) should be declared external:
- Token.setMarketAddress(address,address) (#1102-1105)
setLiquifyAddress(address) should be declared external:
- Token.setLiquifyAddress(address) (#1107-1109)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Token.setSwapAndLiquifyEnabled(bool) (#1124-1127)
setNumTokensSellToAddToLiquidity(uint256) should be declared external:
- Token.setNumTokensSellToAddToLiquidity(uint256) (#1129-1131)
isExcludedFromFee(address) should be declared external:
- Token.isExcludedFromFee(address) (#1177-1179)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


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.


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain


Token has only one trading pair

Contract has 5% buy tax and 5% sell tax.
Taxes are low and contract ownership is renounced.


Unable to find Telegram and Twitter accounts


Unable to find website, listings and other project-related information


Young tokens have high risks of scam / price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for 🍚