BIGFOOT META, a revolutionary HUB to get rewards from holding the BIGFOOT NFT and BFOOT token. Marketing fees will be returned to community and who hold a limited amount of BIGFOOT NFT. Holders will directly get rewards from the staking pool profit and start their staking without any deposit. ✅We rely on KYC, AUDIT and SAFU ✅True benefits for holder ✅3% holder rewards, 2% marketing, 1% LP. ✅Top early contributors will get limited edition NFT 👣IN BIGFOOT, WE BELIEVE.👣
BIGFOOTMETA.contractSwap(uint256) (#510-562) sends eth to arbitrary user
Dangerous calls:
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#541-552)
- (success,None) = _taxWallets.marketing.call{gas: 35000,value: marketingBalance}() (#560)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in BIGFOOTMETA._transfer(address,address,uint256) (#469-508):
External calls:
- contractSwap(contractTokenBalance) (#501)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(swapAmt,0,path,address(this),block.timestamp) (#527-535)
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#541-552)
- (success,None) = _taxWallets.marketing.call{gas: 35000,value: marketingBalance}() (#560)
- finalizeTransfer(from,to,amount,buy,sell,other) (#507)
- antiSnipe.checkUser(from,to,tAmount) (#703-704)
External calls sending eth:
- contractSwap(contractTokenBalance) (#501)
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#541-552)
- (success,None) = _taxWallets.marketing.call{gas: 35000,value: marketingBalance}() (#560)
State variables written after the call(s):
- finalizeTransfer(from,to,amount,buy,sell,other) (#507)
- _liquidityHolders[from] = true (#567)
- finalizeTransfer(from,to,amount,buy,sell,other) (#507)
- _rOwned[from] -= values.rAmount (#677)
- _rOwned[to] += values.rTransferAmount (#678)
- _rOwned[address(this)] += values.tSwap * values.currentRate (#731)
- finalizeTransfer(from,to,amount,buy,sell,other) (#507)
- _rTotal -= values.rFee (#688)
- finalizeTransfer(from,to,amount,buy,sell,other) (#507)
- _tOwned[from] = _tOwned[from] - tAmount (#681)
- _tOwned[to] = _tOwned[to] + values.tTransferAmount (#684)
- _tOwned[address(this)] += values.tSwap (#733)
- finalizeTransfer(from,to,amount,buy,sell,other) (#507)
- antiSnipe = AntiSnipe(address(this)) (#571)
- finalizeTransfer(from,to,amount,buy,sell,other) (#507)
- contractSwapEnabled = true (#573)
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.
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
Contract ownership is not renounced (belongs to a wallet)
BIGFOOTMETA.contractSwap(uint256) (#510-562) performs a multiplication on the result of a division:
-toLiquify = ((contractTokenBalance * ratios.liquidity) / ratios.totalSwap) / 2 (#520)
-liquidityBalance = (amtBalance * toLiquify) / swapAmt (#538)
BIGFOOTMETA.takeTaxes(address,address,uint256,bool,bool,bool,bool) (#695-740) performs a multiplication on the result of a division:
-feeAmount = (tAmount * currentFee) / masterTaxDivisor (#719)
-values.tFee = (feeAmount * ratios.reflection) / total (#721)
Consider ordering multiplication before division.
Additional information: link
Reentrancy in BIGFOOTMETA.enableTrading() (#578-589):
External calls:
- antiSnipe.setLaunch(lpPair,uint32(block.number),uint64(block.timestamp),_decimals) (#584)
State variables written after the call(s):
- tradingEnabled = true (#585)
Reentrancy in BIGFOOTMETA.finalizeTransfer(address,address,uint256,bool,bool,bool) (#662-693):
External calls:
- values = takeTaxes(from,to,tAmount,takeFee,buy,sell,other) (#675)
- antiSnipe.checkUser(from,to,tAmount) (#703-704)
State variables written after the call(s):
- _rOwned[from] -= values.rAmount (#677)
- _rOwned[to] += values.rTransferAmount (#678)
- _rTotal -= values.rFee (#688)
- _tOwned[from] = _tOwned[from] - tAmount (#681)
- _tOwned[to] = _tOwned[to] + values.tTransferAmount (#684)
Reentrancy in BIGFOOTMETA.takeTaxes(address,address,uint256,bool,bool,bool,bool) (#695-740):
External calls:
- antiSnipe.checkUser(from,to,tAmount) (#703-704)
State variables written after the call(s):
- _rOwned[address(this)] += values.tSwap * values.currentRate (#731)
- _tOwned[address(this)] += values.tSwap (#733)
Reentrancy in BIGFOOTMETA.transferOwner(address) (#241-255):
External calls:
- finalizeTransfer(_owner,newOwner,balanceOf(_owner),false,false,true) (#248)
- antiSnipe.checkUser(from,to,tAmount) (#703-704)
State variables written after the call(s):
- _owner = newOwner (#252)
Apply the check-effects-interactions pattern.
Additional information: link
BIGFOOTMETA.takeTaxes(address,address,uint256,bool,bool,bool,bool).values (#696) is a local variable never initialized
BIGFOOTMETA.takeTaxes(address,address,uint256,bool,bool,bool,bool).checked (#702) is a local variable never initialized
BIGFOOTMETA.takeTaxes(address,address,uint256,bool,bool,bool,bool).check (#703) is a local variable never initialized
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
BIGFOOTMETA.contractSwap(uint256) (#510-562) ignores return value by dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#541-552)
BIGFOOTMETA.takeTaxes(address,address,uint256,bool,bool,bool,bool) (#695-740) ignores return value by antiSnipe.checkUser(from,to,tAmount) (#703-704)
Ensure that all the return values of the function calls are used.
Additional information: link
BIGFOOTMETA.setSwapSettings(uint256,uint256,uint256,uint256) (#417-423) should emit an event for:
- swapThreshold = (_tTotal * thresholdPercent) / thresholdDivisor (#418)
- swapAmount = (_tTotal * amountPercent) / amountDivisor (#419)
BIGFOOTMETA.setPriceImpactSwapAmount(uint256) (#425-428) should emit an event for:
- piSwapPercent = priceImpactSwapPercent (#427)
Emit an event for critical parameter changes.
Additional information: link
BIGFOOTMETA.setOperator(address).newOperator (#266) lacks a zero-check on :
- operator = newOperator (#273)
Check that the address is not zero.
Additional information: link
BIGFOOTMETA.takeTaxes(address,address,uint256,bool,bool,bool,bool) (#695-740) has external calls inside a loop: antiSnipe.checkUser(from,to,tAmount) (#703-704)
Favor pull over push strategy for external calls.
Additional information: link
Variable 'BIGFOOTMETA.takeTaxes(address,address,uint256,bool,bool,bool,bool).check (#703)' in BIGFOOTMETA.takeTaxes(address,address,uint256,bool,bool,bool,bool) (#695-740) potentially used before declaration: checked = check (#704)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.
Additional information: link
Reentrancy in BIGFOOTMETA.constructor() (#199-232):
External calls:
- lpPair = IFactoryV2(dexRouter.factory()).createPair(dexRouter.WETH(),address(this)) (#222)
State variables written after the call(s):
- _approve(_owner,address(dexRouter),type()(uint256).max) (#225)
- _allowances[sender][spender] = amount (#312)
- _approve(address(this),address(dexRouter),type()(uint256).max) (#226)
- _allowances[sender][spender] = amount (#312)
- _isExcludedFromFees[_owner] = true (#228)
- _isExcludedFromFees[address(this)] = true (#229)
- _isExcludedFromFees[DEAD] = true (#230)
- _liquidityHolders[_owner] = true (#231)
- lpPairs[lpPair] = true (#223)
Reentrancy in BIGFOOTMETA.enableTrading() (#578-589):
External calls:
- antiSnipe.setLaunch(lpPair,uint32(block.number),uint64(block.timestamp),_decimals) (#584)
State variables written after the call(s):
- allowedPresaleExclusion = false (#586)
- swapAmount = (balanceOf(lpPair) * 30) / 10000 (#588)
- swapThreshold = (balanceOf(lpPair) * 10) / 10000 (#587)
Reentrancy in BIGFOOTMETA.setNewRouter(address) (#329-341):
External calls:
- lpPair = IFactoryV2(_newRouter.factory()).createPair(address(this),_newRouter.WETH()) (#334)
State variables written after the call(s):
- _approve(address(this),address(dexRouter),type()(uint256).max) (#340)
- _allowances[sender][spender] = amount (#312)
- dexRouter = _newRouter (#339)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in BIGFOOTMETA._transfer(address,address,uint256) (#469-508):
External calls:
- contractSwap(contractTokenBalance) (#501)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(swapAmt,0,path,address(this),block.timestamp) (#527-535)
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#541-552)
- (success,None) = _taxWallets.marketing.call{gas: 35000,value: marketingBalance}() (#560)
- finalizeTransfer(from,to,amount,buy,sell,other) (#507)
- antiSnipe.checkUser(from,to,tAmount) (#703-704)
External calls sending eth:
- contractSwap(contractTokenBalance) (#501)
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#541-552)
- (success,None) = _taxWallets.marketing.call{gas: 35000,value: marketingBalance}() (#560)
Event emitted after the call(s):
- ContractSwapEnabledUpdated(true) (#574)
- finalizeTransfer(from,to,amount,buy,sell,other) (#507)
- Transfer(from,to,values.tTransferAmount) (#691)
- finalizeTransfer(from,to,amount,buy,sell,other) (#507)
- Transfer(from,address(this),values.tSwap) (#735)
- finalizeTransfer(from,to,amount,buy,sell,other) (#507)
Reentrancy in BIGFOOTMETA.constructor() (#199-232):
External calls:
- lpPair = IFactoryV2(dexRouter.factory()).createPair(dexRouter.WETH(),address(this)) (#222)
Event emitted after the call(s):
- Approval(sender,spender,amount) (#313)
- _approve(_owner,address(dexRouter),type()(uint256).max) (#225)
- Approval(sender,spender,amount) (#313)
- _approve(address(this),address(dexRouter),type()(uint256).max) (#226)
Reentrancy in BIGFOOTMETA.contractSwap(uint256) (#510-562):
External calls:
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(swapAmt,0,path,address(this),block.timestamp) (#527-535)
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#541-552)
External calls sending eth:
- dexRouter.addLiquidityETH{value: liquidityBalance}(address(this),toLiquify,0,0,DEAD,block.timestamp) (#541-552)
Event emitted after the call(s):
- AutoLiquify(liquidityBalance,toLiquify) (#549)
Reentrancy in BIGFOOTMETA.finalizeTransfer(address,address,uint256,bool,bool,bool) (#662-693):
External calls:
- values = takeTaxes(from,to,tAmount,takeFee,buy,sell,other) (#675)
- antiSnipe.checkUser(from,to,tAmount) (#703-704)
Event emitted after the call(s):
- Transfer(from,to,values.tTransferAmount) (#691)
Reentrancy in BIGFOOTMETA.setNewRouter(address) (#329-341):
External calls:
- lpPair = IFactoryV2(_newRouter.factory()).createPair(address(this),_newRouter.WETH()) (#334)
Event emitted after the call(s):
- Approval(sender,spender,amount) (#313)
- _approve(address(this),address(dexRouter),type()(uint256).max) (#340)
Reentrancy in BIGFOOTMETA.takeTaxes(address,address,uint256,bool,bool,bool,bool) (#695-740):
External calls:
- antiSnipe.checkUser(from,to,tAmount) (#703-704)
Event emitted after the call(s):
- Transfer(from,address(this),values.tSwap) (#735)
Reentrancy in BIGFOOTMETA.transferOwner(address) (#241-255):
External calls:
- finalizeTransfer(_owner,newOwner,balanceOf(_owner),false,false,true) (#248)
- antiSnipe.checkUser(from,to,tAmount) (#703-704)
Event emitted after the call(s):
- OwnershipTransferred(oldOwner,newOwner) (#253)
Apply the check-effects-interactions pattern.
Additional information: link
BIGFOOTMETA.setLpPair(address,bool) (#343-355) uses timestamp for comparisons
Dangerous comparisons:
- timeSinceLastPair != 0 (#348)
- require(bool,string)(block.timestamp - timeSinceLastPair > 259200,3 Day cooldown.!) (#349)
Avoid relying on block.timestamp.
Additional information: link
BIGFOOTMETA._checkLiquidityAdd(address,address) (#564-576) has costly operations inside a loop:
- _hasLiqBeenAdded = true (#569)
BIGFOOTMETA._checkLiquidityAdd(address,address) (#564-576) has costly operations inside a loop:
- antiSnipe = AntiSnipe(address(this)) (#571)
BIGFOOTMETA._checkLiquidityAdd(address,address) (#564-576) has costly operations inside a loop:
- contractSwapEnabled = true (#573)
BIGFOOTMETA.finalizeTransfer(address,address,uint256,bool,bool,bool) (#662-693) has costly operations inside a loop:
- _rTotal -= values.rFee (#688)
BIGFOOTMETA.setExcludedFromReward(address,bool) (#608-642) has costly operations inside a loop:
- _excluded.pop() (#636)
Use a local variable to hold the loop computation result.
Additional information: link
Pragma version>=0.6.0<0.9.0 (#2) is too complex
solc-0.8.16 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
Low level call in BIGFOOTMETA.contractSwap(uint256) (#510-562):
- (success,None) = _taxWallets.marketing.call{gas: 35000,value: marketingBalance}() (#560)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IRouter01.WETH() (#33) is not in mixedCase
Parameter BIGFOOTMETA.setProtectionSettings(bool,bool)._antiSnipe (#383) is not in mixedCase
Parameter BIGFOOTMETA.setProtectionSettings(bool,bool)._antiBlock (#383) is not in mixedCase
Constant BIGFOOTMETA.startingSupply (#119) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BIGFOOTMETA._name (#120) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BIGFOOTMETA._symbol (#121) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BIGFOOTMETA._decimals (#122) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BIGFOOTMETA._tTotal (#124) is not in UPPER_CASE_WITH_UNDERSCORES
Variable BIGFOOTMETA._taxRates (#141-145) is not in mixedCase
Variable BIGFOOTMETA._ratios (#147-152) is not in mixedCase
Constant BIGFOOTMETA.maxBuyTaxes (#154) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BIGFOOTMETA.maxSellTaxes (#155) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BIGFOOTMETA.maxTransferTaxes (#156) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BIGFOOTMETA.maxRoundtripTax (#157) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BIGFOOTMETA.masterTaxDivisor (#158) is not in UPPER_CASE_WITH_UNDERSCORES
Variable BIGFOOTMETA._taxWallets (#169-171) is not in mixedCase
Variable BIGFOOTMETA._hasLiqBeenAdded (#181) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#45) is too similar to IRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#46)
Prevent variables from having similar names.
Additional information: link
BIGFOOTMETA.slitherConstructorConstantVariables() (#99-770) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#163)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
transfer(address,uint256) should be declared external:
- BIGFOOTMETA.transfer(address,uint256) (#298-301)
enableTrading() should be declared external:
- BIGFOOTMETA.enableTrading() (#578-589)
isExcludedFromReward(address) should be declared external:
- BIGFOOTMETA.isExcludedFromReward(address) (#604-606)
Use the external attribute for functions never called from the contract.
Additional information: link
Unable to find website, listings and other project-related information
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