BRAND NEW MOONSHOT - SAVAGE APE - SAVAGE!!!
When the price of our token dips down 30% lower than the ATH, APETIME kicks in after two minutes. For a total of 15 minutes the buy tax is reduced to ZERO and the sell tax is then DOUBLED! Jeets will be forced to HOLD or get WRECKED! One lucky buyer during APETIME will get double the amount of tokens that they bought if they are the winner of our APESHIT PILE (Banana Reward)!
SavageApe.addLiquidity(uint256,uint256) (#1407-1420) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,LPPP,block.timestamp) (#1411-1418)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
SavageApe.random() (#1316-1319) uses a weak PRNG: "randomnumber = uint256(keccak256(bytes)(abi.encodePacked(block.timestamp,msg.sender,ATH))) % 100 (#1317)"
Do not use block.timestamp, now or blockhash as a source of randomness
Additional information: link
Reentrancy in SavageApe._transfer(address,address,uint256) (#1114-1249):
External calls:
- swapAndSendToFee(marketingTokens) (#1147)
- IERC20(ADA).transfer(_MAAA,newBalance) (#1256)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1398-1404)
- swapAndLiquify(swapTokens) (#1150)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,LPPP,block.timestamp) (#1411-1418)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1380-1386)
- swapAndSendDividends(sellTokens) (#1155)
- success = IERC20(ADA).transfer(address(dividendTracker),dividends) (#1426)
- dividendTracker.distributeADADividends(dividends) (#1429)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1398-1404)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1150)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,LPPP,block.timestamp) (#1411-1418)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1230)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#565)
- _balances[recipient] = _balances[recipient].add(amount) (#566)
- super._transfer(from,to,amount) (#1234)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#565)
- _balances[recipient] = _balances[recipient].add(amount) (#566)
- botList[to] = true (#1190)
- swapping = false (#1157)
Apply the check-effects-interactions pattern.
Additional information: link
SavageApe._totalSupply (#780) shadows:
- ERC20._totalSupply (#492)
Remove the state variable shadowing.
Additional information: link
SavageApe.swapAndSendToFee(uint256) (#1251-1257) ignores return value by IERC20(ADA).transfer(_MAAA,newBalance) (#1256)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.
SavageApe.apeTimeMonitoring(uint256) (#1361-1365) uses a dangerous strict equality:
- ATH > APETIMEFactor && _currPrice <= ATH / APETIMEFactor && nextAPETIMEStartingAt == 0 (#1362)
Don't use strict equality to determine if an account has enough Ether or tokens.
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.
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.
SavageApe.GetIt(uint256) (#992-995) performs a multiplication on the result of a division:
-address(_MAAA).transfer(amountBNB.mul((aP).div(100))) (#994)
Consider ordering multiplication before division.
Additional information: link
Reentrancy in SavageApe.updateDividendTracker(address) (#901-916):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#908)
- newDividendTracker.excludeFromDividends(address(this)) (#909)
- newDividendTracker.excludeFromDividends(owner()) (#910)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#911)
State variables written after the call(s):
- dividendTracker = newDividendTracker (#915)
Apply the check-effects-interactions pattern.
Additional information: link
SavageApe._transfer(address,address,uint256) (#1114-1249) uses tx.origin for authorization: require(bool)(selfLockedTokensUntil[from] < block.timestamp && ! botList[from] && ! botList[tx.origin] && ! botList[to]) (#1121)
Do not use tx.origin for authorization.
Additional information: link
SavageApe.feedTheApes().i (#1301) 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
SavageApe.addLiquidity(uint256,uint256) (#1407-1420) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,LPPP,block.timestamp) (#1411-1418)
Ensure that all the return values of the function calls are used.
Additional information: link
SavageApe.setFeeDecimalFactor(uint256).decimals (#945) shadows:
- ERC20.decimals() (#510-512) (function)
- IERC20Metadata.decimals() (#275) (function)
Rename the local variables that shadow another component.
Additional information: link
SavageApe.setApeTimeFactor(uint256) (#988-990) should emit an event for:
- APETIMEFactor = _number (#989)
Emit an event for critical parameter changes.
Additional information: link
SavageApe.setLPPPAddress(address)._address (#997) lacks a zero-check on :
- LPPP = _address (#998)
Check that the address is not zero.
Additional information: link
Variable 'SavageApe._transfer(address,address,uint256).iterations (#1242)' in SavageApe._transfer(address,address,uint256) (#1114-1249) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1243)
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 SavageApe.updateUniswapV2Router(address) (#918-925):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#922-923)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#924)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in SavageApe.updateDividendTracker(address) (#901-916):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#908)
- newDividendTracker.excludeFromDividends(address(this)) (#909)
- newDividendTracker.excludeFromDividends(owner()) (#910)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#911)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (#913)
Apply the check-effects-interactions pattern.
Additional information: link
SAVAGEDividendTracker.canAutoClaim(uint256) (#1557-1563) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1558)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1562)
Avoid relying on block.timestamp.
Additional information: link
SavageApe._APETIMEEnded() (#1348-1359) compares to a boolean constant:
-isAPETIME == true (#1349)
Remove the equality to the boolean constant.
Additional information: link
SafeMathInt.mul(int256,int256) (#373-379) is never used and should be removed
Remove unused functions.
Additional information: link
SavageApe.previousFeeDecimalFactor (#796) is set pre-construction with a non-constant function or state variable:
- feeDecimalFactor
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
Pragma version^0.6.2 (#639) allows old versions
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
Parameter SAVAGEDividendTracker.getAccount(address)._account (#1494) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#54)" inContext (#48-57)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#680) is too similar to SAVAGEDividendTracker.getAccount(address).withdrawableDividends (#1499)
Prevent variables from having similar names.
Additional information: link
SAVAGEDividendTracker.getAccountAtIndex(uint256) (#1538-1555) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#1549)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
SafeMathInt.MAX_INT256 (#371) is never used in SafeMathInt (#369-409)
Remove unused state variables.
Additional information: link
SavageApe.uniswapV2RouterAddress (#784) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
process(uint256) should be declared external:
- SAVAGEDividendTracker.process(uint256) (#1582-1627)
Use the external attribute for functions never called from the contract.
Additional information: link
Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
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.
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 find audit link on the website
Unable to find whitepaper link on the website
Unable to find code repository for the project
Young tokens have high risks of scam / 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
Twitter account link seems to be invalid
Telegram account has less than 100 subscribers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account