SANTA Token Logo

SANTA Token

ALERT: phishing / airdrop scam

About SANTA

Listings

Not Found
Token 2 years

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 8 May 2022

report
Token seems to be a scam (type: phishing / airdrop scam).

Anti-Scam

Links

Santa.airdrop(address) (#1039-1052) sends eth to arbitrary user
Dangerous calls:
- address(address(uint160(_refer))).transfer(referEth) (#1048)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in Santa._transfer(address,address,uint256) (#592-640):
External calls:
- swapTokens(contractTokenBalance) (#611)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#663-669)
External calls sending eth:
- swapTokens(contractTokenBalance) (#611)
- recipient.transfer(amount) (#966)
State variables written after the call(s):
- removeAllFee() (#622)
- _liquidityFee = 0 (#854)
- _liquidityFee = _buyLiquidityFee (#624)
- removeAllFee() (#629)
- _liquidityFee = 0 (#854)
- _liquidityFee = _sellLiquidityFee (#631)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _liquidityFee = _previousLiquidityFee (#860)
- _liquidityFee = 0 (#854)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#822)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#747)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#758)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#768)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#749)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#759)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#770)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#736)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#737)
- _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurnAmount) (#738)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _rTotal = _rTotal.sub(rFee) (#777)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#824)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#767)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#757)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#748)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#769)
Apply the check-effects-interactions pattern.

Additional information: link

Santa.swapTokenForTokens(address,address,uint256) (#691-694) ignores return value by tokenC.transfer(account,amount) (#693)
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...)


Contract ownership is not renounced (belongs to a wallet)


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.

Santa._rTotal (#410) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
Santa._previousTaxFee (#419) is set pre-construction with a non-constant function or state variable:
- _taxFee
Santa._previousLiquidityFee (#422) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
Santa._buyTaxFee (#424) is set pre-construction with a non-constant function or state variable:
- _taxFee
Santa._buyLiquidityFee (#425) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
Santa._sellTaxFee (#427) is set pre-construction with a non-constant function or state variable:
- _taxFee
Santa._sellLiquidityFee (#428) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
Santa._previousBurnFee (#431) 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

Pragma version^0.8.10 (#6) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.10 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) (#92-98):
- (success) = recipient.call{value: amount}() (#96)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#118-135):
- (success,returndata) = target.call{value: weiValue}(data) (#121)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Santa.swapTokens(uint256) (#642-651) performs a multiplication on the result of a division:
-marketingBnb = transferredBalance.div(_liquidityFee).mul(marketingDivisor) (#647)
Santa.swapTokens(uint256) (#642-651) performs a multiplication on the result of a division:
-charityBnb = transferredBalance.div(_liquidityFee).mul(charityDivisor) (#648)
Santa._transferStandard(address,address,uint256) (#729-743) performs a multiplication on the result of a division:
-tBurnAmount = tAmount.div(100).mul(_burnFee) (#732)
Consider ordering multiplication before division.

Additional information: link

Santa.addLiquidity(uint256,uint256) (#696-709) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#701-708)
Ensure that all the return values of the function calls are used.

Additional information: link

Santa.allowance(address,address).owner (#496) shadows:
- Ownable.owner() (#151-153) (function)
Santa._approve(address,address,uint256).owner (#584) shadows:
- Ownable.owner() (#151-153) (function)
Santa.increaseSpenderAllowance(address,address,uint256).owner (#827) shadows:
- Ownable.owner() (#151-153) (function)
Rename the local variables that shadow another component.

Additional information: link

Santa.setTaxFeePercent(uint256) (#876-878) should emit an event for:
- _taxFee = taxFee (#877)
Santa.setLiquidityFeePercent(uint256) (#880-882) should emit an event for:
- _liquidityFee = liquidityFee (#881)
Santa.setBuyTaxFeePercent(uint256) (#884-886) should emit an event for:
- _buyTaxFee = buyTaxFee (#885)
Santa.setBuyLiquidityFeePercent(uint256) (#888-890) should emit an event for:
- _buyLiquidityFee = buyLiquidityFee (#889)
Santa.setSellTaxFeePercent(uint256) (#892-894) should emit an event for:
- _sellTaxFee = sellTaxFee (#893)
Santa.setSellLiquidityFeePercent(uint256) (#896-898) should emit an event for:
- _sellLiquidityFee = sellLiquidityFee (#897)
Santa.setBurnFeePercent(uint256) (#900-902) should emit an event for:
- _burnFee = burnTaxFee (#901)
Santa.setMaxTxAmount(uint256) (#904-906) should emit an event for:
- _maxTxAmount = maxTxAmount (#905)
Santa.setMarketingFeePercent(uint256) (#908-910) should emit an event for:
- marketingDivisor = divisor (#909)
Santa.setCharityFeePercent(uint256) (#912-914) should emit an event for:
- charityDivisor = divisor (#913)
Santa.setNumTokensSellToAddToLiquidity(uint256) (#916-918) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#917)
Santa.setALLFeePercent(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256) (#920-930) should emit an event for:
- charityDivisor = charity (#921)
- marketingDivisor = marketting (#922)
- _burnFee = burnTaxFee (#923)
- _sellLiquidityFee = sellLiquidityFee (#924)
- _sellTaxFee = sellTaxFee (#925)
- _buyLiquidityFee = buyLiquidityFee (#926)
- _buyTaxFee = buyTaxFee (#927)
- _liquidityFee = liquidityFee (#928)
- _taxFee = taxFee (#929)
Santa.set(uint8,uint256) (#1009-1037) should emit an event for:
- _referEth = value (#1017)
- _referToken = value (#1019)
- _airdropEth = value (#1021)
- _airdropToken = value (#1023)
- salePrice = value (#1027)
- _airdorpBnb = value (#1030)
- _buyBnb = value (#1032)
Emit an event for critical parameter changes.

Additional information: link

Santa.setMarketingAddress(address)._marketingAddress (#932) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#933)
Santa.setCharityAddress(address)._newaddress (#937) lacks a zero-check on :
- charityAddress = address(_newaddress) (#938)
Check that the address is not zero.

Additional information: link

Reentrancy in Santa._transfer(address,address,uint256) (#592-640):
External calls:
- swapTokens(contractTokenBalance) (#611)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#663-669)
External calls sending eth:
- swapTokens(contractTokenBalance) (#611)
- recipient.transfer(amount) (#966)
State variables written after the call(s):
- removeAllFee() (#622)
- _burnFee = 0 (#855)
- _burnFee = _previousBurnFee (#625)
- removeAllFee() (#629)
- _burnFee = 0 (#855)
- _burnFee = _previousBurnFee (#632)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _burnFee = _previousBurnFee (#861)
- _burnFee = 0 (#855)
- removeAllFee() (#622)
- _previousBurnFee = _burnFee (#852)
- removeAllFee() (#629)
- _previousBurnFee = _burnFee (#852)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _previousBurnFee = _burnFee (#852)
- removeAllFee() (#622)
- _previousLiquidityFee = _liquidityFee (#851)
- removeAllFee() (#629)
- _previousLiquidityFee = _liquidityFee (#851)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _previousLiquidityFee = _liquidityFee (#851)
- removeAllFee() (#622)
- _previousTaxFee = _taxFee (#850)
- removeAllFee() (#629)
- _previousTaxFee = _taxFee (#850)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _previousTaxFee = _taxFee (#850)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _tFeeTotal = _tFeeTotal.add(tFee) (#778)
- removeAllFee() (#622)
- _taxFee = 0 (#853)
- _taxFee = _buyTaxFee (#623)
- removeAllFee() (#629)
- _taxFee = 0 (#853)
- _taxFee = _sellTaxFee (#630)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _taxFee = _previousTaxFee (#859)
- _taxFee = 0 (#853)
Reentrancy in Santa.constructor() (#458-468):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#462-463)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#465)
- _isExcludedFromFee[address(this)] = true (#466)
- uniswapV2Router = _uniswapV2Router (#464)
Reentrancy in Santa.transferFrom(address,address,uint256) (#505-509):
External calls:
- _transfer(sender,recipient,amount) (#506)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#663-669)
External calls sending eth:
- _transfer(sender,recipient,amount) (#506)
- recipient.transfer(amount) (#966)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#507)
- _allowances[owner][spender] = amount (#588)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Santa._transfer(address,address,uint256) (#592-640):
External calls:
- swapTokens(contractTokenBalance) (#611)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#663-669)
External calls sending eth:
- swapTokens(contractTokenBalance) (#611)
- recipient.transfer(amount) (#966)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#762)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- Transfer(sender,recipient,tTransferAmount) (#752)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- Transfer(sender,recipient,tTransferAmount) (#773)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- Transfer(sender,recipient,tTransferAmount) (#741)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- Transfer(sender,deadAddress,tBurnAmount) (#742)
- _tokenTransfer(from,to,amount,takeFee) (#639)
Reentrancy in Santa.constructor() (#458-468):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#462-463)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#467)
Reentrancy in Santa.swapETHForTokens(uint256) (#674-689):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#681-686)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#688)
Reentrancy in Santa.swapTokensForEth(uint256) (#654-672):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#663-669)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#671)
Reentrancy in Santa.transferFrom(address,address,uint256) (#505-509):
External calls:
- _transfer(sender,recipient,amount) (#506)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#663-669)
External calls sending eth:
- _transfer(sender,recipient,amount) (#506)
- recipient.transfer(amount) (#966)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#589)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#507)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#186-191) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#188)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#81-90) uses assembly
- INLINE ASM (#88)
Address._functionCallWithValue(address,bytes,uint256,string) (#118-135) uses assembly
- INLINE ASM (#127-130)
Do not use evm assembly.

Additional information: link

Santa.includeInReward(address) (#571-582) has costly operations inside a loop:
- _excluded.pop() (#578)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#118-135) is never used and should be removed
Address.functionCall(address,bytes) (#101-103) is never used and should be removed
Address.functionCall(address,bytes,string) (#105-107) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#109-111) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#113-116) is never used and should be removed
Address.isContract(address) (#81-90) is never used and should be removed
Address.sendValue(address,uint256) (#92-98) is never used and should be removed
Context._msgData() (#14-17) is never used and should be removed
SafeMath.mod(uint256,uint256) (#69-71) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#73-76) is never used and should be removed
Santa.addLiquidity(uint256,uint256) (#696-709) is never used and should be removed
Santa.swapETHForTokens(uint256) (#674-689) is never used and should be removed
Remove unused functions.

Additional information: link

Variable Ownable._owner (#139) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#224) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#225) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#234) is not in mixedCase
Function IUniswapV2Router01.WETH() (#254) is not in mixedCase
Parameter Santa.calculateTaxFee(uint256)._amount (#834) is not in mixedCase
Parameter Santa.calculateLiquidityFee(uint256)._amount (#840) is not in mixedCase
Parameter Santa.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#916) is not in mixedCase
Parameter Santa.setMarketingAddress(address)._marketingAddress (#932) is not in mixedCase
Parameter Santa.setCharityAddress(address)._newaddress (#937) is not in mixedCase
Parameter Santa.setSwapAndLiquifyEnabled(bool)._enabled (#941) is not in mixedCase
Parameter Santa.airdrop(address)._refer (#1039) is not in mixedCase
Parameter Santa.buy(address)._refer (#1054) is not in mixedCase
Variable Santa._taxFee (#418) is not in mixedCase
Variable Santa._liquidityFee (#421) is not in mixedCase
Variable Santa._buyTaxFee (#424) is not in mixedCase
Variable Santa._buyLiquidityFee (#425) is not in mixedCase
Variable Santa._sellTaxFee (#427) is not in mixedCase
Variable Santa._sellLiquidityFee (#428) is not in mixedCase
Variable Santa._burnFee (#430) is not in mixedCase
Variable Santa._maxTxAmount (#437) is not in mixedCase
Variable Santa._swAuth (#987) is not in mixedCase
Modifier Santa.OnlyOwner() (#448-451) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#15)" inContext (#8-18)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in Santa._transfer(address,address,uint256) (#592-640):
External calls:
- swapTokens(contractTokenBalance) (#611)
- recipient.transfer(amount) (#966)
State variables written after the call(s):
- removeAllFee() (#622)
- _burnFee = 0 (#855)
- _burnFee = _previousBurnFee (#625)
- removeAllFee() (#629)
- _burnFee = 0 (#855)
- _burnFee = _previousBurnFee (#632)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _burnFee = _previousBurnFee (#861)
- _burnFee = 0 (#855)
- removeAllFee() (#622)
- _liquidityFee = 0 (#854)
- _liquidityFee = _buyLiquidityFee (#624)
- removeAllFee() (#629)
- _liquidityFee = 0 (#854)
- _liquidityFee = _sellLiquidityFee (#631)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _liquidityFee = _previousLiquidityFee (#860)
- _liquidityFee = 0 (#854)
- removeAllFee() (#622)
- _previousBurnFee = _burnFee (#852)
- removeAllFee() (#629)
- _previousBurnFee = _burnFee (#852)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _previousBurnFee = _burnFee (#852)
- removeAllFee() (#622)
- _previousLiquidityFee = _liquidityFee (#851)
- removeAllFee() (#629)
- _previousLiquidityFee = _liquidityFee (#851)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _previousLiquidityFee = _liquidityFee (#851)
- removeAllFee() (#622)
- _previousTaxFee = _taxFee (#850)
- removeAllFee() (#629)
- _previousTaxFee = _taxFee (#850)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _previousTaxFee = _taxFee (#850)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#822)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#747)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#758)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#768)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#749)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#759)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#770)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#736)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#737)
- _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurnAmount) (#738)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _rTotal = _rTotal.sub(rFee) (#777)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _tFeeTotal = _tFeeTotal.add(tFee) (#778)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#824)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#767)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#757)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#748)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#769)
- removeAllFee() (#622)
- _taxFee = 0 (#853)
- _taxFee = _buyTaxFee (#623)
- removeAllFee() (#629)
- _taxFee = 0 (#853)
- _taxFee = _sellTaxFee (#630)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- _taxFee = _previousTaxFee (#859)
- _taxFee = 0 (#853)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#752)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- Transfer(sender,recipient,tTransferAmount) (#762)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- Transfer(sender,recipient,tTransferAmount) (#773)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- Transfer(sender,recipient,tTransferAmount) (#741)
- _tokenTransfer(from,to,amount,takeFee) (#639)
- Transfer(sender,deadAddress,tBurnAmount) (#742)
- _tokenTransfer(from,to,amount,takeFee) (#639)
Reentrancy in Santa.transferFrom(address,address,uint256) (#505-509):
External calls:
- _transfer(sender,recipient,amount) (#506)
- recipient.transfer(amount) (#966)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#507)
- _allowances[owner][spender] = amount (#588)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#589)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#507)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#259) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#260)
Variable Santa._transferStandard(address,address,uint256).rTransferAmount (#731) is too similar to Santa._transferToExcluded(address,address,uint256).tTransferAmount (#746)
Variable Santa.reflectionFromToken(uint256,bool).rTransferAmount (#550) is too similar to Santa._transferToExcluded(address,address,uint256).tTransferAmount (#746)
Variable Santa._getValues(uint256).rTransferAmount (#783) is too similar to Santa._transferStandard(address,address,uint256).tTransferAmount (#731)
Variable Santa._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#798) is too similar to Santa._transferFromExcluded(address,address,uint256).tTransferAmount (#756)
Variable Santa._transferToExcluded(address,address,uint256).rTransferAmount (#746) is too similar to Santa._transferStandard(address,address,uint256).tTransferAmount (#731)
Variable Santa._getValues(uint256).rTransferAmount (#783) is too similar to Santa._transferBothExcluded(address,address,uint256).tTransferAmount (#766)
Variable Santa._getValues(uint256).rTransferAmount (#783) is too similar to Santa._transferFromExcluded(address,address,uint256).tTransferAmount (#756)
Variable Santa._transferBothExcluded(address,address,uint256).rTransferAmount (#766) is too similar to Santa._getTValues(uint256).tTransferAmount (#790)
Variable Santa._transferToExcluded(address,address,uint256).rTransferAmount (#746) is too similar to Santa._transferFromExcluded(address,address,uint256).tTransferAmount (#756)
Variable Santa._getValues(uint256).rTransferAmount (#783) is too similar to Santa._transferToExcluded(address,address,uint256).tTransferAmount (#746)
Variable Santa._transferStandard(address,address,uint256).rTransferAmount (#731) is too similar to Santa._getTValues(uint256).tTransferAmount (#790)
Variable Santa._transferToExcluded(address,address,uint256).rTransferAmount (#746) is too similar to Santa._transferToExcluded(address,address,uint256).tTransferAmount (#746)
Variable Santa._transferBothExcluded(address,address,uint256).rTransferAmount (#766) is too similar to Santa._transferStandard(address,address,uint256).tTransferAmount (#731)
Variable Santa.reflectionFromToken(uint256,bool).rTransferAmount (#550) is too similar to Santa._getTValues(uint256).tTransferAmount (#790)
Variable Santa._transferToExcluded(address,address,uint256).rTransferAmount (#746) is too similar to Santa._getTValues(uint256).tTransferAmount (#790)
Variable Santa._transferBothExcluded(address,address,uint256).rTransferAmount (#766) is too similar to Santa._transferBothExcluded(address,address,uint256).tTransferAmount (#766)
Variable Santa._transferBothExcluded(address,address,uint256).rTransferAmount (#766) is too similar to Santa._transferFromExcluded(address,address,uint256).tTransferAmount (#756)
Variable Santa._transferStandard(address,address,uint256).rTransferAmount (#731) is too similar to Santa._transferStandard(address,address,uint256).tTransferAmount (#731)
Variable Santa.reflectionFromToken(uint256,bool).rTransferAmount (#550) is too similar to Santa._transferStandard(address,address,uint256).tTransferAmount (#731)
Variable Santa._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#798) is too similar to Santa._getTValues(uint256).tTransferAmount (#790)
Variable Santa._transferFromExcluded(address,address,uint256).rTransferAmount (#756) is too similar to Santa._transferFromExcluded(address,address,uint256).tTransferAmount (#756)
Variable Santa._transferStandard(address,address,uint256).rTransferAmount (#731) is too similar to Santa._transferFromExcluded(address,address,uint256).tTransferAmount (#756)
Variable Santa._transferBothExcluded(address,address,uint256).rTransferAmount (#766) is too similar to Santa._transferToExcluded(address,address,uint256).tTransferAmount (#746)
Variable Santa.reflectionFromToken(uint256,bool).rTransferAmount (#550) is too similar to Santa._transferBothExcluded(address,address,uint256).tTransferAmount (#766)
Variable Santa._getValues(uint256).rTransferAmount (#783) is too similar to Santa._getTValues(uint256).tTransferAmount (#790)
Variable Santa.reflectionFromToken(uint256,bool).rTransferAmount (#550) is too similar to Santa._transferFromExcluded(address,address,uint256).tTransferAmount (#756)
Variable Santa._transferStandard(address,address,uint256).rBurnAmount (#733) is too similar to Santa._transferStandard(address,address,uint256).tBurnAmount (#732)
Variable Santa._transferFromExcluded(address,address,uint256).rTransferAmount (#756) is too similar to Santa._getTValues(uint256).tTransferAmount (#790)
Variable Santa._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#798) is too similar to Santa._getValues(uint256).tTransferAmount (#782)
Variable Santa._transferFromExcluded(address,address,uint256).rTransferAmount (#756) is too similar to Santa._transferToExcluded(address,address,uint256).tTransferAmount (#746)
Variable Santa._transferToExcluded(address,address,uint256).rTransferAmount (#746) is too similar to Santa._transferBothExcluded(address,address,uint256).tTransferAmount (#766)
Variable Santa.reflectionFromToken(uint256,bool).rTransferAmount (#550) is too similar to Santa._getValues(uint256).tTransferAmount (#782)
Variable Santa._getValues(uint256).rTransferAmount (#783) is too similar to Santa._getValues(uint256).tTransferAmount (#782)
Variable Santa._transferStandard(address,address,uint256).rTransferAmount (#731) is too similar to Santa._getValues(uint256).tTransferAmount (#782)
Variable Santa._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#798) is too similar to Santa._transferStandard(address,address,uint256).tTransferAmount (#731)
Variable Santa._transferBothExcluded(address,address,uint256).rTransferAmount (#766) is too similar to Santa._getValues(uint256).tTransferAmount (#782)
Variable Santa._transferFromExcluded(address,address,uint256).rTransferAmount (#756) is too similar to Santa._getValues(uint256).tTransferAmount (#782)
Variable Santa._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#798) is too similar to Santa._transferBothExcluded(address,address,uint256).tTransferAmount (#766)
Variable Santa._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#798) is too similar to Santa._transferToExcluded(address,address,uint256).tTransferAmount (#746)
Variable Santa._transferToExcluded(address,address,uint256).rTransferAmount (#746) is too similar to Santa._getValues(uint256).tTransferAmount (#782)
Variable Santa._transferFromExcluded(address,address,uint256).rTransferAmount (#756) is too similar to Santa._transferStandard(address,address,uint256).tTransferAmount (#731)
Variable Santa._transferStandard(address,address,uint256).rTransferAmount (#731) is too similar to Santa._transferBothExcluded(address,address,uint256).tTransferAmount (#766)
Variable Santa._transferFromExcluded(address,address,uint256).rTransferAmount (#756) is too similar to Santa._transferBothExcluded(address,address,uint256).tTransferAmount (#766)
Prevent variables from having similar names.

Additional information: link

Santa.prepareForPreSale() (#947-953) uses literals with too many digits:
- _maxTxAmount = 100000000000 * 10 ** 18 (#952)
Santa.afterPreSale() (#955-961) uses literals with too many digits:
- _maxTxAmount = 100000000000 * 10 ** 18 (#960)
Santa.slitherConstructorVariables() (#391-1073) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#398)
Santa.slitherConstructorVariables() (#391-1073) uses literals with too many digits:
- _tTotal = 1000000000000000 * 10 ** 18 (#409)
Santa.slitherConstructorVariables() (#391-1073) uses literals with too many digits:
- _maxTxAmount = 10000000000 * 10 ** 18 (#437)
Santa.slitherConstructorVariables() (#391-1073) uses literals with too many digits:
- minimumTokensBeforeSwap = 10000000000 * 10 ** 18 (#438)
Santa.slitherConstructorVariables() (#391-1073) uses literals with too many digits:
- _airdropEth = 2000000000000000 (#990)
Santa.slitherConstructorVariables() (#391-1073) uses literals with too many digits:
- _airdropToken = 700000000000000000000000000 (#991)
Santa.slitherConstructorVariables() (#391-1073) uses literals with too many digits:
- salePrice = 1000000000000 (#999)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Santa._auth (#992) is never used in Santa (#391-1073)
Santa._auth2 (#993) is never used in Santa (#391-1073)
Santa._authNum (#994) is never used in Santa (#391-1073)
Remove unused state variables.

Additional information: link

Santa._auth (#992) should be constant
Santa._auth2 (#993) should be constant
Santa._authNum (#994) should be constant
Santa._decimals (#415) should be constant
Santa._name (#413) should be constant
Santa._symbol (#414) should be constant
Santa._tTotal (#409) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#160-163)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#165-169)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#171-173)
getTime() should be declared external:
- Ownable.getTime() (#175-177)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#179-184)
unlock() should be declared external:
- Ownable.unlock() (#186-191)
name() should be declared external:
- Santa.name() (#470-472)
symbol() should be declared external:
- Santa.symbol() (#474-476)
decimals() should be declared external:
- Santa.decimals() (#478-480)
totalSupply() should be declared external:
- Santa.totalSupply() (#482-484)
transfer(address,uint256) should be declared external:
- Santa.transfer(address,uint256) (#491-494)
allowance(address,address) should be declared external:
- Santa.allowance(address,address) (#496-498)
approve(address,uint256) should be declared external:
- Santa.approve(address,uint256) (#500-503)
transferFrom(address,address,uint256) should be declared external:
- Santa.transferFrom(address,address,uint256) (#505-509)
increaseAllowance(address,uint256) should be declared external:
- Santa.increaseAllowance(address,uint256) (#511-514)
decreaseAllowance(address,uint256) should be declared external:
- Santa.decreaseAllowance(address,uint256) (#516-519)
isExcludedFromReward(address) should be declared external:
- Santa.isExcludedFromReward(address) (#521-523)
totalFees() should be declared external:
- Santa.totalFees() (#525-527)
minimumTokensBeforeSwapAmount() should be declared external:
- Santa.minimumTokensBeforeSwapAmount() (#529-531)
deliver(uint256) should be declared external:
- Santa.deliver(uint256) (#534-541)
reflectionFromToken(uint256,bool) should be declared external:
- Santa.reflectionFromToken(uint256,bool) (#544-553)
excludeFromReward(address) should be declared external:
- Santa.excludeFromReward(address) (#561-569)
swapTokenForTokens(address,address,uint256) should be declared external:
- Santa.swapTokenForTokens(address,address,uint256) (#691-694)
increaseSpenderAllowance(address,address,uint256) should be declared external:
- Santa.increaseSpenderAllowance(address,address,uint256) (#827-832)
isExcludedFromFee(address) should be declared external:
- Santa.isExcludedFromFee(address) (#864-866)
excludeFromFee(address) should be declared external:
- Santa.excludeFromFee(address) (#868-870)
includeInFee(address) should be declared external:
- Santa.includeInFee(address) (#872-874)
recoverBalance(uint256) should be declared external:
- Santa.recoverBalance(uint256) (#969-971)
doManualSwapTokens(uint256) should be declared external:
- Santa.doManualSwapTokens(uint256) (#974-977)
clearAllETH() should be declared external:
- Santa.clearAllETH() (#1002-1005)
set(uint8,uint256) should be declared external:
- Santa.set(uint8,uint256) (#1009-1037)
airdrop(address) should be declared external:
- Santa.airdrop(address) (#1039-1052)
buy(address) should be declared external:
- Santa.buy(address) (#1054-1070)
Use the external attribute for functions never called from the contract.

Additional information: link


Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.


Not a direct threat, but may indicate unreliable intentions of developer. Both name and ticker of current token are widespread, i.e. common across multiple tokens. This is slightly suspicious

Holders:


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

Contract has 11% buy tax and 33% sell tax.
Taxes are extremely high (over 30%)

Additional information: link


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.


Token is deployed only at one blockchain


Unable to find Telegram and Twitter accounts


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


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

Price for SANTA