Hoodler.io Token Logo

HOOD [Hoodler.io] Token

About HOOD

Listings

Token 2 years

Website

white paper

The next generation crypto social network & community! Connect with your friends and play with our quests and badges gamification system!

Social

Laser Scorebeta Last Audit: 30 November 2021

report
Token is either risky or in presale. For presale 30+ is a fine score.

Anti-Scam

Links

HOOD.addLiquidity(uint256,uint256) (#683-696) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#688-695)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in HOOD._transfer(address,address,uint256) (#597-644):
External calls:
- swapTokens(contractTokenBalance) (#631)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#671-677)
External calls sending eth:
- swapTokens(contractTokenBalance) (#631)
- marketingAddress.transfer(amount) (#657)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#643)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#802)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#718)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#727)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#738)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#748)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#719)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#729)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#739)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#750)
- _tokenTransfer(from,to,amount,takeFee) (#643)
- _rTotal = _rTotal.sub(rFee) (#757)
- _tokenTransfer(from,to,amount,takeFee) (#643)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#804)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#747)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#737)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#728)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#749)
Apply the check-effects-interactions pattern.

Additional information: link


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

HOOD._transfer(address,address,uint256) (#597-644) uses a dangerous strict equality:
- block.timestamp == launchTime (#614)
Don't use strict equality to determine if an account has enough Ether or tokens.

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.

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

Additional information: link

HOOD._approve(address,address,uint256).owner (#589) shadows:
- Ownable.owner() (#161-163) (function)
Rename the local variables that shadow another component.

Additional information: link

HOOD.setFeeRate(uint256) (#899-902) should emit an event for:
- _feeRate = rate (#901)
Emit an event for critical parameter changes.

Additional information: link

HOOD.setUniswapV2Pair(address)._uniswapV2Pair (#860) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (#861)
Check that the address is not zero.

Additional information: link

Reentrancy in HOOD.transferFrom(address,address,uint256) (#513-517):
External calls:
- _transfer(sender,recipient,amount) (#514)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#671-677)
External calls sending eth:
- _transfer(sender,recipient,amount) (#514)
- marketingAddress.transfer(amount) (#657)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#515)
- _allowances[owner][spender] = amount (#593)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in HOOD.transferFrom(address,address,uint256) (#513-517):
External calls:
- _transfer(sender,recipient,amount) (#514)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#671-677)
External calls sending eth:
- _transfer(sender,recipient,amount) (#514)
- marketingAddress.transfer(amount) (#657)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#594)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#515)
Apply the check-effects-interactions pattern.

Additional information: link

HOOD._transfer(address,address,uint256) (#597-644) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp == launchTime (#614)
Avoid relying on block.timestamp.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#128-145) uses assembly
- INLINE ASM (#137-140)
Do not use evm assembly.

Additional information: link

SafeMath.mod(uint256,uint256,string) (#83-86) is never used and should be removed
Remove unused functions.

Additional information: link

HOOD._previousLiquidityFee (#423) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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

solc-0.8.7 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._functionCallWithValue(address,bytes,uint256,string) (#128-145):
- (success,returndata) = target.call{value: weiValue}(data) (#131)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable HOOD._liquidityFee (#422) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

Reentrancy in HOOD.transferFrom(address,address,uint256) (#513-517):
External calls:
- _transfer(sender,recipient,amount) (#514)
- marketingAddress.transfer(amount) (#657)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#515)
- _allowances[owner][spender] = amount (#593)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#594)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#515)
Apply the check-effects-interactions pattern.

Additional information: link

Variable HOOD.reflectionFromToken(uint256,bool).rTransferAmount (#555) is too similar to HOOD._getTValues(uint256).tTransferAmount (#770)
Prevent variables from having similar names.

Additional information: link

HOOD.slitherConstructorVariables() (#393-909) uses literals with too many digits:
- _tTotal = 60000000 * 10 ** 9 (#410)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._lockTime (#151) is never used in HOOD (#393-909)
Remove unused state variables.

Additional information: link

Ownable._previousOwner (#150) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

isRemovedSniper(address) should be declared external:
- HOOD.isRemovedSniper(address) (#874-876)
Use the external attribute for functions never called from the contract.

Additional information: link

Contract name (Hoodler.io) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.

Holders:


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 link seems to be invalid


Telegram account has relatively few subscribers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


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

Additional information: link


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


Unable to find token contract audit


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find Telegram 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 scam / price dump / death


Young tokens have high risks of scam / price dump / death


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for HOOD