ShibaKong Token Logo

$ShibaKong [ShibaKong] Token

About $ShibaKong

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 30 November 2021

report
Token seems to be anonymous. As long as we are unable to find website score is limited.


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

Reentrancy in ShibaKong.claimXRP(address) (#1105-1139):
External calls:
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,addr,block.timestamp) (#1131-1135)
State variables written after the call(s):
- _isWithdrawing = false (#1138)
Apply the check-effects-interactions pattern.

Additional information: link

ShibaKong.TeamReleaseLiquidity() (#1419-1429) ignores return value by liquidityToken.transfer(TeamWallet,amount) (#1427)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

ShibaKong.claimXRP(address) (#1105-1139) uses a dangerous strict equality:
- amount == 0 (#1122)
Don't use strict equality to determine if an account has enough Ether or tokens.

Additional information: link


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 ticker ($ShibaKong) 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.

ShibaKong.TeamRemoveLiquidity(bool) (#1431-1460) ignores return value by _pancakeRouter.removeLiquidityETHSupportingFeeOnTransferTokens(address(this),amount,0,0,address(this),block.timestamp) (#1444-1451)
Ensure that all the return values of the function calls are used.

Additional information: link

ShibaKong._approve(address,address,uint256).owner (#1513) shadows:
- Ownable.owner() (#240-242) (function)
Rename the local variables that shadow another component.

Additional information: link

ShibaKong.TeamUpdateLimits(uint256,uint256) (#1372-1389) should emit an event for:
- balanceLimit = newBalanceLimit (#1387)
- sellLimit = newSellLimit (#1388)
Emit an event for critical parameter changes.

Additional information: link

ShibaKong.SetupLiquidityTokenAddress(address).liquidityTokenAddress (#1401) lacks a zero-check on :
- _liquidityTokenAddress = liquidityTokenAddress (#1402)
Check that the address is not zero.

Additional information: link

Reentrancy in ShibaKong.transferFrom(address,address,uint256) (#1521-1529):
External calls:
- _transfer(sender,recipient,amount) (#1522)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#1205-1212)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,address(this),block.timestamp) (#1193-1199)
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,addr,block.timestamp) (#1131-1135)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1522)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#1205-1212)
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,addr,block.timestamp) (#1131-1135)
State variables written after the call(s):
- _approve(sender,msg.sender,currentAllowance - amount) (#1527)
- _allowances[owner][spender] = amount (#1517)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ShibaKong.transferFrom(address,address,uint256) (#1521-1529):
External calls:
- _transfer(sender,recipient,amount) (#1522)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#1205-1212)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,address(this),block.timestamp) (#1193-1199)
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,addr,block.timestamp) (#1131-1135)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1522)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#1205-1212)
- _pancakeRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,addr,block.timestamp) (#1131-1135)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1518)
- _approve(sender,msg.sender,currentAllowance - amount) (#1527)
Apply the check-effects-interactions pattern.

Additional information: link

ShibaKong.TeamRemoveRemainingBNB() (#1462-1467) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp >= _liquidityUnlockTime,Not yet unlocked) (#1463)
Avoid relying on block.timestamp.

Additional information: link

Address._verifyCallResult(bool,bytes,string) (#441-458) uses assembly
- INLINE ASM (#450-453)
Do not use evm assembly.

Additional information: link

ShibaKong._isTeam(address) (#816-818) is never used and should be removed
Remove unused functions.

Additional information: link

ShibaKong.sellLimit (#798) is set pre-construction with a non-constant function or state variable:
- _circulatingSupply
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.4 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 ShibaKong.TeamRemoveRemainingBNB() (#1462-1467):
- (sent) = TeamWallet.call{value: (address(this).balance)}() (#1465)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Constant ShibaKong.DistributionMultiplier (#994) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.

Additional information: link

Variable IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#80) is too similar to IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#81)
Prevent variables from having similar names.

Additional information: link

ShibaKong.slitherConstructorConstantVariables() (#756-1547) uses literals with too many digits:
- InitialSupply = 500000000000 * 10 ** _decimals (#774)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

TeamRemoveRemainingBNB() should be declared external:
- ShibaKong.TeamRemoveRemainingBNB() (#1462-1467)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


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 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.


Unable to find Telegram and Twitter accounts


Unable to find website, listings and other project-related information


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for $ShibaKong