AlienAbductionAgency Token Logo

AAA [AlienAbductionAgency] Token

About AAA

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 15 January 2022

report
Token seems to be anonymous. As long as we are unable to find website score is limited.


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

AlienAbductionAgency.swapBack() (#1122-1156) sends eth to arbitrary user
Dangerous calls:
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1147)
AlienAbductionAgency.addLiquidity(uint256,uint256) (#1172-1182) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1174-1181)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in AlienAbductionAgency._transfer(address,address,uint256) (#1025-1120):
External calls:
- swapBack() (#1083)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1174-1181)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1163-1169)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1146)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1147)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1154)
External calls sending eth:
- swapBack() (#1083)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1174-1181)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1146)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1147)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1154)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1118)
- _liquidityTokensToSwap += tLiquidity * _buyLiquidityFee / _liquidityFee (#1385)
- _liquidityTokensToSwap += tLiquidity * _sellLiquidityFee / _liquidityFee (#1389)
- _tokenTransfer(from,to,amount,takeFee) (#1118)
- _marketingTokensToSwap += tLiquidity * _buyMarketingFee / _liquidityFee (#1387)
- _marketingTokensToSwap += tLiquidity * _sellMarketingFee / _liquidityFee (#1391)
- _tokenTransfer(from,to,amount,takeFee) (#1118)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1218)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1238)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1260)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1281)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1219)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1240)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1261)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1283)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1395)
- _tokenTransfer(from,to,amount,takeFee) (#1118)
- _rTotal = _rTotal.sub(rFee) (#1290)
- _tokenTransfer(from,to,amount,takeFee) (#1118)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1259)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1280)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1239)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1282)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1397)
- _tokenTransfer(from,to,amount,takeFee) (#1118)
- _teamTokensToSwap += tLiquidity * _buyTeamFee / _liquidityFee (#1386)
- _teamTokensToSwap += tLiquidity * _sellTeamFee / _liquidityFee (#1390)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable._lockTime (#224) is never initialized. It is used in:
- Ownable.getUnlockTime() (#260-262)
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

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

Additional information: link

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

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.

Reentrancy in AlienAbductionAgency.swapBack() (#1122-1156):
External calls:
- swapTokensForBNB(amountToSwapForBNB) (#1133)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1163-1169)
State variables written after the call(s):
- _liquidityTokensToSwap = 0 (#1142)
- _marketingTokensToSwap = 0 (#1143)
- _teamTokensToSwap = 0 (#1144)
Apply the check-effects-interactions pattern.

Additional information: link

AlienAbductionAgency.addLiquidity(uint256,uint256) (#1172-1182) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1174-1181)
Ensure that all the return values of the function calls are used.

Additional information: link

AlienAbductionAgency.allowance(address,address).owner (#818) shadows:
- Ownable.owner() (#237-239) (function)
AlienAbductionAgency._approve(address,address,uint256).owner (#1014) shadows:
- Ownable.owner() (#237-239) (function)
Rename the local variables that shadow another component.

Additional information: link

AlienAbductionAgency.setGasPriceLimit(uint256) (#937-940) should emit an event for:
- gasPriceLimit = gas * 1000000000 (#939)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in AlienAbductionAgency._transfer(address,address,uint256) (#1025-1120):
External calls:
- swapBack() (#1083)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1174-1181)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1163-1169)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1146)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1147)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1154)
External calls sending eth:
- swapBack() (#1083)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1174-1181)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1146)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1147)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1154)
State variables written after the call(s):
- removeAllFee() (#1095)
- _liquidityFee = 0 (#1419)
- _liquidityFee = _buyLiquidityFee + _buyMarketingFee + _buyTeamFee (#1097)
- removeAllFee() (#1102)
- _liquidityFee = 0 (#1419)
- _liquidityFee = _sellLiquidityFee + _sellMarketingFee + _sellTeamFee (#1104)
- _liquidityFee = _liquidityFee * 3 (#1109)
- removeAllFee() (#1113)
- _liquidityFee = 0 (#1419)
- _tokenTransfer(from,to,amount,takeFee) (#1118)
- _liquidityFee = _previousLiquidityFee (#1424)
- _liquidityFee = 0 (#1419)
- removeAllFee() (#1095)
- _previousLiquidityFee = _liquidityFee (#1416)
- removeAllFee() (#1102)
- _previousLiquidityFee = _liquidityFee (#1416)
- removeAllFee() (#1113)
- _previousLiquidityFee = _liquidityFee (#1416)
- _tokenTransfer(from,to,amount,takeFee) (#1118)
- _previousLiquidityFee = _liquidityFee (#1416)
- removeAllFee() (#1095)
- _previousTaxFee = _taxFee (#1415)
- removeAllFee() (#1102)
- _previousTaxFee = _taxFee (#1415)
- removeAllFee() (#1113)
- _previousTaxFee = _taxFee (#1415)
- _tokenTransfer(from,to,amount,takeFee) (#1118)
- _previousTaxFee = _taxFee (#1415)
- _tokenTransfer(from,to,amount,takeFee) (#1118)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1291)
- removeAllFee() (#1095)
- _taxFee = 0 (#1418)
- _taxFee = _buyTaxFee (#1096)
- removeAllFee() (#1102)
- _taxFee = 0 (#1418)
- _taxFee = _sellTaxFee (#1103)
- _taxFee = _taxFee * 3 (#1108)
- removeAllFee() (#1113)
- _taxFee = 0 (#1418)
- _tokenTransfer(from,to,amount,takeFee) (#1118)
- _taxFee = _previousTaxFee (#1423)
- _taxFee = 0 (#1418)
- buyOrSellSwitch = TRANSFER (#1091)
- buyOrSellSwitch = BUY (#1098)
- buyOrSellSwitch = SELL (#1105)
- buyOrSellSwitch = TRANSFER (#1114)
Reentrancy in AlienAbductionAgency.changeRouterVersion(address) (#1501-1525):
External calls:
- _pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1515-1518)
State variables written after the call(s):
- uniswapV2Pair = _pair (#1520)
- uniswapV2Router = _uniswapV2Router (#1523)
Reentrancy in AlienAbductionAgency.constructor() (#750-786):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#761-762)
State variables written after the call(s):
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#767)
- _excluded.push(account) (#989)
- _excluded[i] = _excluded[_excluded.length - 1] (#996)
- _excluded.pop() (#999)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#767)
- _isExcluded[account] = true (#988)
- _isExcluded[account] = false (#998)
- _isExcludedFromFee[owner()] = true (#769)
- _isExcludedFromFee[address(this)] = true (#770)
- _isExcludedFromFee[marketingAddress] = true (#771)
- _isExcludedFromFee[liquidityAddress] = true (#772)
- _isExcludedFromFee[teamAddress] = true (#773)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#767)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#1006)
- excludeFromMaxTransaction(owner(),true) (#775)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#1006)
- excludeFromMaxTransaction(address(this),true) (#776)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#1006)
- excludeFromMaxTransaction(address(0xdead),true) (#777)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#1006)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#767)
- _isExcludedMaxWalletAmount[updAds] = isEx (#1010)
- excludeFromWalletAmount(owner(),true) (#779)
- _isExcludedMaxWalletAmount[updAds] = isEx (#1010)
- excludeFromWalletAmount(address(this),true) (#780)
- _isExcludedMaxWalletAmount[updAds] = isEx (#1010)
- excludeFromWalletAmount(address(0xdead),true) (#781)
- _isExcludedMaxWalletAmount[updAds] = isEx (#1010)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#767)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#986)
- _tOwned[account] = 0 (#997)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#767)
- automatedMarketMakerPairs[pair] = value (#923)
- uniswapV2Pair = _uniswapV2Pair (#765)
- uniswapV2Router = _uniswapV2Router (#764)
Reentrancy in AlienAbductionAgency.swapBack() (#1122-1156):
External calls:
- swapTokensForBNB(amountToSwapForBNB) (#1133)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1163-1169)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1146)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1147)
- addLiquidity(tokensForLiquidity,bnbForLiquidity) (#1149)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1174-1181)
External calls sending eth:
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1146)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1147)
- addLiquidity(tokensForLiquidity,bnbForLiquidity) (#1149)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1174-1181)
State variables written after the call(s):
- addLiquidity(tokensForLiquidity,bnbForLiquidity) (#1149)
- _allowances[owner][spender] = amount (#1021)
Reentrancy in AlienAbductionAgency.transferFrom(address,address,uint256) (#836-851):
External calls:
- _transfer(sender,recipient,amount) (#841)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1174-1181)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1163-1169)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1146)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1147)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1154)
External calls sending eth:
- _transfer(sender,recipient,amount) (#841)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1174-1181)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1146)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1147)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1154)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#842-849)
- _allowances[owner][spender] = amount (#1021)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in AlienAbductionAgency._transfer(address,address,uint256) (#1025-1120):
External calls:
- swapBack() (#1083)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1174-1181)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1163-1169)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1146)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1147)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1154)
External calls sending eth:
- swapBack() (#1083)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1174-1181)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1146)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1147)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1154)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1222)
- _tokenTransfer(from,to,amount,takeFee) (#1118)
- Transfer(sender,recipient,tTransferAmount) (#1264)
- _tokenTransfer(from,to,amount,takeFee) (#1118)
- Transfer(sender,recipient,tTransferAmount) (#1243)
- _tokenTransfer(from,to,amount,takeFee) (#1118)
- Transfer(sender,recipient,tTransferAmount) (#1286)
- _tokenTransfer(from,to,amount,takeFee) (#1118)
Reentrancy in AlienAbductionAgency.changeRouterVersion(address) (#1501-1525):
External calls:
- _pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1515-1518)
Event emitted after the call(s):
- UpdatedRouter(_router) (#1524)
Reentrancy in AlienAbductionAgency.constructor() (#750-786):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#761-762)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#930)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#767)
- Transfer(address(0),_msgSender(),_tTotal) (#785)
Reentrancy in AlienAbductionAgency.swapBack() (#1122-1156):
External calls:
- swapTokensForBNB(amountToSwapForBNB) (#1133)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1163-1169)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1146)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1147)
- addLiquidity(tokensForLiquidity,bnbForLiquidity) (#1149)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1174-1181)
External calls sending eth:
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1146)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1147)
- addLiquidity(tokensForLiquidity,bnbForLiquidity) (#1149)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1174-1181)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1022)
- addLiquidity(tokensForLiquidity,bnbForLiquidity) (#1149)
- SwapAndLiquify(amountToSwapForBNB,bnbForLiquidity,tokensForLiquidity) (#1150)
Reentrancy in AlienAbductionAgency.transferForeignToken(address,address) (#1530-1540):
External calls:
- _sent = IERC20(_token).transfer(_to,_contractBalance) (#1538)
Event emitted after the call(s):
- TransferForeignToken(_token,_contractBalance) (#1539)
Reentrancy in AlienAbductionAgency.transferFrom(address,address,uint256) (#836-851):
External calls:
- _transfer(sender,recipient,amount) (#841)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1174-1181)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1163-1169)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1146)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1147)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1154)
External calls sending eth:
- _transfer(sender,recipient,amount) (#841)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1174-1181)
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1146)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1147)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1154)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1022)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#842-849)
Apply the check-effects-interactions pattern.

Additional information: link

AlienAbductionAgency._transfer(address,address,uint256) (#1025-1120) uses timestamp for comparisons
Dangerous comparisons:
- boughtEarly[from] && earlyBuyPenaltyEnd <= block.number (#1107)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#126-137) uses assembly
- INLINE ASM (#133-135)
Address._functionCallWithValue(address,bytes,uint256,string) (#195-218) uses assembly
- INLINE ASM (#210-213)
Do not use evm assembly.

Additional information: link

AlienAbductionAgency.includeInReward(address) (#992-1003) has costly operations inside a loop:
- _excluded.pop() (#999)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#195-218) is never used and should be removed
Address.functionCall(address,bytes) (#153-158) is never used and should be removed
Address.functionCall(address,bytes,string) (#160-166) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#168-180) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#182-193) is never used and should be removed
Address.isContract(address) (#126-137) is never used and should be removed
Address.sendValue(address,uint256) (#139-151) is never used and should be removed
Context._msgData() (#25-28) is never used and should be removed
SafeMath.mod(uint256,uint256) (#111-113) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#115-122) is never used and should be removed
Remove unused functions.

Additional information: link

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

Pragma version0.8.9 (#18) 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

Low level call in Address.sendValue(address,uint256) (#139-151):
- (success) = recipient.call{value: amount}() (#146)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#195-218):
- (success,returndata) = target.call{value: weiValue}(data) (#203-205)
Low level call in AlienAbductionAgency.swapBack() (#1122-1156):
- (success) = address(teamAddress).call{value: bnbForTeam}() (#1146)
- (success,None) = address(marketingAddress).call{value: bnbForMarketing}() (#1147)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1154)
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() (#334) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#336) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#366) is not in mixedCase
Function IUniswapV2Router01.WETH() (#410) is not in mixedCase
Parameter AlienAbductionAgency.addPresaleAddressForExclusions(address,address)._presaleAddress (#903) is not in mixedCase
Parameter AlienAbductionAgency.addPresaleAddressForExclusions(address,address)._presaleRouterAddress (#903) is not in mixedCase
Parameter AlienAbductionAgency.calculateTaxFee(uint256)._amount (#1400) is not in mixedCase
Parameter AlienAbductionAgency.calculateLiquidityFee(uint256)._amount (#1404) is not in mixedCase
Parameter AlienAbductionAgency.setMarketingAddress(address)._marketingAddress (#1471) is not in mixedCase
Parameter AlienAbductionAgency.setTeamAddress(address)._teamAddress (#1478) is not in mixedCase
Parameter AlienAbductionAgency.setLiquidityAddress(address)._liquidityAddress (#1485) is not in mixedCase
Parameter AlienAbductionAgency.setSwapAndLiquifyEnabled(bool)._enabled (#1492) is not in mixedCase
Parameter AlienAbductionAgency.changeRouterVersion(address)._router (#1501) is not in mixedCase
Parameter AlienAbductionAgency.transferForeignToken(address,address)._token (#1530) is not in mixedCase
Parameter AlienAbductionAgency.transferForeignToken(address,address)._to (#1530) is not in mixedCase
Constant AlienAbductionAgency._tTotal (#639) is not in UPPER_CASE_WITH_UNDERSCORES
Constant AlienAbductionAgency._name (#645) is not in UPPER_CASE_WITH_UNDERSCORES
Constant AlienAbductionAgency._symbol (#646) is not in UPPER_CASE_WITH_UNDERSCORES
Constant AlienAbductionAgency._decimals (#648) is not in UPPER_CASE_WITH_UNDERSCORES
Variable AlienAbductionAgency._buyTaxFee (#662) is not in mixedCase
Variable AlienAbductionAgency._buyLiquidityFee (#663) is not in mixedCase
Variable AlienAbductionAgency._buyMarketingFee (#664) is not in mixedCase
Variable AlienAbductionAgency._buyTeamFee (#665) is not in mixedCase
Variable AlienAbductionAgency._sellTaxFee (#667) is not in mixedCase
Variable AlienAbductionAgency._sellLiquidityFee (#668) is not in mixedCase
Variable AlienAbductionAgency._sellMarketingFee (#669) is not in mixedCase
Variable AlienAbductionAgency._sellTeamFee (#670) is not in mixedCase
Variable AlienAbductionAgency._isExcludedMaxTransactionAmount (#686) is not in mixedCase
Variable AlienAbductionAgency._isExcludedMaxWalletAmount (#687) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#26)" inContext (#20-29)
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 (#415) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#416)
Variable AlienAbductionAgency._transferFromExcluded(address,address,uint256).rTransferAmount (#1253) is too similar to AlienAbductionAgency._transferStandard(address,address,uint256).tTransferAmount (#1214)
Variable AlienAbductionAgency._transferToExcluded(address,address,uint256).rTransferAmount (#1232) is too similar to AlienAbductionAgency._getValues(uint256).tTransferAmount (#1307)
Variable AlienAbductionAgency._transferToExcluded(address,address,uint256).rTransferAmount (#1232) is too similar to AlienAbductionAgency._transferStandard(address,address,uint256).tTransferAmount (#1214)
Variable AlienAbductionAgency._transferBothExcluded(address,address,uint256).rTransferAmount (#1274) is too similar to AlienAbductionAgency._transferFromExcluded(address,address,uint256).tTransferAmount (#1255)
Variable AlienAbductionAgency._transferBothExcluded(address,address,uint256).rTransferAmount (#1274) is too similar to AlienAbductionAgency._transferBothExcluded(address,address,uint256).tTransferAmount (#1276)
Variable AlienAbductionAgency.reflectionFromToken(uint256,bool).rTransferAmount (#964) is too similar to AlienAbductionAgency._transferFromExcluded(address,address,uint256).tTransferAmount (#1255)
Variable AlienAbductionAgency.reflectionFromToken(uint256,bool).rTransferAmount (#964) is too similar to AlienAbductionAgency._transferBothExcluded(address,address,uint256).tTransferAmount (#1276)
Variable AlienAbductionAgency._transferBothExcluded(address,address,uint256).rTransferAmount (#1274) is too similar to AlienAbductionAgency._transferToExcluded(address,address,uint256).tTransferAmount (#1234)
Variable AlienAbductionAgency._transferBothExcluded(address,address,uint256).rTransferAmount (#1274) is too similar to AlienAbductionAgency._getValues(uint256).tTransferAmount (#1307)
Variable AlienAbductionAgency._transferFromExcluded(address,address,uint256).rTransferAmount (#1253) is too similar to AlienAbductionAgency._transferFromExcluded(address,address,uint256).tTransferAmount (#1255)
Variable AlienAbductionAgency.reflectionFromToken(uint256,bool).rTransferAmount (#964) is too similar to AlienAbductionAgency._transferToExcluded(address,address,uint256).tTransferAmount (#1234)
Variable AlienAbductionAgency._transferBothExcluded(address,address,uint256).rTransferAmount (#1274) is too similar to AlienAbductionAgency._transferStandard(address,address,uint256).tTransferAmount (#1214)
Variable AlienAbductionAgency._transferFromExcluded(address,address,uint256).rTransferAmount (#1253) is too similar to AlienAbductionAgency._transferBothExcluded(address,address,uint256).tTransferAmount (#1276)
Variable AlienAbductionAgency._transferToExcluded(address,address,uint256).rTransferAmount (#1232) is too similar to AlienAbductionAgency._transferFromExcluded(address,address,uint256).tTransferAmount (#1255)
Variable AlienAbductionAgency._getValues(uint256).rTransferAmount (#1311) is too similar to AlienAbductionAgency._getValues(uint256).tTransferAmount (#1307)
Variable AlienAbductionAgency.reflectionFromToken(uint256,bool).rTransferAmount (#964) is too similar to AlienAbductionAgency._getValues(uint256).tTransferAmount (#1307)
Variable AlienAbductionAgency._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1359) is too similar to AlienAbductionAgency._getValues(uint256).tTransferAmount (#1307)
Variable AlienAbductionAgency.reflectionFromToken(uint256,bool).rTransferAmount (#964) is too similar to AlienAbductionAgency._transferStandard(address,address,uint256).tTransferAmount (#1214)
Variable AlienAbductionAgency._transferFromExcluded(address,address,uint256).rTransferAmount (#1253) is too similar to AlienAbductionAgency._transferToExcluded(address,address,uint256).tTransferAmount (#1234)
Variable AlienAbductionAgency._transferFromExcluded(address,address,uint256).rTransferAmount (#1253) is too similar to AlienAbductionAgency._getValues(uint256).tTransferAmount (#1307)
Variable AlienAbductionAgency._transferToExcluded(address,address,uint256).rTransferAmount (#1232) is too similar to AlienAbductionAgency._transferToExcluded(address,address,uint256).tTransferAmount (#1234)
Variable AlienAbductionAgency._transferStandard(address,address,uint256).rTransferAmount (#1212) is too similar to AlienAbductionAgency._getTValues(uint256).tTransferAmount (#1338)
Variable AlienAbductionAgency._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1359) is too similar to AlienAbductionAgency._transferBothExcluded(address,address,uint256).tTransferAmount (#1276)
Variable AlienAbductionAgency._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1359) is too similar to AlienAbductionAgency._transferStandard(address,address,uint256).tTransferAmount (#1214)
Variable AlienAbductionAgency._transferStandard(address,address,uint256).rTransferAmount (#1212) is too similar to AlienAbductionAgency._transferFromExcluded(address,address,uint256).tTransferAmount (#1255)
Variable AlienAbductionAgency._transferStandard(address,address,uint256).rTransferAmount (#1212) is too similar to AlienAbductionAgency._transferToExcluded(address,address,uint256).tTransferAmount (#1234)
Variable AlienAbductionAgency.reflectionFromToken(uint256,bool).rTransferAmount (#964) is too similar to AlienAbductionAgency._getTValues(uint256).tTransferAmount (#1338)
Variable AlienAbductionAgency._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1359) is too similar to AlienAbductionAgency._getTValues(uint256).tTransferAmount (#1338)
Variable AlienAbductionAgency._getValues(uint256).rTransferAmount (#1311) is too similar to AlienAbductionAgency._transferToExcluded(address,address,uint256).tTransferAmount (#1234)
Variable AlienAbductionAgency._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1359) is too similar to AlienAbductionAgency._transferFromExcluded(address,address,uint256).tTransferAmount (#1255)
Variable AlienAbductionAgency._getValues(uint256).rTransferAmount (#1311) is too similar to AlienAbductionAgency._transferBothExcluded(address,address,uint256).tTransferAmount (#1276)
Variable AlienAbductionAgency._getValues(uint256).rTransferAmount (#1311) is too similar to AlienAbductionAgency._transferStandard(address,address,uint256).tTransferAmount (#1214)
Variable AlienAbductionAgency._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1359) is too similar to AlienAbductionAgency._transferToExcluded(address,address,uint256).tTransferAmount (#1234)
Variable AlienAbductionAgency._transferFromExcluded(address,address,uint256).rTransferAmount (#1253) is too similar to AlienAbductionAgency._getTValues(uint256).tTransferAmount (#1338)
Variable AlienAbductionAgency._transferToExcluded(address,address,uint256).rTransferAmount (#1232) is too similar to AlienAbductionAgency._transferBothExcluded(address,address,uint256).tTransferAmount (#1276)
Variable AlienAbductionAgency._transferStandard(address,address,uint256).rTransferAmount (#1212) is too similar to AlienAbductionAgency._getValues(uint256).tTransferAmount (#1307)
Variable AlienAbductionAgency._transferBothExcluded(address,address,uint256).rTransferAmount (#1274) is too similar to AlienAbductionAgency._getTValues(uint256).tTransferAmount (#1338)
Variable AlienAbductionAgency._getValues(uint256).rTransferAmount (#1311) is too similar to AlienAbductionAgency._getTValues(uint256).tTransferAmount (#1338)
Variable AlienAbductionAgency._transferStandard(address,address,uint256).rTransferAmount (#1212) is too similar to AlienAbductionAgency._transferBothExcluded(address,address,uint256).tTransferAmount (#1276)
Variable AlienAbductionAgency._transferStandard(address,address,uint256).rTransferAmount (#1212) is too similar to AlienAbductionAgency._transferStandard(address,address,uint256).tTransferAmount (#1214)
Variable AlienAbductionAgency._getValues(uint256).rTransferAmount (#1311) is too similar to AlienAbductionAgency._transferFromExcluded(address,address,uint256).tTransferAmount (#1255)
Variable AlienAbductionAgency._transferToExcluded(address,address,uint256).rTransferAmount (#1232) is too similar to AlienAbductionAgency._getTValues(uint256).tTransferAmount (#1338)
Prevent variables from having similar names.

Additional information: link

AlienAbductionAgency.slitherConstructorVariables() (#613-1543) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#626-627)
AlienAbductionAgency.slitherConstructorVariables() (#613-1543) uses literals with too many digits:
- gasMaxLimit = 50000000 (#682)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (#223) is never used in AlienAbductionAgency (#613-1543)
Remove unused state variables.

Additional information: link

AlienAbductionAgency.minimumTokensBeforeSwap (#694) should be constant
Ownable._lockTime (#224) should be constant
Ownable._previousOwner (#223) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#260-262)
getTime() should be declared external:
- Ownable.getTime() (#264-266)
setSwapAndLiquifyEnabled(bool) should be declared external:
- AlienAbductionAgency.setSwapAndLiquifyEnabled(bool) (#1492-1495)
Use the external attribute for functions never called from the contract.

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.


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 AAA