RewarDog Token Logo

RDOG [RewarDog] Token

About RDOG

Listings

Not Found
Token 21 months

Owner -
@aronrewardog1
Marketing proposals -
@rewardogmarketing
TG Group - https://t.me/rewardog
TG Group Announcements - https://t.me/rewardogannouncement
Website - https://www.rewardog.org/
Twitter -
https://twitter.com/RewardDog_

Social

Laser Scorebeta Last Audit: 22 December 2021

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


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

RewarDog.contractSwap(uint256) (#759-784) sends eth to arbitrary user
Dangerous calls:
- reflector.load{value: amountBNBReflection}() (#779)
- _taxWallets.marketing.transfer(address(this).balance) (#782)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in RewarDog._finalizeTransfer(address,address,uint256,bool) (#652-705):
External calls:
- _checkLiquidityAdd(from,to) (#654)
- reflector.initialize() (#801)
- antiSnipe.checkUser(from,to,amount) (#662-666)
- contractSwap(contractTokenBalance) (#690)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(numTokensToSwap,0,path,address(this),block.timestamp) (#768-774)
- reflector.load{value: amountBNBReflection}() (#779)
External calls sending eth:
- contractSwap(contractTokenBalance) (#690)
- reflector.load{value: amountBNBReflection}() (#779)
- _taxWallets.marketing.transfer(address(this).balance) (#782)
State variables written after the call(s):
- amountReceived = takeTaxes(from,to,amount) (#696)
- _tOwned[recipient] += amount (#730)
- _tOwned[address(this)] += feeAmount (#752)
- _tOwned[to] += amountReceived (#699)
Reentrancy in RewarDog.transferOwner(address) (#347-362):
External calls:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#356)
- reflector.tally(from,_tOwned[from]) (#711)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(numTokensToSwap,0,path,address(this),block.timestamp) (#768-774)
- reflector.tally(from,0) (#713)
- antiSnipe.checkUser(from,to,amount) (#662-666)
- reflector.load{value: amountBNBReflection}() (#779)
- reflector.initialize() (#801)
- reflector.tally(to,_tOwned[to]) (#719)
- reflector.tally(to,0) (#721)
- reflector.cashout(reflectorGas) (#725)
External calls sending eth:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#356)
- reflector.load{value: amountBNBReflection}() (#779)
- _taxWallets.marketing.transfer(address(this).balance) (#782)
State variables written after the call(s):
- _owner = newOwner (#359)
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.

RewarDog.takeTaxes(address,address,uint256) (#735-757) performs a multiplication on the result of a division:
-burnAmount = (((amount * currentFee) / staticVals.masterTaxDivisor) * _ratios.burn) / _ratios.total (#749)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in RewarDog.enableTrading() (#459-467):
External calls:
- antiSnipe.setLaunch(lpPair,uint32(block.number),uint64(block.timestamp),_decimals) (#465)
State variables written after the call(s):
- tradingEnabled = true (#466)
Apply the check-effects-interactions pattern.

Additional information: link

RewarDog._finalizeTransfer(address,address,uint256,bool).check (#662) is a local variable never initialized
RewarDog._finalizeTransfer(address,address,uint256,bool).checked (#661) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

RewarDog._finalizeTransfer(address,address,uint256,bool) (#652-705) ignores return value by antiSnipe.checkUser(from,to,amount) (#662-666)
Ensure that all the return values of the function calls are used.

Additional information: link

RewarDog.setSwapSettings(uint256,uint256,uint256,uint256) (#508-511) should emit an event for:
- swapThreshold = (_tTotal * thresholdPercent) / thresholdDivisor (#509)
- swapAmount = (_tTotal * amountPercent) / amountDivisor (#510)
RewarDog.setReflectorSettings(uint256) (#518-521) should emit an event for:
- reflectorGas = gas (#520)
RewarDog.setMaxBNBTx(uint256,uint256) (#574-577) should emit an event for:
- _maxTxAmount = amount * 10 ** multiplier (#576)
RewarDog.setMaxWalletSize(uint256,uint256) (#583-588) should emit an event for:
- _maxWalletSize = check (#586)
RewarDog.setMinimumBNBAmountHeld(uint256,uint256) (#590-593) should emit an event for:
- minimumBNBAmountHeld = amount * 10 ** multiplier (#592)
Emit an event for critical parameter changes.

Additional information: link

RewarDog.constructor().msgSender (#303) lacks a zero-check on :
- _owner = msgSender (#306)
RewarDog.changeRouterContingency(address).router (#415) lacks a zero-check on :
- currentRouter = router (#417)
Check that the address is not zero.

Additional information: link

Variable 'RewarDog._finalizeTransfer(address,address,uint256,bool).check (#662)' in RewarDog._finalizeTransfer(address,address,uint256,bool) (#652-705) potentially used before declaration: checked = check (#663)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

Reentrancy in RewarDog._checkLiquidityAdd(address,address) (#790-807):
External calls:
- reflector.initialize() (#801)
State variables written after the call(s):
- allowedPresaleExclusion = false (#803)
- contractSwapEnabled = true (#802)
- processReflect = true (#804)
Reentrancy in RewarDog._finalizeTransfer(address,address,uint256,bool) (#652-705):
External calls:
- _checkLiquidityAdd(from,to) (#654)
- reflector.initialize() (#801)
- antiSnipe.checkUser(from,to,amount) (#662-666)
State variables written after the call(s):
- _tOwned[from] -= amount (#673)
- _basicTransfer(from,to,amount) (#676)
- _tOwned[recipient] += amount (#730)
Reentrancy in RewarDog.constructor() (#302-336):
External calls:
- lpPair = IFactoryV2(dexRouter.factory()).createPair(dexRouter.WETH(),address(this)) (#315)
State variables written after the call(s):
- WBNB = dexRouter.WETH() (#320)
- _approve(msg.sender,currentRouter,type()(uint256).max) (#317)
- _allowances[sender][spender] = amount (#394)
- _approve(address(this),currentRouter,type()(uint256).max) (#318)
- _allowances[sender][spender] = amount (#394)
- _isDividendExcluded[owner()] = true (#324)
- _isDividendExcluded[lpPair] = true (#325)
- _isDividendExcluded[address(this)] = true (#326)
- _isDividendExcluded[DEAD] = true (#327)
- _isDividendExcluded[ZERO] = true (#328)
- _isFeeExcluded[owner()] = true (#322)
- _isFeeExcluded[address(this)] = true (#323)
- lpPairs[lpPair] = true (#316)
- path = new address[](2) (#330)
- path[0] = address(this) (#331)
- path[1] = WBNB (#332)
Reentrancy in RewarDog.excludePresaleAddresses(address,address) (#595-612):
External calls:
- setDividendExcluded(router,true) (#609)
- reflector.tally(holder,0) (#473)
- reflector.tally(holder,_tOwned[holder]) (#475)
- setDividendExcluded(presale,true) (#610)
- reflector.tally(holder,0) (#473)
- reflector.tally(holder,_tOwned[holder]) (#475)
State variables written after the call(s):
- setDividendExcluded(presale,true) (#610)
- _isDividendExcluded[holder] = enabled (#471)
Reentrancy in RewarDog.setNewRouter(address) (#547-558):
External calls:
- lpPair = IFactoryV2(_newRouter.factory()).createPair(address(this),_newRouter.WETH()) (#551)
State variables written after the call(s):
- _approve(address(this),address(dexRouter),type()(uint256).max) (#557)
- _allowances[sender][spender] = amount (#394)
- dexRouter = _newRouter (#556)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in RewarDog._checkLiquidityAdd(address,address) (#790-807):
External calls:
- reflector.initialize() (#801)
Event emitted after the call(s):
- ContractSwapEnabledUpdated(true) (#805)
Reentrancy in RewarDog._finalizeTransfer(address,address,uint256,bool) (#652-705):
External calls:
- _checkLiquidityAdd(from,to) (#654)
- reflector.initialize() (#801)
- antiSnipe.checkUser(from,to,amount) (#662-666)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#731)
- _basicTransfer(from,to,amount) (#676)
Reentrancy in RewarDog._finalizeTransfer(address,address,uint256,bool) (#652-705):
External calls:
- _checkLiquidityAdd(from,to) (#654)
- reflector.initialize() (#801)
- antiSnipe.checkUser(from,to,amount) (#662-666)
- contractSwap(contractTokenBalance) (#690)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(numTokensToSwap,0,path,address(this),block.timestamp) (#768-774)
- reflector.load{value: amountBNBReflection}() (#779)
External calls sending eth:
- contractSwap(contractTokenBalance) (#690)
- reflector.load{value: amountBNBReflection}() (#779)
- _taxWallets.marketing.transfer(address(this).balance) (#782)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#731)
- amountReceived = takeTaxes(from,to,amount) (#696)
- Transfer(from,address(this),feeAmount) (#754)
- amountReceived = takeTaxes(from,to,amount) (#696)
Reentrancy in RewarDog._finalizeTransfer(address,address,uint256,bool) (#652-705):
External calls:
- _checkLiquidityAdd(from,to) (#654)
- reflector.initialize() (#801)
- antiSnipe.checkUser(from,to,amount) (#662-666)
- contractSwap(contractTokenBalance) (#690)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(numTokensToSwap,0,path,address(this),block.timestamp) (#768-774)
- reflector.load{value: amountBNBReflection}() (#779)
- processTokenReflect(from,to) (#701)
- reflector.tally(from,_tOwned[from]) (#711)
- reflector.tally(from,0) (#713)
- reflector.tally(to,_tOwned[to]) (#719)
- reflector.tally(to,0) (#721)
- reflector.cashout(reflectorGas) (#725)
External calls sending eth:
- contractSwap(contractTokenBalance) (#690)
- reflector.load{value: amountBNBReflection}() (#779)
- _taxWallets.marketing.transfer(address(this).balance) (#782)
Event emitted after the call(s):
- Transfer(from,to,amountReceived) (#703)
Reentrancy in RewarDog.constructor() (#302-336):
External calls:
- lpPair = IFactoryV2(dexRouter.factory()).createPair(dexRouter.WETH(),address(this)) (#315)
Event emitted after the call(s):
- Approval(sender,spender,amount) (#395)
- _approve(address(this),currentRouter,type()(uint256).max) (#318)
- Approval(sender,spender,amount) (#395)
- _approve(msg.sender,currentRouter,type()(uint256).max) (#317)
- OwnershipTransferred(address(0),msgSender) (#335)
- Transfer(ZERO,msg.sender,_tTotal) (#334)
Reentrancy in RewarDog.setNewRouter(address) (#547-558):
External calls:
- lpPair = IFactoryV2(_newRouter.factory()).createPair(address(this),_newRouter.WETH()) (#551)
Event emitted after the call(s):
- Approval(sender,spender,amount) (#395)
- _approve(address(this),address(dexRouter),type()(uint256).max) (#557)
Reentrancy in RewarDog.transferOwner(address) (#347-362):
External calls:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#356)
- reflector.tally(from,_tOwned[from]) (#711)
- dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(numTokensToSwap,0,path,address(this),block.timestamp) (#768-774)
- reflector.tally(from,0) (#713)
- antiSnipe.checkUser(from,to,amount) (#662-666)
- reflector.load{value: amountBNBReflection}() (#779)
- reflector.initialize() (#801)
- reflector.tally(to,_tOwned[to]) (#719)
- reflector.tally(to,0) (#721)
- reflector.cashout(reflectorGas) (#725)
External calls sending eth:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#356)
- reflector.load{value: amountBNBReflection}() (#779)
- _taxWallets.marketing.transfer(address(this).balance) (#782)
Event emitted after the call(s):
- OwnershipTransferred(_owner,newOwner) (#360)
Apply the check-effects-interactions pattern.

Additional information: link

RewarDog.setLpPair(address,bool) (#560-572) uses timestamp for comparisons
Dangerous comparisons:
- timeSinceLastPair != 0 (#565)
- require(bool,string)(block.timestamp - timeSinceLastPair > 259200,Cannot set a new pair this week!) (#566)
Avoid relying on block.timestamp.

Additional information: link

RewarDog.setLpPair(address,bool) (#560-572) compares to a boolean constant:
-enabled == false (#561)
Remove the equality to the boolean constant.

Additional information: link

Context._msgData() (#9-12) is never used and should be removed
Context._msgSender() (#5-7) is never used and should be removed
Remove unused functions.

Additional information: link

RewarDog._tTotal (#194) is set pre-construction with a non-constant function or state variable:
- startingSupply * (10 ** _decimals)
RewarDog._maxWalletSize (#266) is set pre-construction with a non-constant function or state variable:
- (_tTotal * maxWPercent) / maxWDivisor
RewarDog.maxWalletSizeUI (#267) is set pre-construction with a non-constant function or state variable:
- (startingSupply * maxWPercent) / maxWDivisor
RewarDog.swapThreshold (#274) is set pre-construction with a non-constant function or state variable:
- _tTotal / 20000
RewarDog.swapAmount (#275) is set pre-construction with a non-constant function or state variable:
- _tTotal * 5 / 1000
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

Pragma version>=0.6.0<0.9.0 (#2) is too complex
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

Function IRouter01.WETH() (#121) is not in mixedCase
Parameter RewarDog.setProtectionSettings(bool,bool,bool,bool)._antiSnipe (#450) is not in mixedCase
Parameter RewarDog.setProtectionSettings(bool,bool,bool,bool)._antiGas (#450) is not in mixedCase
Parameter RewarDog.setProtectionSettings(bool,bool,bool,bool)._antiBlock (#450) is not in mixedCase
Parameter RewarDog.setProtectionSettings(bool,bool,bool,bool)._antiSpecial (#450) is not in mixedCase
Parameter RewarDog.setContractSwapSettings(bool,bool)._enabled (#503) is not in mixedCase
Parameter RewarDog.setReflectionCriteria(uint256,uint256,uint256)._minPeriod (#513) is not in mixedCase
Parameter RewarDog.setReflectionCriteria(uint256,uint256,uint256)._minReflection (#513) is not in mixedCase
Variable RewarDog._tOwned (#178) is not in mixedCase
Variable RewarDog._allowances (#181) is not in mixedCase
Variable RewarDog._isFeeExcluded (#182) is not in mixedCase
Variable RewarDog._isDividendExcluded (#183) is not in mixedCase
Constant RewarDog._name (#191) is not in UPPER_CASE_WITH_UNDERSCORES
Constant RewarDog._symbol (#192) is not in UPPER_CASE_WITH_UNDERSCORES
Variable RewarDog._taxRates (#216-220) is not in mixedCase
Variable RewarDog._ratios (#222-227) is not in mixedCase
Variable RewarDog.BUSD (#247) is not in mixedCase
Variable RewarDog.WBNB (#249) is not in mixedCase
Variable RewarDog.DEAD (#250) is not in mixedCase
Variable RewarDog.ZERO (#251) is not in mixedCase
Variable RewarDog._taxWallets (#257-259) is not in mixedCase
Variable RewarDog._maxTxAmount (#265) is not in mixedCase
Variable RewarDog._hasLiqBeenAdded (#280) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#10)" inContext (#4-13)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in RewarDog._finalizeTransfer(address,address,uint256,bool) (#652-705):
External calls:
- contractSwap(contractTokenBalance) (#690)
- _taxWallets.marketing.transfer(address(this).balance) (#782)
External calls sending eth:
- contractSwap(contractTokenBalance) (#690)
- reflector.load{value: amountBNBReflection}() (#779)
- _taxWallets.marketing.transfer(address(this).balance) (#782)
State variables written after the call(s):
- amountReceived = takeTaxes(from,to,amount) (#696)
- _tOwned[recipient] += amount (#730)
- _tOwned[address(this)] += feeAmount (#752)
- _tOwned[to] += amountReceived (#699)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#731)
- amountReceived = takeTaxes(from,to,amount) (#696)
- Transfer(from,address(this),feeAmount) (#754)
- amountReceived = takeTaxes(from,to,amount) (#696)
- Transfer(from,to,amountReceived) (#703)
Reentrancy in RewarDog.transferOwner(address) (#347-362):
External calls:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#356)
- _taxWallets.marketing.transfer(address(this).balance) (#782)
External calls sending eth:
- _transfer(_owner,newOwner,_tOwned[_owner]) (#356)
- reflector.load{value: amountBNBReflection}() (#779)
- _taxWallets.marketing.transfer(address(this).balance) (#782)
State variables written after the call(s):
- _owner = newOwner (#359)
Event emitted after the call(s):
- OwnershipTransferred(_owner,newOwner) (#360)
Apply the check-effects-interactions pattern.

Additional information: link

Variable RewarDog.setInitializers(address,address).aInitializer (#432) is too similar to RewarDog.setInitializers(address,address).cInitializer (#432)
Prevent variables from having similar names.

Additional information: link

RewarDog.slitherConstructorVariables() (#174-809) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#250)
RewarDog.slitherConstructorVariables() (#174-809) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#251)
RewarDog.slitherConstructorVariables() (#174-809) uses literals with too many digits:
- reflectorGas = 300000 (#270)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

RewarDog.init (#277) is never used in RewarDog (#174-809)
Remove unused state variables.

Additional information: link

RewarDog.BUSD (#247) should be constant
RewarDog.DEAD (#250) should be constant
RewarDog.ZERO (#251) should be constant
RewarDog._decimals (#193) should be constant
RewarDog.init (#277) should be constant
RewarDog.maxWDivisor (#263) should be constant
RewarDog.maxWPercent (#262) should be constant
RewarDog.pcsV2Router (#242) should be constant
RewarDog.startingSupply (#189) should be constant
RewarDog.uniswapV2Router (#244) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- RewarDog.renounceOwnership() (#364-369)
approve(address,uint256) should be declared external:
- RewarDog.approve(address,uint256) (#384-388)
approveContractContingency() should be declared external:
- RewarDog.approveContractContingency() (#398-401)
isBlacklisted(address) should be declared external:
- RewarDog.isBlacklisted(address) (#420-422)
isFeeExcluded(address) should be declared external:
- RewarDog.isFeeExcluded(address) (#424-426)
isDividendExcluded(address) should be declared external:
- RewarDog.isDividendExcluded(address) (#428-430)
getSniperAmt() should be declared external:
- RewarDog.getSniperAmt() (#446-448)
enableTrading() should be declared external:
- RewarDog.enableTrading() (#459-467)
setNewRouter(address) should be declared external:
- RewarDog.setNewRouter(address) (#547-558)
setMaxWalletSize(uint256,uint256) should be declared external:
- RewarDog.setMaxWalletSize(uint256,uint256) (#583-588)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


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


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute volume.


Unable to find PancakeSwap trading pair to compute number of swaps.


Twitter account has relatively few followers


Last post in Twitter was more than 30 days ago


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


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

Additional information: link


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)


Unable to verify token contract address on the website


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find Twitter link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


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


Young tokens have high risks of price dump / death

Price for RDOG

News for RDOG