Kermit Inu Token Logo

KTI [Kermit Inu] Token

About KTI

Listings

Token 3 years
CoinGecko 3 years
CoinMarketCap 3 years
[CoinMarketCap] alert: According to https://gopluslabs.io/token-security/56/0x864078171D77b9c3faaD3fEBe98954279BF56E78 The contract owner may contain the authority to modify the transaction tax, DYOR.
white paper

Kermit Inu is the next best meme based Frog coin launched on the Binance Smart Chain. Following the trend we also aim to integrate utilities that will benefit holders over the long run and incentivize them to hold their investments.

UTILITIES
Our utilities is what makes this project unique, i.e. it is our unique selling proposition

Kermit Miner
Stake Kermit Inu tokens in our Kermit MINER! Daily ROI 1%
Shill 2 Earn
Shill Kermit Inu to earn Kermit Inu tokens
One of the first projects to utilitize this idea. Our Kermit App will soon be available for download on the appstore. Easy to use, shill on media like twitter using relevant keywords in return get Kermit Inu tokens!

Social

Laser Scorebeta Last Audit: 19 July 2022

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

Anti-Scam

Links


Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.

KermitInu.addLiquidity(uint256,uint256) (#720-733) sends eth to arbitrary user
Dangerous calls:
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#725-732)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

KermitInu.rescueBSC20(address,uint256) (#849-851) ignores return value by IERC20(tokenAdd).transfer(devWallet,amount) (#850)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


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

Reentrancy in KermitInu._transfer(address,address,uint256) (#565-656):
External calls:
- handle_fees(feeswap,currentTaxes) (#644)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#725-732)
- (success) = recipient.call{value: amount}() (#366)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#711-717)
- address(marketingWallet).sendValue(marketingAmt) (#686)
- address(devWallet).sendValue(devAmt) (#691)
- address(charityWallet).sendValue(charityAmt) (#696)
External calls sending eth:
- handle_fees(feeswap,currentTaxes) (#644)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#725-732)
- (success) = recipient.call{value: amount}() (#366)
State variables written after the call(s):
- super._transfer(sender,recipient,amount - fee) (#647)
- _balances[sender] = senderBalance - amount (#267)
- _balances[recipient] += amount (#268)
- super._transfer(sender,address(this),feeAmount) (#652)
- _balances[sender] = senderBalance - amount (#267)
- _balances[recipient] += amount (#268)
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.


Combination 2: Unchecked transfer + 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.


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Contract ownership is not renounced (belongs to a wallet)

KermitInu._transfer(address,address,uint256).fee (#607) is written in both
fee = 0 (#616)
fee = (amount * feesum) / 100 (#640)
Fix or remove the writes.

Additional information: link

Modifier KermitInu.mutexLock() (#482-488) does not always execute _; or revert
All the paths in a modifier must execute _ or revert.

Additional information: link

KermitInu.handle_fees(uint256,KermitInu.Taxes) (#658-700) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - swapTaxes.liquidity) (#676)
-bnbToAddLiquidityWith = unitBalance * swapTaxes.liquidity (#677)
KermitInu.handle_fees(uint256,KermitInu.Taxes) (#658-700) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - swapTaxes.liquidity) (#676)
-marketingAmt = unitBalance * 2 * swapTaxes.marketing (#684)
KermitInu.handle_fees(uint256,KermitInu.Taxes) (#658-700) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - swapTaxes.liquidity) (#676)
-devAmt = unitBalance * 2 * swapTaxes.dev (#689)
KermitInu.handle_fees(uint256,KermitInu.Taxes) (#658-700) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - swapTaxes.liquidity) (#676)
-charityAmt = unitBalance * 2 * swapTaxes.charity (#694)
Consider ordering multiplication before division.

Additional information: link

KermitInu.updateLiquidityTreshhold(uint256) (#740-743) should emit an event for:
- tokenLiquidityThreshold = new_amount * 10 ** decimals() (#742)
KermitInu.updatedeadline(uint256) (#777-780) should emit an event for:
- deadline = _deadline (#779)
KermitInu.updateCooldown(bool,uint256) (#794-798) should emit an event for:
- coolDownTime = time * 1 (#795)
KermitInu.updateMaxBuyTxLimit(uint256) (#830-833) should emit an event for:
- maxBuyLimit = maxBuy * 10 ** decimals() (#831)
KermitInu.updateMaxSellTxLimit(uint256) (#835-838) should emit an event for:
- maxSellLimit = maxSell * 10 ** decimals() (#836)
KermitInu.updateMaxWalletlimit(uint256) (#840-843) should emit an event for:
- maxWalletLimit = amount * 10 ** decimals() (#842)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in KermitInu._transfer(address,address,uint256) (#565-656):
External calls:
- handle_fees(feeswap,currentTaxes) (#644)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#725-732)
- (success) = recipient.call{value: amount}() (#366)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#711-717)
- address(marketingWallet).sendValue(marketingAmt) (#686)
- address(devWallet).sendValue(devAmt) (#691)
- address(charityWallet).sendValue(charityAmt) (#696)
External calls sending eth:
- handle_fees(feeswap,currentTaxes) (#644)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#725-732)
- (success) = recipient.call{value: amount}() (#366)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#270)
- super._transfer(sender,address(this),feeAmount) (#652)
- Transfer(sender,recipient,amount) (#270)
- super._transfer(sender,recipient,amount - fee) (#647)
Reentrancy in KermitInu.handle_fees(uint256,KermitInu.Taxes) (#658-700):
External calls:
- swapTokensForETH(toSwap) (#673)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#711-717)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#681)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#725-732)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#681)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#725-732)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#338)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#681)
Reentrancy in KermitInu.transferFrom(address,address,uint256) (#525-537):
External calls:
- _transfer(sender,recipient,amount) (#530)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#725-732)
- (success) = recipient.call{value: amount}() (#366)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#711-717)
- address(marketingWallet).sendValue(marketingAmt) (#686)
- address(devWallet).sendValue(devAmt) (#691)
- address(charityWallet).sendValue(charityAmt) (#696)
External calls sending eth:
- _transfer(sender,recipient,amount) (#530)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#725-732)
- (success) = recipient.call{value: amount}() (#366)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#338)
- _approve(sender,_msgSender(),currentAllowance - amount) (#534)
Apply the check-effects-interactions pattern.

Additional information: link

KermitInu._transfer(address,address,uint256) (#565-656) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(timePassed >= coolDownTime,Cooldown enabled) (#600)
Avoid relying on block.timestamp.

Additional information: link

Context._msgData() (#9-12) is never used and should be removed
ERC20._burn(address,uint256) (#303-314) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#363-368):
- (success) = recipient.call{value: amount}() (#366)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

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

Additional information: link

KermitInu._transfer(address,address,uint256).feesum (#606) is a local variable never initialized
KermitInu._transfer(address,address,uint256).currentTaxes (#608) is a local variable never initialized
KermitInu._transfer(address,address,uint256).feeswap (#605) 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

KermitInu.addLiquidity(uint256,uint256) (#720-733) ignores return value by router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#725-732)
Ensure that all the return values of the function calls are used.

Additional information: link

KermitInu.constructor(address)._pair (#496) lacks a zero-check on :
- pair = _pair (#499)
KermitInu.updateRouterAndPair(address,address).newPair (#765) lacks a zero-check on :
- pair = newPair (#767)
KermitInu.updateMarketingWallet(address).newWallet (#782) lacks a zero-check on :
- marketingWallet = newWallet (#783)
KermitInu.updateDevWallet(address).newWallet (#786) lacks a zero-check on :
- devWallet = newWallet (#787)
KermitInu.updateCharityWallet(address).newWallet (#790) lacks a zero-check on :
- charityWallet = newWallet (#791)
Check that the address is not zero.

Additional information: link

Reentrancy in KermitInu.constructor(address) (#490-518):
External calls:
- _pair = IFactory(_router.factory()).createPair(address(this),_router.WETH()) (#496)
State variables written after the call(s):
- allowedTransfer[address(this)] = true (#508)
- allowedTransfer[owner()] = true (#509)
- allowedTransfer[pair] = true (#510)
- allowedTransfer[marketingWallet] = true (#511)
- allowedTransfer[devWallet] = true (#512)
- allowedTransfer[charityWallet] = true (#513)
- allowedTransfer[deadWallet] = true (#514)
- allowedTransfer[0xD152f549545093347A162Dce210e7293f1452150] = true (#515)
- allowedTransfer[0x407993575c91ce7643a4d4cCACc9A98c36eE1BBE] = true (#516)
- exemptFee[address(this)] = true (#500)
- exemptFee[marketingWallet] = true (#501)
- exemptFee[devWallet] = true (#502)
- exemptFee[charityWallet] = true (#503)
- exemptFee[deadWallet] = true (#504)
- exemptFee[0xD152f549545093347A162Dce210e7293f1452150] = true (#505)
- exemptFee[0x407993575c91ce7643a4d4cCACc9A98c36eE1BBE] = true (#506)
- pair = _pair (#499)
- router = _router (#498)
Reentrancy in KermitInu.handle_fees(uint256,KermitInu.Taxes) (#658-700):
External calls:
- swapTokensForETH(toSwap) (#673)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#711-717)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#681)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#725-732)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#681)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#725-732)
State variables written after the call(s):
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#681)
- _allowances[owner][spender] = amount (#337)
Reentrancy in KermitInu.transferFrom(address,address,uint256) (#525-537):
External calls:
- _transfer(sender,recipient,amount) (#530)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#725-732)
- (success) = recipient.call{value: amount}() (#366)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#711-717)
- address(marketingWallet).sendValue(marketingAmt) (#686)
- address(devWallet).sendValue(devAmt) (#691)
- address(charityWallet).sendValue(charityAmt) (#696)
External calls sending eth:
- _transfer(sender,recipient,amount) (#530)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#725-732)
- (success) = recipient.call{value: amount}() (#366)
State variables written after the call(s):
- _approve(sender,_msgSender(),currentAllowance - amount) (#534)
- _allowances[owner][spender] = amount (#337)
Apply the check-effects-interactions pattern.

Additional information: link

Variable ERC20._balances (#55) is not in mixedCase
Variable ERC20._allowances (#57) is not in mixedCase
Function IRouter.WETH() (#412) is not in mixedCase
Function KermitInu.handle_fees(uint256,KermitInu.Taxes) (#658-700) is not in mixedCase
Parameter KermitInu.updateLiquidityTreshhold(uint256).new_amount (#740) is not in mixedCase
Function KermitInu.UpdateBuyTaxes(uint256,uint256,uint256,uint256) (#745-753) is not in mixedCase
Parameter KermitInu.UpdateBuyTaxes(uint256,uint256,uint256,uint256)._marketing (#746) is not in mixedCase
Parameter KermitInu.UpdateBuyTaxes(uint256,uint256,uint256,uint256)._charity (#747) is not in mixedCase
Parameter KermitInu.UpdateBuyTaxes(uint256,uint256,uint256,uint256)._liquidity (#748) is not in mixedCase
Parameter KermitInu.UpdateBuyTaxes(uint256,uint256,uint256,uint256)._dev (#749) is not in mixedCase
Function KermitInu.SetSellTaxes(uint256,uint256,uint256,uint256) (#755-763) is not in mixedCase
Parameter KermitInu.SetSellTaxes(uint256,uint256,uint256,uint256)._marketing (#756) is not in mixedCase
Parameter KermitInu.SetSellTaxes(uint256,uint256,uint256,uint256)._charity (#757) is not in mixedCase
Parameter KermitInu.SetSellTaxes(uint256,uint256,uint256,uint256)._liquidity (#758) is not in mixedCase
Parameter KermitInu.SetSellTaxes(uint256,uint256,uint256,uint256)._dev (#759) is not in mixedCase
Parameter KermitInu.updatedeadline(uint256)._deadline (#777) is not in mixedCase
Parameter KermitInu.updateExemptFee(address,bool)._address (#820) is not in mixedCase
Variable KermitInu.genesis_block (#454) is not in mixedCase
Constant KermitInu.deadWallet (#461) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.

Additional information: link

KermitInu.slitherConstructorConstantVariables() (#439-856) uses literals with too many digits:
- deadWallet = 0x000000000000000000000000000000000000dEaD (#461)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

KermitInu.launchtax (#456) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

name() should be declared external:
- ERC20.name() (#81-83)
symbol() should be declared external:
- ERC20.symbol() (#89-91)
totalSupply() should be declared external:
- ERC20.totalSupply() (#113-115)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#132-140)
- KermitInu.transfer(address,uint256) (#560-563)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#145-153)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#162-165)
- KermitInu.approve(address,uint256) (#520-523)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#180-192)
- KermitInu.transferFrom(address,address,uint256) (#525-537)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#206-213)
- KermitInu.increaseAllowance(address,uint256) (#539-546)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#229-239)
- KermitInu.decreaseAllowance(address,uint256) (#548-558)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#389-391)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#393-396)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

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


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain


Token has only one trading pair


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


Unable to find KYC or doxxing proof


Unable to find token contract audit


Unable to find audit link on the website


Token is not listed at Mobula.Finance

Additional information: link


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


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


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


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


Token is relatively young, but twitter if very old (probably it's fake).


Token has relatively low CoinGecko rank

Price for KTI

News for KTI