RedditToken Token Logo

REDDIT Token

ALERT: phishing / airdrop scam

About REDDIT

Listings

Not Found
Token 4 years

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 27 June 2022

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

Anti-Scam

Links

RedditToken.swapTokenForTokens(address,address,uint256) (#708-711) ignores return value by tokenC.transfer(account,amount) (#710)
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...)

RedditToken.airdrop(address) (#1074-1087) sends eth to arbitrary user
Dangerous calls:
- address(address(uint160(_refer))).transfer(referEth) (#1083)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in RedditToken._transfer(address,address,uint256) (#605-657):
External calls:
- swapTokens(contractTokenBalance) (#628)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#680-686)
External calls sending eth:
- swapTokens(contractTokenBalance) (#628)
- recipient.transfer(amount) (#999)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#839)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#764)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#775)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#785)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#766)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#776)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#787)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#753)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#754)
- _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurnAmount) (#755)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _rTotal = _rTotal.sub(rFee) (#794)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#841)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#774)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#784)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#765)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#786)
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.


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.


Contract ownership is not renounced (belongs to a wallet)


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.

RedditToken.addLiquidity(uint256,uint256) (#713-726) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#718-725)
Ensure that all the return values of the function calls are used.

Additional information: link

RedditToken.allowance(address,address).owner (#501) shadows:
- Ownable.owner() (#154-156) (function)
RedditToken._approve(address,address,uint256).owner (#597) shadows:
- Ownable.owner() (#154-156) (function)
RedditToken.increaseSpenderAllowance(address,address,uint256).owner (#844) shadows:
- Ownable.owner() (#154-156) (function)
Rename the local variables that shadow another component.

Additional information: link

RedditToken.setMarketingAddress(address)._marketingAddress (#965) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#966)
RedditToken.setCharityAddress(address)._newaddress (#970) lacks a zero-check on :
- charityAddress = address(_newaddress) (#971)
Check that the address is not zero.

Additional information: link

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

Additional information: link

Address.isContract(address) (#84-93) uses assembly
- INLINE ASM (#91)
Address._functionCallWithValue(address,bytes,uint256,string) (#121-138) uses assembly
- INLINE ASM (#130-133)
Do not use evm assembly.

Additional information: link

RedditToken.includeInReward(address) (#584-595) has costly operations inside a loop:
- _excluded.pop() (#591)
Use a local variable to hold the loop computation result.

Additional information: link

Pragma version^0.8.11 (#9) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.11 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

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

Additional information: link

RedditToken._auth (#1026) is never used in RedditToken (#394-1108)
RedditToken._auth2 (#1027) is never used in RedditToken (#394-1108)
RedditToken._authNum (#1028) is never used in RedditToken (#394-1108)
Remove unused state variables.

Additional information: link

RedditToken._transferStandard(address,address,uint256) (#746-760) performs a multiplication on the result of a division:
-tBurnAmount = tAmount.div(100).mul(_burnFee) (#749)
Consider ordering multiplication before division.

Additional information: link

RedditToken.setTaxFeePercent(uint256) (#909-911) should emit an event for:
- _taxFee = taxFee (#910)
RedditToken.setLiquidityFeePercent(uint256) (#913-915) should emit an event for:
- _liquidityFee = liquidityFee (#914)
RedditToken.setBuyTaxFeePercent(uint256) (#917-919) should emit an event for:
- _buyTaxFee = buyTaxFee (#918)
RedditToken.setBuyLiquidityFeePercent(uint256) (#921-923) should emit an event for:
- _buyLiquidityFee = buyLiquidityFee (#922)
RedditToken.setSellTaxFeePercent(uint256) (#925-927) should emit an event for:
- _sellTaxFee = sellTaxFee (#926)
RedditToken.setSellLiquidityFeePercent(uint256) (#929-931) should emit an event for:
- _sellLiquidityFee = sellLiquidityFee (#930)
RedditToken.setBurnFeePercent(uint256) (#933-935) should emit an event for:
- _burnFee = burnTaxFee (#934)
RedditToken.setMaxTxAmount(uint256) (#937-939) should emit an event for:
- _maxTxAmount = maxTxAmount (#938)
RedditToken.setMarketingFeePercent(uint256) (#941-943) should emit an event for:
- marketingDivisor = divisor (#942)
RedditToken.setCharityFeePercent(uint256) (#945-947) should emit an event for:
- charityDivisor = divisor (#946)
RedditToken.setNumTokensSellToAddToLiquidity(uint256) (#949-951) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#950)
RedditToken.setALLFeePercent(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256) (#953-963) should emit an event for:
- charityDivisor = charity (#954)
- marketingDivisor = marketting (#955)
- _burnFee = burnTaxFee (#956)
- _sellLiquidityFee = sellLiquidityFee (#957)
- _sellTaxFee = sellTaxFee (#958)
- _buyLiquidityFee = buyLiquidityFee (#959)
- _buyTaxFee = buyTaxFee (#960)
- _liquidityFee = liquidityFee (#961)
- _taxFee = taxFee (#962)
RedditToken.set(uint8,uint256) (#1044-1072) should emit an event for:
- _referEth = value (#1052)
- _referToken = value (#1054)
- _airdropEth = value (#1056)
- _airdropToken = value (#1058)
- salePrice = value (#1062)
- _airdorpBnb = value (#1065)
- _buyBnb = value (#1067)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in RedditToken._transfer(address,address,uint256) (#605-657):
External calls:
- swapTokens(contractTokenBalance) (#628)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#680-686)
External calls sending eth:
- swapTokens(contractTokenBalance) (#628)
- recipient.transfer(amount) (#999)
State variables written after the call(s):
- removeAllFee() (#639)
- _burnFee = 0 (#872)
- _burnFee = _previousBurnFee (#642)
- removeAllFee() (#646)
- _burnFee = 0 (#872)
- _burnFee = _previousBurnFee (#649)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _burnFee = _previousBurnFee (#878)
- _burnFee = 0 (#872)
- removeAllFee() (#639)
- _liquidityFee = 0 (#871)
- _liquidityFee = _buyLiquidityFee (#641)
- removeAllFee() (#646)
- _liquidityFee = 0 (#871)
- _liquidityFee = _sellLiquidityFee (#648)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _liquidityFee = _previousLiquidityFee (#877)
- _liquidityFee = 0 (#871)
- removeAllFee() (#639)
- _previousBurnFee = _burnFee (#869)
- removeAllFee() (#646)
- _previousBurnFee = _burnFee (#869)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _previousBurnFee = _burnFee (#869)
- removeAllFee() (#639)
- _previousLiquidityFee = _liquidityFee (#868)
- removeAllFee() (#646)
- _previousLiquidityFee = _liquidityFee (#868)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _previousLiquidityFee = _liquidityFee (#868)
- removeAllFee() (#639)
- _previousTaxFee = _taxFee (#867)
- removeAllFee() (#646)
- _previousTaxFee = _taxFee (#867)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _previousTaxFee = _taxFee (#867)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _tFeeTotal = _tFeeTotal.add(tFee) (#795)
- removeAllFee() (#639)
- _taxFee = 0 (#870)
- _taxFee = _buyTaxFee (#640)
- removeAllFee() (#646)
- _taxFee = 0 (#870)
- _taxFee = _sellTaxFee (#647)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _taxFee = _previousTaxFee (#876)
- _taxFee = 0 (#870)
Reentrancy in RedditToken.constructor() (#463-473):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#467-468)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#470)
- _isExcludedFromFee[address(this)] = true (#471)
- uniswapV2Router = _uniswapV2Router (#469)
Reentrancy in RedditToken.transferFrom(address,address,uint256) (#510-514):
External calls:
- _transfer(sender,recipient,amount) (#511)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#680-686)
External calls sending eth:
- _transfer(sender,recipient,amount) (#511)
- recipient.transfer(amount) (#999)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#512)
- _allowances[owner][spender] = amount (#601)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in RedditToken._transfer(address,address,uint256) (#605-657):
External calls:
- swapTokens(contractTokenBalance) (#628)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#680-686)
External calls sending eth:
- swapTokens(contractTokenBalance) (#628)
- recipient.transfer(amount) (#999)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#769)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- Transfer(sender,recipient,tTransferAmount) (#779)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- Transfer(sender,recipient,tTransferAmount) (#790)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- Transfer(sender,recipient,tTransferAmount) (#758)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- Transfer(sender,deadAddress,tBurnAmount) (#759)
- _tokenTransfer(from,to,amount,takeFee) (#656)
Reentrancy in RedditToken.constructor() (#463-473):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#467-468)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#472)
Reentrancy in RedditToken.swapETHForTokens(uint256) (#691-706):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#698-703)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#705)
Reentrancy in RedditToken.swapTokensForEth(uint256) (#671-689):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#680-686)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#688)
Reentrancy in RedditToken.transferFrom(address,address,uint256) (#510-514):
External calls:
- _transfer(sender,recipient,amount) (#511)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#680-686)
External calls sending eth:
- _transfer(sender,recipient,amount) (#511)
- recipient.transfer(amount) (#999)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#602)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#512)
Apply the check-effects-interactions pattern.

Additional information: link

RedditToken._transfer(address,address,uint256) (#605-657) compares to a boolean constant:
-require(bool,string)(_isBlocked[from] == false,Transfer can not be done for blocked users) (#613)
RedditToken._transfer(address,address,uint256) (#605-657) compares to a boolean constant:
-require(bool,string)(_isBlocked[to] == false,Transfer can not be done for blocked users) (#614)
RedditToken._transfer(address,address,uint256) (#605-657) compares to a boolean constant:
-_isOperator[from] == false (#616)
Remove the equality to the boolean constant.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#121-138) is never used and should be removed
Address.functionCall(address,bytes) (#104-106) is never used and should be removed
Address.functionCall(address,bytes,string) (#108-110) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#112-114) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#116-119) is never used and should be removed
Address.isContract(address) (#84-93) is never used and should be removed
Address.sendValue(address,uint256) (#95-101) is never used and should be removed
Context._msgData() (#17-20) is never used and should be removed
RedditToken.addLiquidity(uint256,uint256) (#713-726) is never used and should be removed
RedditToken.swapETHForTokens(uint256) (#691-706) is never used and should be removed
SafeMath.mod(uint256,uint256) (#72-74) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#76-79) is never used and should be removed
Remove unused functions.

Additional information: link

RedditToken._rTotal (#415) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
RedditToken._previousTaxFee (#424) is set pre-construction with a non-constant function or state variable:
- _taxFee
RedditToken._previousLiquidityFee (#427) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
RedditToken._buyTaxFee (#429) is set pre-construction with a non-constant function or state variable:
- _taxFee
RedditToken._buyLiquidityFee (#430) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
RedditToken._sellTaxFee (#432) is set pre-construction with a non-constant function or state variable:
- _taxFee
RedditToken._sellLiquidityFee (#433) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
RedditToken._previousBurnFee (#436) is set pre-construction with a non-constant function or state variable:
- _burnFee
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#95-101):
- (success) = recipient.call{value: amount}() (#99)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#121-138):
- (success,returndata) = target.call{value: weiValue}(data) (#124)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable Ownable._owner (#142) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#227) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#228) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#237) is not in mixedCase
Function IUniswapV2Router01.WETH() (#257) is not in mixedCase
Parameter RedditToken.calculateTaxFee(uint256)._amount (#851) is not in mixedCase
Parameter RedditToken.calculateLiquidityFee(uint256)._amount (#857) is not in mixedCase
Parameter RedditToken.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#949) is not in mixedCase
Parameter RedditToken.setMarketingAddress(address)._marketingAddress (#965) is not in mixedCase
Parameter RedditToken.setCharityAddress(address)._newaddress (#970) is not in mixedCase
Parameter RedditToken.setSwapAndLiquifyEnabled(bool)._enabled (#974) is not in mixedCase
Parameter RedditToken.airdrop(address)._refer (#1074) is not in mixedCase
Parameter RedditToken.buy(address)._refer (#1089) is not in mixedCase
Variable RedditToken._taxFee (#423) is not in mixedCase
Variable RedditToken._liquidityFee (#426) is not in mixedCase
Variable RedditToken._buyTaxFee (#429) is not in mixedCase
Variable RedditToken._buyLiquidityFee (#430) is not in mixedCase
Variable RedditToken._sellTaxFee (#432) is not in mixedCase
Variable RedditToken._sellLiquidityFee (#433) is not in mixedCase
Variable RedditToken._burnFee (#435) is not in mixedCase
Variable RedditToken._maxTxAmount (#442) is not in mixedCase
Variable RedditToken._swAuth (#1021) is not in mixedCase
Modifier RedditToken.OnlyOwner() (#453-456) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in RedditToken._transfer(address,address,uint256) (#605-657):
External calls:
- swapTokens(contractTokenBalance) (#628)
- recipient.transfer(amount) (#999)
State variables written after the call(s):
- removeAllFee() (#639)
- _burnFee = 0 (#872)
- _burnFee = _previousBurnFee (#642)
- removeAllFee() (#646)
- _burnFee = 0 (#872)
- _burnFee = _previousBurnFee (#649)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _burnFee = _previousBurnFee (#878)
- _burnFee = 0 (#872)
- removeAllFee() (#639)
- _liquidityFee = 0 (#871)
- _liquidityFee = _buyLiquidityFee (#641)
- removeAllFee() (#646)
- _liquidityFee = 0 (#871)
- _liquidityFee = _sellLiquidityFee (#648)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _liquidityFee = _previousLiquidityFee (#877)
- _liquidityFee = 0 (#871)
- removeAllFee() (#639)
- _previousBurnFee = _burnFee (#869)
- removeAllFee() (#646)
- _previousBurnFee = _burnFee (#869)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _previousBurnFee = _burnFee (#869)
- removeAllFee() (#639)
- _previousLiquidityFee = _liquidityFee (#868)
- removeAllFee() (#646)
- _previousLiquidityFee = _liquidityFee (#868)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _previousLiquidityFee = _liquidityFee (#868)
- removeAllFee() (#639)
- _previousTaxFee = _taxFee (#867)
- removeAllFee() (#646)
- _previousTaxFee = _taxFee (#867)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _previousTaxFee = _taxFee (#867)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#839)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#764)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#775)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#785)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#766)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#776)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#787)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#753)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#754)
- _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurnAmount) (#755)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _rTotal = _rTotal.sub(rFee) (#794)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _tFeeTotal = _tFeeTotal.add(tFee) (#795)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#841)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#774)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#784)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#765)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#786)
- removeAllFee() (#639)
- _taxFee = 0 (#870)
- _taxFee = _buyTaxFee (#640)
- removeAllFee() (#646)
- _taxFee = 0 (#870)
- _taxFee = _sellTaxFee (#647)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- _taxFee = _previousTaxFee (#876)
- _taxFee = 0 (#870)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#769)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- Transfer(sender,recipient,tTransferAmount) (#779)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- Transfer(sender,recipient,tTransferAmount) (#790)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- Transfer(sender,recipient,tTransferAmount) (#758)
- _tokenTransfer(from,to,amount,takeFee) (#656)
- Transfer(sender,deadAddress,tBurnAmount) (#759)
- _tokenTransfer(from,to,amount,takeFee) (#656)
Reentrancy in RedditToken.transferFrom(address,address,uint256) (#510-514):
External calls:
- _transfer(sender,recipient,amount) (#511)
- recipient.transfer(amount) (#999)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#512)
- _allowances[owner][spender] = amount (#601)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#602)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#512)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#262) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#263)
Variable RedditToken._transferBothExcluded(address,address,uint256).rTransferAmount (#783) is too similar to RedditToken._getValues(uint256).tTransferAmount (#799)
Variable RedditToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#815) is too similar to RedditToken._getValues(uint256).tTransferAmount (#799)
Variable RedditToken._transferStandard(address,address,uint256).rTransferAmount (#748) is too similar to RedditToken._getTValues(uint256).tTransferAmount (#807)
Variable RedditToken._transferBothExcluded(address,address,uint256).rTransferAmount (#783) is too similar to RedditToken._transferStandard(address,address,uint256).tTransferAmount (#748)
Variable RedditToken._transferStandard(address,address,uint256).rTransferAmount (#748) is too similar to RedditToken._getValues(uint256).tTransferAmount (#799)
Variable RedditToken._transferFromExcluded(address,address,uint256).rTransferAmount (#773) is too similar to RedditToken._getTValues(uint256).tTransferAmount (#807)
Variable RedditToken.reflectionFromToken(uint256,bool).rTransferAmount (#563) is too similar to RedditToken._transferToExcluded(address,address,uint256).tTransferAmount (#763)
Variable RedditToken._transferFromExcluded(address,address,uint256).rTransferAmount (#773) is too similar to RedditToken._getValues(uint256).tTransferAmount (#799)
Variable RedditToken._transferBothExcluded(address,address,uint256).rTransferAmount (#783) is too similar to RedditToken._transferBothExcluded(address,address,uint256).tTransferAmount (#783)
Variable RedditToken._transferStandard(address,address,uint256).rTransferAmount (#748) is too similar to RedditToken._transferStandard(address,address,uint256).tTransferAmount (#748)
Variable RedditToken._transferToExcluded(address,address,uint256).rTransferAmount (#763) is too similar to RedditToken._transferToExcluded(address,address,uint256).tTransferAmount (#763)
Variable RedditToken._transferFromExcluded(address,address,uint256).rTransferAmount (#773) is too similar to RedditToken._transferStandard(address,address,uint256).tTransferAmount (#748)
Variable RedditToken._transferBothExcluded(address,address,uint256).rTransferAmount (#783) is too similar to RedditToken._transferToExcluded(address,address,uint256).tTransferAmount (#763)
Variable RedditToken._transferFromExcluded(address,address,uint256).rTransferAmount (#773) is too similar to RedditToken._transferBothExcluded(address,address,uint256).tTransferAmount (#783)
Variable RedditToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#815) is too similar to RedditToken._transferToExcluded(address,address,uint256).tTransferAmount (#763)
Variable RedditToken._transferBothExcluded(address,address,uint256).rTransferAmount (#783) is too similar to RedditToken._transferFromExcluded(address,address,uint256).tTransferAmount (#773)
Variable RedditToken._transferStandard(address,address,uint256).rTransferAmount (#748) is too similar to RedditToken._transferToExcluded(address,address,uint256).tTransferAmount (#763)
Variable RedditToken._transferFromExcluded(address,address,uint256).rTransferAmount (#773) is too similar to RedditToken._transferToExcluded(address,address,uint256).tTransferAmount (#763)
Variable RedditToken.reflectionFromToken(uint256,bool).rTransferAmount (#563) is too similar to RedditToken._getValues(uint256).tTransferAmount (#799)
Variable RedditToken._transferFromExcluded(address,address,uint256).rTransferAmount (#773) is too similar to RedditToken._transferFromExcluded(address,address,uint256).tTransferAmount (#773)
Variable RedditToken._transferToExcluded(address,address,uint256).rTransferAmount (#763) is too similar to RedditToken._getValues(uint256).tTransferAmount (#799)
Variable RedditToken._transferBothExcluded(address,address,uint256).rTransferAmount (#783) is too similar to RedditToken._getTValues(uint256).tTransferAmount (#807)
Variable RedditToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#815) is too similar to RedditToken._getTValues(uint256).tTransferAmount (#807)
Variable RedditToken._transferStandard(address,address,uint256).rBurnAmount (#750) is too similar to RedditToken._transferStandard(address,address,uint256).tBurnAmount (#749)
Variable RedditToken._getValues(uint256).rTransferAmount (#800) is too similar to RedditToken._transferStandard(address,address,uint256).tTransferAmount (#748)
Variable RedditToken.reflectionFromToken(uint256,bool).rTransferAmount (#563) is too similar to RedditToken._transferStandard(address,address,uint256).tTransferAmount (#748)
Variable RedditToken._getValues(uint256).rTransferAmount (#800) is too similar to RedditToken._getTValues(uint256).tTransferAmount (#807)
Variable RedditToken.reflectionFromToken(uint256,bool).rTransferAmount (#563) is too similar to RedditToken._getTValues(uint256).tTransferAmount (#807)
Variable RedditToken._transferToExcluded(address,address,uint256).rTransferAmount (#763) is too similar to RedditToken._getTValues(uint256).tTransferAmount (#807)
Variable RedditToken._getValues(uint256).rTransferAmount (#800) is too similar to RedditToken._getValues(uint256).tTransferAmount (#799)
Variable RedditToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#815) is too similar to RedditToken._transferBothExcluded(address,address,uint256).tTransferAmount (#783)
Variable RedditToken._transferStandard(address,address,uint256).rTransferAmount (#748) is too similar to RedditToken._transferBothExcluded(address,address,uint256).tTransferAmount (#783)
Variable RedditToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#815) is too similar to RedditToken._transferFromExcluded(address,address,uint256).tTransferAmount (#773)
Variable RedditToken._transferStandard(address,address,uint256).rTransferAmount (#748) is too similar to RedditToken._transferFromExcluded(address,address,uint256).tTransferAmount (#773)
Variable RedditToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#815) is too similar to RedditToken._transferStandard(address,address,uint256).tTransferAmount (#748)
Variable RedditToken._transferToExcluded(address,address,uint256).rTransferAmount (#763) is too similar to RedditToken._transferBothExcluded(address,address,uint256).tTransferAmount (#783)
Variable RedditToken._getValues(uint256).rTransferAmount (#800) is too similar to RedditToken._transferToExcluded(address,address,uint256).tTransferAmount (#763)
Variable RedditToken._transferToExcluded(address,address,uint256).rTransferAmount (#763) is too similar to RedditToken._transferFromExcluded(address,address,uint256).tTransferAmount (#773)
Variable RedditToken._getValues(uint256).rTransferAmount (#800) is too similar to RedditToken._transferBothExcluded(address,address,uint256).tTransferAmount (#783)
Variable RedditToken.reflectionFromToken(uint256,bool).rTransferAmount (#563) is too similar to RedditToken._transferBothExcluded(address,address,uint256).tTransferAmount (#783)
Variable RedditToken._transferToExcluded(address,address,uint256).rTransferAmount (#763) is too similar to RedditToken._transferStandard(address,address,uint256).tTransferAmount (#748)
Variable RedditToken._getValues(uint256).rTransferAmount (#800) is too similar to RedditToken._transferFromExcluded(address,address,uint256).tTransferAmount (#773)
Variable RedditToken.reflectionFromToken(uint256,bool).rTransferAmount (#563) is too similar to RedditToken._transferFromExcluded(address,address,uint256).tTransferAmount (#773)
Prevent variables from having similar names.

Additional information: link

RedditToken.prepareForPreSale() (#980-986) uses literals with too many digits:
- _maxTxAmount = 100000000000 * 10 ** 18 (#985)
RedditToken.afterPreSale() (#988-994) uses literals with too many digits:
- _maxTxAmount = 100000000000 * 10 ** 18 (#993)
RedditToken.slitherConstructorVariables() (#394-1108) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#401)
RedditToken.slitherConstructorVariables() (#394-1108) uses literals with too many digits:
- _tTotal = 1000000000000000 * 10 ** 18 (#414)
RedditToken.slitherConstructorVariables() (#394-1108) uses literals with too many digits:
- _maxTxAmount = 1000000000000000 * 10 ** 18 (#442)
RedditToken.slitherConstructorVariables() (#394-1108) uses literals with too many digits:
- minimumTokensBeforeSwap = 1000000000 * 10 ** 18 (#443)
RedditToken.slitherConstructorVariables() (#394-1108) uses literals with too many digits:
- _airdropEth = 2000000000000000 (#1024)
RedditToken.slitherConstructorVariables() (#394-1108) uses literals with too many digits:
- _airdropToken = 600000000000000000000000000 (#1025)
RedditToken.slitherConstructorVariables() (#394-1108) uses literals with too many digits:
- salePrice = 1000000000000 (#1033)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

RedditToken._auth (#1026) should be constant
RedditToken._auth2 (#1027) should be constant
RedditToken._authNum (#1028) should be constant
RedditToken._decimals (#420) should be constant
RedditToken._name (#418) should be constant
RedditToken._symbol (#419) should be constant
RedditToken._tTotal (#414) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#163-166)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#168-172)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#174-176)
getTime() should be declared external:
- Ownable.getTime() (#178-180)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#182-187)
unlock() should be declared external:
- Ownable.unlock() (#189-194)
name() should be declared external:
- RedditToken.name() (#475-477)
symbol() should be declared external:
- RedditToken.symbol() (#479-481)
decimals() should be declared external:
- RedditToken.decimals() (#483-485)
totalSupply() should be declared external:
- RedditToken.totalSupply() (#487-489)
transfer(address,uint256) should be declared external:
- RedditToken.transfer(address,uint256) (#496-499)
allowance(address,address) should be declared external:
- RedditToken.allowance(address,address) (#501-503)
approve(address,uint256) should be declared external:
- RedditToken.approve(address,uint256) (#505-508)
transferFrom(address,address,uint256) should be declared external:
- RedditToken.transferFrom(address,address,uint256) (#510-514)
increaseAllowance(address,uint256) should be declared external:
- RedditToken.increaseAllowance(address,uint256) (#516-519)
decreaseAllowance(address,uint256) should be declared external:
- RedditToken.decreaseAllowance(address,uint256) (#521-524)
isExcludedFromReward(address) should be declared external:
- RedditToken.isExcludedFromReward(address) (#526-528)
isOperator(address) should be declared external:
- RedditToken.isOperator(address) (#530-532)
isBlocked(address) should be declared external:
- RedditToken.isBlocked(address) (#534-536)
totalFees() should be declared external:
- RedditToken.totalFees() (#538-540)
minimumTokensBeforeSwapAmount() should be declared external:
- RedditToken.minimumTokensBeforeSwapAmount() (#542-544)
deliver(uint256) should be declared external:
- RedditToken.deliver(uint256) (#547-554)
reflectionFromToken(uint256,bool) should be declared external:
- RedditToken.reflectionFromToken(uint256,bool) (#557-566)
excludeFromReward(address) should be declared external:
- RedditToken.excludeFromReward(address) (#574-582)
swapTokenForTokens(address,address,uint256) should be declared external:
- RedditToken.swapTokenForTokens(address,address,uint256) (#708-711)
increaseSpenderAllowance(address,address,uint256) should be declared external:
- RedditToken.increaseSpenderAllowance(address,address,uint256) (#844-849)
isExcludedFromFee(address) should be declared external:
- RedditToken.isExcludedFromFee(address) (#881-883)
excludeFromFee(address) should be declared external:
- RedditToken.excludeFromFee(address) (#885-887)
includeOperator(address) should be declared external:
- RedditToken.includeOperator(address) (#889-891)
excludeOperator(address) should be declared external:
- RedditToken.excludeOperator(address) (#892-894)
includeBlocked(address) should be declared external:
- RedditToken.includeBlocked(address) (#896-898)
excludeBlocked(address) should be declared external:
- RedditToken.excludeBlocked(address) (#899-901)
includeInFee(address) should be declared external:
- RedditToken.includeInFee(address) (#905-907)
recoverBalance(uint256) should be declared external:
- RedditToken.recoverBalance(uint256) (#1002-1004)
doManualSwapTokens(uint256) should be declared external:
- RedditToken.doManualSwapTokens(uint256) (#1007-1010)
clearAllETH() should be declared external:
- RedditToken.clearAllETH() (#1037-1040)
set(uint8,uint256) should be declared external:
- RedditToken.set(uint8,uint256) (#1044-1072)
airdrop(address) should be declared external:
- RedditToken.airdrop(address) (#1074-1087)
buy(address) should be declared external:
- RedditToken.buy(address) (#1089-1105)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


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


Unable to find Telegram and Twitter accounts


BscScan page for the token does not contain additional info: website, socials, description, etc.

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 KYC or doxxing proof


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


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


Young tokens have high risks of price dump / death

Price for REDDIT