XREATORS Token Logo

ORT [XREATORS] Token

ALERT: unclassified scam

About ORT

Listings

Not Found
Token 18 months

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 26 May 2022

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

ERC20Token.transfer(address,uint256) (#120-124) uses delegatecall to a input-controlled function id
- (success) = proxyAddr.delegatecall(abi.encodeWithSignature(transfer(address,uint256),recipient,amount)) (#121)
ERC20Token.transferFrom(address,address,uint256) (#126-130) uses delegatecall to a input-controlled function id
- (success) = proxyAddr.delegatecall(abi.encodeWithSignature(transferFrom(address,address,uint256),sender,recipient,amount)) (#127)
ERC20Token._safeTransfer(address,address,uint256) (#132-136) uses delegatecall to a input-controlled function id
- (success) = proxyAddr.delegatecall(abi.encodeWithSignature(_safeTransfer(address,address,uint256),sender,recipient,amount)) (#133)
ERC20Token.setBurnRatio(uint256) (#152-155) uses delegatecall to a input-controlled function id
- (success) = proxyAddr.delegatecall(abi.encodeWithSignature(setBurnRatio(uint256),_burnRatio)) (#153)
ERC20Token.rewardToken() (#177-180) uses delegatecall to a input-controlled function id
- (success) = proxyAddr.delegatecall(abi.encodeWithSignature(rewardToken())) (#178)
ERC20Token.updatePairSupply() (#216-219) uses delegatecall to a input-controlled function id
- (success) = proxyAddr.delegatecall(abi.encodeWithSignature(updatePairSupply())) (#217)
ERC20Token.airdrop(uint256) (#251-255) uses delegatecall to a input-controlled function id
- (success) = proxyAddr.delegatecall(abi.encodeWithSignature(airdrop(uint256),_tx)) (#252)
ERC20Token.airdropHolders(address[]) (#257-261) uses delegatecall to a input-controlled function id
- (success) = proxyAddr.delegatecall(abi.encodeWithSignature(airdropHolders(address[]),_holders)) (#258)
Avoid using delegatecall. Use only trusted destinations.

Additional information: link

ERC20Token._isRewardList (#75) is never initialized. It is used in:
- ERC20Token.checkRewardMapping(address) (#162-165)
ERC20Token.toReward (#83) is never initialized. It is used in:
- ERC20Token.getRewardStatus() (#167-170)
ERC20Token.pairSupplyLast (#86) is never initialized. It is used in:
- ERC20Token.getPairSupplyLast() (#221-225)
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


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


Contract ownership is not renounced (belongs to a wallet)

ERC20Token.allowance(address,address).owner (#138) shadows:
- Ownable.owner() (#49-51) (function)
ERC20Token._approve(address,address,uint256).owner (#288) shadows:
- Ownable.owner() (#49-51) (function)
Rename the local variables that shadow another component.

Additional information: link

ERC20Token.transfer(address,uint256).recipient (#120) lacks a zero-check on :
- (success) = proxyAddr.delegatecall(abi.encodeWithSignature(transfer(address,uint256),recipient,amount)) (#121)
ERC20Token.transferFrom(address,address,uint256).recipient (#126) lacks a zero-check on :
- (success) = proxyAddr.delegatecall(abi.encodeWithSignature(transferFrom(address,address,uint256),sender,recipient,amount)) (#127)
ERC20Token.transferFrom(address,address,uint256).sender (#126) lacks a zero-check on :
- (success) = proxyAddr.delegatecall(abi.encodeWithSignature(transferFrom(address,address,uint256),sender,recipient,amount)) (#127)
ERC20Token.setProxyAddr(address)._addr (#233) lacks a zero-check on :
- proxyAddr = _addr (#235)
ERC20Token.newPairAddress(address).account (#246) lacks a zero-check on :
- _pair = account (#247)
Check that the address is not zero.

Additional information: link

ERC20Token.getBurnRatio() (#157-160) compares to a boolean constant:
-require(bool,string)(_whitelist[msg.sender] == true,No permission.) (#158)
ERC20Token.checkRewardMapping(address) (#162-165) compares to a boolean constant:
-require(bool,string)(_whitelist[msg.sender] == true,No permission.) (#163)
ERC20Token.getRewardStatus() (#167-170) compares to a boolean constant:
-require(bool,string)(_whitelist[msg.sender] == true,No permission.) (#168)
ERC20Token.getRewardList() (#172-175) compares to a boolean constant:
-require(bool,string)(_whitelist[msg.sender] == true,No permission.) (#173)
ERC20Token.checkWhitelist(address) (#194-197) compares to a boolean constant:
-require(bool,string)(_whitelist[msg.sender] == true,No permission.) (#195)
ERC20Token.checkBlacklist(address) (#211-214) compares to a boolean constant:
-require(bool,string)(_whitelist[msg.sender] == true,No permission.) (#212)
ERC20Token.getPairSupplyLast() (#221-225) compares to a boolean constant:
-require(bool,string)(_whitelist[msg.sender] == true,No permission.) (#222)
ERC20Token.getPairSupply() (#227-231) compares to a boolean constant:
-require(bool,string)(_whitelist[msg.sender] == true,No permission.) (#228)
ERC20Token.setProxyAddr(address) (#233-236) compares to a boolean constant:
-require(bool,string)(_whitelist[msg.sender] == true,No permission.) (#234)
Remove the equality to the boolean constant.

Additional information: link

Context._msgData() (#34-36) is never used and should be removed
ERC20Token._burn(address,uint256) (#323-338) is never used and should be removed
ERC20Token._safeTransfer(address,address,uint256) (#132-136) is never used and should be removed
ERC20Token._transfer(address,address,uint256) (#263-285) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.0 (#3) allows old versions
solc-0.8.0 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 ERC20Token.transfer(address,uint256) (#120-124):
- (success) = proxyAddr.delegatecall(abi.encodeWithSignature(transfer(address,uint256),recipient,amount)) (#121)
Low level call in ERC20Token.transferFrom(address,address,uint256) (#126-130):
- (success) = proxyAddr.delegatecall(abi.encodeWithSignature(transferFrom(address,address,uint256),sender,recipient,amount)) (#127)
Low level call in ERC20Token._safeTransfer(address,address,uint256) (#132-136):
- (success) = proxyAddr.delegatecall(abi.encodeWithSignature(_safeTransfer(address,address,uint256),sender,recipient,amount)) (#133)
Low level call in ERC20Token.setBurnRatio(uint256) (#152-155):
- (success) = proxyAddr.delegatecall(abi.encodeWithSignature(setBurnRatio(uint256),_burnRatio)) (#153)
Low level call in ERC20Token.rewardToken() (#177-180):
- (success) = proxyAddr.delegatecall(abi.encodeWithSignature(rewardToken())) (#178)
Low level call in ERC20Token.updatePairSupply() (#216-219):
- (success) = proxyAddr.delegatecall(abi.encodeWithSignature(updatePairSupply())) (#217)
Low level call in ERC20Token.airdrop(uint256) (#251-255):
- (success) = proxyAddr.delegatecall(abi.encodeWithSignature(airdrop(uint256),_tx)) (#252)
Low level call in ERC20Token.airdropHolders(address[]) (#257-261):
- (success) = proxyAddr.delegatecall(abi.encodeWithSignature(airdropHolders(address[]),_holders)) (#258)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Parameter ERC20Token.setBurnRatio(uint256)._burnRatio (#152) is not in mixedCase
Parameter ERC20Token.checkRewardMapping(address)._addr (#162) is not in mixedCase
Parameter ERC20Token.setProxyAddr(address)._addr (#233) is not in mixedCase
Parameter ERC20Token.airdrop(uint256)._tx (#251) is not in mixedCase
Parameter ERC20Token.airdropHolders(address[])._holders (#257) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

ERC20Token.constructor(string,string) (#90-98) uses literals with too many digits:
- _totalSupply = 500000000e18 (#94)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

ERC20Token._proxyWhitelist (#76) is never used in ERC20Token (#70-349)
ERC20Token.isTransferFrom (#84) is never used in ERC20Token (#70-349)
Remove unused state variables.

Additional information: link

ERC20Token.burnRatio (#87) should be constant
ERC20Token.isTransferFrom (#84) should be constant
ERC20Token.pairSupplyLast (#86) should be constant
ERC20Token.toReward (#83) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#58-61)
name() should be declared external:
- ERC20Token.name() (#100-102)
symbol() should be declared external:
- ERC20Token.symbol() (#104-106)
decimals() should be declared external:
- ERC20Token.decimals() (#108-110)
totalSupply() should be declared external:
- ERC20Token.totalSupply() (#112-114)
balanceOf(address) should be declared external:
- ERC20Token.balanceOf(address) (#116-118)
transfer(address,uint256) should be declared external:
- ERC20Token.transfer(address,uint256) (#120-124)
transferFrom(address,address,uint256) should be declared external:
- ERC20Token.transferFrom(address,address,uint256) (#126-130)
allowance(address,address) should be declared external:
- ERC20Token.allowance(address,address) (#138-140)
approve(address,uint256) should be declared external:
- ERC20Token.approve(address,uint256) (#142-145)
mint(address,uint256) should be declared external:
- ERC20Token.mint(address,uint256) (#147-150)
setBurnRatio(uint256) should be declared external:
- ERC20Token.setBurnRatio(uint256) (#152-155)
checkRewardMapping(address) should be declared external:
- ERC20Token.checkRewardMapping(address) (#162-165)
getRewardStatus() should be declared external:
- ERC20Token.getRewardStatus() (#167-170)
getRewardList() should be declared external:
- ERC20Token.getRewardList() (#172-175)
rewardToken() should be declared external:
- ERC20Token.rewardToken() (#177-180)
addWhitelist(address[]) should be declared external:
- ERC20Token.addWhitelist(address[]) (#182-187)
removeFromWhitelist(address) should be declared external:
- ERC20Token.removeFromWhitelist(address) (#189-192)
checkWhitelist(address) should be declared external:
- ERC20Token.checkWhitelist(address) (#194-197)
addBlacklist(address[]) should be declared external:
- ERC20Token.addBlacklist(address[]) (#199-204)
removeFromBlacklist(address) should be declared external:
- ERC20Token.removeFromBlacklist(address) (#206-209)
checkBlacklist(address) should be declared external:
- ERC20Token.checkBlacklist(address) (#211-214)
setProxyAddr(address) should be declared external:
- ERC20Token.setProxyAddr(address) (#233-236)
showPairAddress() should be declared external:
- ERC20Token.showPairAddress() (#242-244)
newPairAddress(address) should be declared external:
- ERC20Token.newPairAddress(address) (#246-249)
airdrop(uint256) should be declared external:
- ERC20Token.airdrop(uint256) (#251-255)
airdropHolders(address[]) should be declared external:
- ERC20Token.airdropHolders(address[]) (#257-261)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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 30d PancakeSwap liquidity is low.


Average 30d PancakeSwap volume is low.


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


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 ORT