Ryutama Morales Token Logo

RYM [Ryutama Morales] Token

ALERT: rug pull scam

About RYM

Listings

Not Found
Token 4 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 27 June 2022

report
Token seems to be a scam (type: rug pull scam).

SlotGacorHariIni._splitOtherToken() (#1264-1311) ignores return value by doge.transfer(user,thisAmount.mul(rate).div(10000)) (#1293)
SlotGacorHariIni._splitOtherToken() (#1264-1311) ignores return value by doge.transfer(user,thisAmount.mul(rate).div(10000)) (#1304)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Token is flagged by TokenSniffer due to presence of exploit in contract code


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


Contract ownership is not renounced (belongs to a wallet)

SlotGacorHariIni._transfer(address,address,uint256) (#1154-1203) performs a multiplication on the result of a division:
-super._transfer(from,_receive,amount.div(100).mul(3)) (#1189)
SlotGacorHariIni._transfer(address,address,uint256) (#1154-1203) performs a multiplication on the result of a division:
-amount = amount.div(10).mul(9) (#1195)
SlotGacorHariIni._splitOtherToken() (#1264-1311) performs a multiplication on the result of a division:
-thisAmount = thisAmount.div(5).mul(4) (#1268)
SlotGacorHariIni._splitOtherToken() (#1264-1311) performs a multiplication on the result of a division:
-rate = balanceOf(user).mul(10000).div(totalAmount) (#1302)
-doge.transfer(user,thisAmount.mul(rate).div(10000)) (#1304)
SlotGacorHariIni._splitOtherToken() (#1264-1311) performs a multiplication on the result of a division:
-rate = balanceOf(user).mul(10000).div(totalAmount) (#1291)
-doge.transfer(user,thisAmount.mul(rate).div(10000)) (#1293)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in SlotGacorHariIni._transfer(address,address,uint256) (#1154-1203):
External calls:
- swapAndLiquifyV3(haveAmount) (#1177)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1243-1249)
State variables written after the call(s):
- swapping = false (#1178)
Reentrancy in SlotGacorHariIni._transfer(address,address,uint256) (#1154-1203):
External calls:
- swapAndLiquifyV3(haveAmount) (#1177)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1243-1249)
- _splitOtherToken() (#1182)
- doge.transfer(user,thisAmount.mul(rate).div(10000)) (#1293)
- doge.transfer(user,thisAmount.mul(rate).div(10000)) (#1304)
State variables written after the call(s):
- super._transfer(from,_receive,amount.div(100).mul(3)) (#1189)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#583-586)
- _balances[recipient] = _balances[recipient].add(amount) (#587)
- _balances[sender] = senderAmount.sub(amount) (#598)
- _balances[recipient] = recipientAmount.add(amount) (#599)
- super._transfer(from,address(this),amount.div(20)) (#1191)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#583-586)
- _balances[recipient] = _balances[recipient].add(amount) (#587)
- _balances[sender] = senderAmount.sub(amount) (#598)
- _balances[recipient] = recipientAmount.add(amount) (#599)
- super._transfer(from,uniswapV2Pair,amount.div(50)) (#1193)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#583-586)
- _balances[recipient] = _balances[recipient].add(amount) (#587)
- _balances[sender] = senderAmount.sub(amount) (#598)
- _balances[recipient] = recipientAmount.add(amount) (#599)
- super._transfer(from,to,amount) (#1197)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#583-586)
- _balances[recipient] = _balances[recipient].add(amount) (#587)
- _balances[sender] = senderAmount.sub(amount) (#598)
- _balances[recipient] = recipientAmount.add(amount) (#599)
- buyUser.push(to) (#1201)
Apply the check-effects-interactions pattern.

Additional information: link

SlotGacorHariIni._splitOtherToken().startIndex (#1271) 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

ERC20.allowance(address,address).owner (#419) shadows:
- Ownable.owner() (#282-284) (function)
ERC20._approve(address,address,uint256).owner (#662) shadows:
- Ownable.owner() (#282-284) (function)
Rename the local variables that shadow another component.

Additional information: link

SlotGacorHariIni.setSwapTokensAtAmount(uint256) (#1138-1140) should emit an event for:
- swapTokensAtAmount = _swapTokensAtAmount (#1139)
Emit an event for critical parameter changes.

Additional information: link

Ownable.constructor().msgSender (#274) lacks a zero-check on :
- _owner = msgSender (#275)
SlotGacorHariIni.constructor(address,address).tokenOwner (#1093) lacks a zero-check on :
- _tokenOwner = tokenOwner (#1107)
SlotGacorHariIni.constructor(address,address).root (#1093) lacks a zero-check on :
- _root = root (#1108)
Check that the address is not zero.

Additional information: link

SlotGacorHariIni._splitOtherToken() (#1264-1311) has external calls inside a loop: doge.transfer(user,thisAmount.mul(rate).div(10000)) (#1293)
SlotGacorHariIni._splitOtherToken() (#1264-1311) has external calls inside a loop: doge.transfer(user,thisAmount.mul(rate).div(10000)) (#1304)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in SlotGacorHariIni._transfer(address,address,uint256) (#1154-1203):
External calls:
- swapAndLiquifyV3(haveAmount) (#1177)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1243-1249)
- _splitOtherToken() (#1182)
- doge.transfer(user,thisAmount.mul(rate).div(10000)) (#1293)
- doge.transfer(user,thisAmount.mul(rate).div(10000)) (#1304)
State variables written after the call(s):
- havePush[to] = true (#1200)
Reentrancy in SlotGacorHariIni.constructor(address,address) (#1093-1114):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1098-1099)
State variables written after the call(s):
- _approve(address(this),address(0x10ED43C718714eb63d5aA57B78B54704E256024E),10 ** 35) (#1100)
- _allowances[owner][spender] = amount (#669)
- _mint(tokenOwner,total) (#1113)
- _balances[account] = _balances[account].add(amount) (#618)
- excludeFromFees(tokenOwner,true) (#1105)
- _isExcludedFromFees[account] = excluded (#1126)
- excludeFromFees(address(this),true) (#1106)
- _isExcludedFromFees[account] = excluded (#1126)
- _root = root (#1108)
- _tokenOwner = tokenOwner (#1107)
- _mint(tokenOwner,total) (#1113)
- _totalSupply = _totalSupply.add(amount) (#617)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1104)
- automatedMarketMakerPairs[pair] = value (#1147)
- doge = IERC20(0xd03d50d5D74f67497175bf69c550b36811C695B4) (#1109)
- minBuyAmount = total.div(1000) (#1112)
- swapTokensAtAmount = total.div(1000000) (#1111)
- uniswapV2Pair = _uniswapV2Pair (#1102)
- uniswapV2Router = _uniswapV2Router (#1101)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SlotGacorHariIni._transfer(address,address,uint256) (#1154-1203):
External calls:
- swapAndLiquifyV3(haveAmount) (#1177)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1243-1249)
- _splitOtherToken() (#1182)
- doge.transfer(user,thisAmount.mul(rate).div(10000)) (#1293)
- doge.transfer(user,thisAmount.mul(rate).div(10000)) (#1304)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#588)
- super._transfer(from,uniswapV2Pair,amount.div(50)) (#1193)
- Transfer(sender,recipient,amount) (#588)
- super._transfer(from,_receive,amount.div(100).mul(3)) (#1189)
- Transfer(sender,recipient,amount) (#588)
- super._transfer(from,to,amount) (#1197)
- Transfer(sender,recipient,amount) (#588)
- super._transfer(from,address(this),amount.div(20)) (#1191)
- Transfer(sender,recipient,amount) (#600)
- super._transfer(from,to,amount) (#1197)
- Transfer(sender,recipient,amount) (#600)
- super._transfer(from,address(this),amount.div(20)) (#1191)
- Transfer(sender,recipient,amount) (#600)
- super._transfer(from,uniswapV2Pair,amount.div(50)) (#1193)
- Transfer(sender,recipient,amount) (#600)
- super._transfer(from,_receive,amount.div(100).mul(3)) (#1189)
Reentrancy in SlotGacorHariIni.constructor(address,address) (#1093-1114):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1098-1099)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#670)
- _approve(address(this),address(0x10ED43C718714eb63d5aA57B78B54704E256024E),10 ** 35) (#1100)
- ExcludeFromFees(account,excluded) (#1127)
- excludeFromFees(tokenOwner,true) (#1105)
- ExcludeFromFees(account,excluded) (#1127)
- excludeFromFees(address(this),true) (#1106)
- Transfer(address(0),account,amount) (#619)
- _mint(tokenOwner,total) (#1113)
Apply the check-effects-interactions pattern.

Additional information: link

Context._msgData() (#13-17) is never used and should be removed
ERC20._burn(address,uint256) (#633-644) is never used and should be removed
Remove unused functions.

Additional information: link

solc-0.8.13 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 IUniswapV2Pair.DOMAIN_SEPARATOR() (#53) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#55) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#86) is not in mixedCase
Variable Ownable._root (#263) is not in mixedCase
Function IUniswapV2Router01.WETH() (#853) is not in mixedCase
Parameter SlotGacorHariIni.setSwapTokensAtAmount(uint256)._swapTokensAtAmount (#1138) is not in mixedCase
Parameter SlotGacorHariIni.setSwapAndLiquifyEnabled(bool)._enabled (#1142) is not in mixedCase
Function SlotGacorHariIni._splitOtherToken() (#1264-1311) is not in mixedCase
Variable SlotGacorHariIni._tokenOwner (#1061) is not in mixedCase
Variable SlotGacorHariIni._receive (#1065) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#858) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#859)
Prevent variables from having similar names.

Additional information: link

SlotGacorHariIni.constructor(address,address) (#1093-1114) uses literals with too many digits:
- swapTokensAtAmount = total.div(1000000) (#1111)
SlotGacorHariIni.slitherConstructorVariables() (#1056-1318) uses literals with too many digits:
- _destroyAddress = address(0x000000000000000000000000000000000000dEaD) (#1066)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SlotGacorHariIni._destroyAddress (#1066) is never used in SlotGacorHariIni (#1056-1318)
Remove unused state variables.

Additional information: link

SlotGacorHariIni._destroyAddress (#1066) should be constant
SlotGacorHariIni._receive (#1065) should be constant
SlotGacorHariIni.startTime (#1071) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

owner() should be declared external:
- Ownable.owner() (#282-284)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#301-304)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#310-317)
name() should be declared external:
- ERC20.name() (#349-351)
symbol() should be declared external:
- ERC20.symbol() (#357-359)
decimals() should be declared external:
- ERC20.decimals() (#374-376)
totalSupply() should be declared external:
- ERC20.totalSupply() (#381-383)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#406-414)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#419-427)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#436-444)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#459-474)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#488-499)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#515-529)
updateUniswapV2Router(address) should be declared external:
- SlotGacorHariIni.updateUniswapV2Router(address) (#1120-1123)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- SlotGacorHariIni.excludeMultipleAccountsFromFees(address[],bool) (#1130-1136)
setSwapTokensAtAmount(uint256) should be declared external:
- SlotGacorHariIni.setSwapTokensAtAmount(uint256) (#1138-1140)
setSwapAndLiquifyEnabled(bool) should be declared external:
- SlotGacorHariIni.setSwapAndLiquifyEnabled(bool) (#1142-1144)
isExcludedFromFees(address) should be declared external:
- SlotGacorHariIni.isExcludedFromFees(address) (#1150-1152)
swapAndLiquifyV1(uint256) should be declared external:
- SlotGacorHariIni.swapAndLiquifyV1(uint256) (#1205-1209)
swapAndLiquifyV4() should be declared external:
- SlotGacorHariIni.swapAndLiquifyV4() (#1232-1234)
rescueToken(address,uint256) should be declared external:
- SlotGacorHariIni.rescueToken(address,uint256) (#1254-1260)
getBuysize() should be declared external:
- SlotGacorHariIni.getBuysize() (#1313-1315)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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.


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.

Contract has 10% buy tax and 0% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Token is deployed only at one blockchain


Token has only one trading pair


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 scam / price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for RYM