KIRARA INU Token Logo

KIRARA [KIRARA INU] Token

ALERT: honeypot scam

About KIRARA

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Laser Scorebeta Last Audit: 12 June 2022

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

KIRARAINU.addLiquidity(uint256,uint256) (#739-752) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#744-751)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in KIRARAINU._transfer(address,address,uint256) (#648-686):
External calls:
- swapAndLiquify(contractTokenBalance) (#670)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#744-751)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#728-734)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#670)
- recipient.transfer(amount) (#612)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#744-751)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#673)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#681)
- finalAmount = takeFee(sender,recipient,amount) (#675-676)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#766)
Apply the check-effects-interactions pattern.

Additional information: link


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


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.

KIRARAINU.addLiquidity(uint256,uint256) (#739-752) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#744-751)
Ensure that all the return values of the function calls are used.

Additional information: link

KIRARAINU.allowance(address,address).owner (#503) shadows:
- Ownable.owner() (#154-156) (function)
KIRARAINU._approve(address,address,uint256).owner (#526) shadows:
- Ownable.owner() (#154-156) (function)
Rename the local variables that shadow another component.

Additional information: link

KIRARAINU.setBuyTaxes(uint256,uint256,uint256) (#546-552) should emit an event for:
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#551)
KIRARAINU.setSelTaxes(uint256,uint256,uint256) (#554-560) should emit an event for:
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#559)
KIRARAINU.setDistributionSettings(uint256,uint256,uint256) (#562-568) should emit an event for:
- _liquidityShare = newLiquidityShare (#563)
- _teamShare = newTeamShare (#565)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#567)
KIRARAINU.setMaxTxAmount(uint256) (#570-572) should emit an event for:
- _maxTxAmount = maxTxAmount (#571)
KIRARAINU.setWalletLimit(uint256) (#582-584) should emit an event for:
- _walletMax = newLimit (#583)
KIRARAINU.setNumTokensBeforeSwap(uint256) (#586-588) should emit an event for:
- minimumTokensBeforeSwap = newLimit (#587)
Emit an event for critical parameter changes.

Additional information: link

KIRARAINU.setMarketingWalletAddress(address).newAddress (#590) lacks a zero-check on :
- marketingWalletAddress = address(newAddress) (#591)
KIRARAINU.setTeamWalletAddress(address).newAddress (#594) lacks a zero-check on :
- teamWalletAddress = address(newAddress) (#595)
Check that the address is not zero.

Additional information: link

Reentrancy in KIRARAINU.changeRouterVersion(address) (#615-632):
External calls:
- newPairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#623-624)
State variables written after the call(s):
- isMarketPair[address(uniswapPair)] = true (#631)
- isWalletLimitExempt[address(uniswapPair)] = true (#630)
- uniswapPair = newPairAddress (#627)
- uniswapV2Router = _uniswapV2Router (#628)
Reentrancy in KIRARAINU.constructor() (#453-481):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#457-458)
State variables written after the call(s):
- _allowances[address(this)][address(uniswapV2Router)] = _totalSupply (#461)
- _balances[_msgSender()] = _totalSupply (#479)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#468)
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#466)
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#467)
- isExcludedFromFee[owner()] = true (#463)
- isExcludedFromFee[address(this)] = true (#464)
- isMarketPair[address(uniswapPair)] = true (#477)
- isTxLimitExempt[owner()] = true (#474)
- isTxLimitExempt[address(this)] = true (#475)
- isWalletLimitExempt[owner()] = true (#470)
- isWalletLimitExempt[address(uniswapPair)] = true (#471)
- isWalletLimitExempt[address(this)] = true (#472)
- uniswapV2Router = _uniswapV2Router (#460)
Reentrancy in KIRARAINU.swapAndLiquify(uint256) (#695-717):
External calls:
- swapTokensForEth(tokensForSwap) (#700)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#728-734)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#716)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#744-751)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#710)
- recipient.transfer(amount) (#612)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#713)
- recipient.transfer(amount) (#612)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#716)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#744-751)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#716)
- _allowances[owner][spender] = amount (#530)
Reentrancy in KIRARAINU.transferFrom(address,address,uint256) (#642-646):
External calls:
- _transfer(sender,recipient,amount) (#643)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#744-751)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#728-734)
External calls sending eth:
- _transfer(sender,recipient,amount) (#643)
- recipient.transfer(amount) (#612)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#744-751)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#644)
- _allowances[owner][spender] = amount (#530)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in KIRARAINU._transfer(address,address,uint256) (#648-686):
External calls:
- swapAndLiquify(contractTokenBalance) (#670)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#744-751)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#728-734)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#670)
- recipient.transfer(amount) (#612)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#744-751)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#767)
- finalAmount = takeFee(sender,recipient,amount) (#675-676)
- Transfer(sender,recipient,finalAmount) (#683)
Reentrancy in KIRARAINU.constructor() (#453-481):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#457-458)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#480)
Reentrancy in KIRARAINU.swapAndLiquify(uint256) (#695-717):
External calls:
- swapTokensForEth(tokensForSwap) (#700)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#728-734)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#716)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#744-751)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#710)
- recipient.transfer(amount) (#612)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#713)
- recipient.transfer(amount) (#612)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#716)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#744-751)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#531)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#716)
Reentrancy in KIRARAINU.swapTokensForEth(uint256) (#719-737):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#728-734)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#736)
Reentrancy in KIRARAINU.transferFrom(address,address,uint256) (#642-646):
External calls:
- _transfer(sender,recipient,amount) (#643)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#744-751)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#728-734)
External calls sending eth:
- _transfer(sender,recipient,amount) (#643)
- recipient.transfer(amount) (#612)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#744-751)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#531)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#644)
Apply the check-effects-interactions pattern.

Additional information: link

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

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) (#85-94) is never used and should be removed
Address.sendValue(address,uint256) (#96-102) is never used and should be removed
Context._msgData() (#12-15) is never used and should be removed
SafeMath.mod(uint256,uint256) (#73-75) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#77-80) is never used and should be removed
Remove unused functions.

Additional information: link

KIRARAINU._totalSupply (#417) is set pre-construction with a non-constant function or state variable:
- 1000000 * 10 ** _decimals
KIRARAINU._maxTxAmount (#418) is set pre-construction with a non-constant function or state variable:
- 20000 * 10 ** _decimals
KIRARAINU._walletMax (#419) is set pre-construction with a non-constant function or state variable:
- 20000 * 10 ** _decimals
KIRARAINU.minimumTokensBeforeSwap (#420) is set pre-construction with a non-constant function or state variable:
- 5000 * 10 ** _decimals
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) (#96-102):
- (success) = recipient.call{value: amount}() (#100)
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

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#211) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#212) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#228) is not in mixedCase
Function IUniswapV2Router01.WETH() (#247) is not in mixedCase
Parameter KIRARAINU.setSwapAndLiquifyEnabled(bool)._enabled (#598) is not in mixedCase
Variable KIRARAINU._balances (#393) is not in mixedCase
Variable KIRARAINU._buyLiquidityFee (#401) is not in mixedCase
Variable KIRARAINU._buyMarketingFee (#402) is not in mixedCase
Variable KIRARAINU._buyTeamFee (#403) is not in mixedCase
Variable KIRARAINU._sellLiquidityFee (#405) is not in mixedCase
Variable KIRARAINU._sellMarketingFee (#406) is not in mixedCase
Variable KIRARAINU._sellTeamFee (#407) is not in mixedCase
Variable KIRARAINU._liquidityShare (#409) is not in mixedCase
Variable KIRARAINU._marketingShare (#410) is not in mixedCase
Variable KIRARAINU._teamShare (#411) is not in mixedCase
Variable KIRARAINU._totalTaxIfBuying (#413) is not in mixedCase
Variable KIRARAINU._totalTaxIfSelling (#414) is not in mixedCase
Variable KIRARAINU._totalDistributionShares (#415) is not in mixedCase
Variable KIRARAINU._maxTxAmount (#418) is not in mixedCase
Variable KIRARAINU._walletMax (#419) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

Reentrancy in KIRARAINU._transfer(address,address,uint256) (#648-686):
External calls:
- swapAndLiquify(contractTokenBalance) (#670)
- recipient.transfer(amount) (#612)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#670)
- recipient.transfer(amount) (#612)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#744-751)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#673)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#681)
- finalAmount = takeFee(sender,recipient,amount) (#675-676)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#766)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#767)
- finalAmount = takeFee(sender,recipient,amount) (#675-676)
- Transfer(sender,recipient,finalAmount) (#683)
Reentrancy in KIRARAINU.swapAndLiquify(uint256) (#695-717):
External calls:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#710)
- recipient.transfer(amount) (#612)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#713)
- recipient.transfer(amount) (#612)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#710)
- recipient.transfer(amount) (#612)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#713)
- recipient.transfer(amount) (#612)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#716)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#744-751)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#716)
- _allowances[owner][spender] = amount (#530)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#531)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#716)
Reentrancy in KIRARAINU.transferFrom(address,address,uint256) (#642-646):
External calls:
- _transfer(sender,recipient,amount) (#643)
- recipient.transfer(amount) (#612)
External calls sending eth:
- _transfer(sender,recipient,amount) (#643)
- recipient.transfer(amount) (#612)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#744-751)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#644)
- _allowances[owner][spender] = amount (#530)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#531)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#644)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Ownable.waiveOwnership() (#163-166) uses literals with too many digits:
- OwnershipTransferred(_owner,address(0x000000000000000000000000000000000000dEaD)) (#164)
Ownable.waiveOwnership() (#163-166) uses literals with too many digits:
- _owner = address(0x000000000000000000000000000000000000dEaD) (#165)
KIRARAINU.slitherConstructorVariables() (#380-774) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#391)
KIRARAINU.slitherConstructorVariables() (#380-774) uses literals with too many digits:
- _totalSupply = 1000000 * 10 ** _decimals (#417)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable.asdasd (#143) is never used in KIRARAINU (#380-774)
Ownable._lockTime (#144) is never used in KIRARAINU (#380-774)
Remove unused state variables.

Additional information: link

KIRARAINU._decimals (#387) should be constant
KIRARAINU._name (#385) should be constant
KIRARAINU._symbol (#386) should be constant
Ownable._lockTime (#144) should be constant
Ownable.asdasd (#143) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

waiveOwnership() should be declared external:
- Ownable.waiveOwnership() (#163-166)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#168-172)
getTime() should be declared external:
- Ownable.getTime() (#174-176)
name() should be declared external:
- KIRARAINU.name() (#483-485)
symbol() should be declared external:
- KIRARAINU.symbol() (#487-489)
decimals() should be declared external:
- KIRARAINU.decimals() (#491-493)
totalSupply() should be declared external:
- KIRARAINU.totalSupply() (#495-497)
allowance(address,address) should be declared external:
- KIRARAINU.allowance(address,address) (#503-505)
increaseAllowance(address,uint256) should be declared external:
- KIRARAINU.increaseAllowance(address,uint256) (#507-510)
decreaseAllowance(address,uint256) should be declared external:
- KIRARAINU.decreaseAllowance(address,uint256) (#512-515)
minimumTokensBeforeSwapAmount() should be declared external:
- KIRARAINU.minimumTokensBeforeSwapAmount() (#517-519)
approve(address,uint256) should be declared external:
- KIRARAINU.approve(address,uint256) (#521-524)
setMarketPairStatus(address,bool) should be declared external:
- KIRARAINU.setMarketPairStatus(address,bool) (#534-536)
setIsExcludedFromFee(address,bool) should be declared external:
- KIRARAINU.setIsExcludedFromFee(address,bool) (#542-544)
setSwapAndLiquifyEnabled(bool) should be declared external:
- KIRARAINU.setSwapAndLiquifyEnabled(bool) (#598-601)
setSwapAndLiquifyByLimitOnly(bool) should be declared external:
- KIRARAINU.setSwapAndLiquifyByLimitOnly(bool) (#603-605)
getCirculatingSupply() should be declared external:
- KIRARAINU.getCirculatingSupply() (#607-609)
changeRouterVersion(address) should be declared external:
- KIRARAINU.changeRouterVersion(address) (#615-632)
transfer(address,uint256) should be declared external:
- KIRARAINU.transfer(address,uint256) (#637-640)
transferFrom(address,address,uint256) should be declared external:
- KIRARAINU.transferFrom(address,address,uint256) (#642-646)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

Contract has 99% buy tax and 14% sell tax.
Taxes are extremely high (over 30%)

Additional information: link


Average 30d PancakeSwap liquidity is less than $100. 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 volume is low.


Average 30d number of PancakeSwap swaps 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


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 KIRARA