Son Of Crypto Token Logo

SOC [Son Of Crypto] Token

ALERT: rug pull scam

About SOC

Listings

Not Found
Token 21 months

🔥🔥SON OF CRYPTO🔥🔥
Tired of rug pulls, unfair launches with private investors, whales and bots? So are we.
🚀Secret Launch
✅ Doxxed dev
✅ Lp lock
✅ Massive marketing
✅ Max Tx 1% & Max Wallet 3%

Social

Laser Scorebeta Last Audit: 22 December 2021

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

Anti-Scam

Links


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

soncrypto.addLiquidity(uint256,uint256) (#723-736) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#728-735)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in soncrypto._transfer(address,address,uint256) (#635-675):
External calls:
- swapAndLiquify(contractTokenBalance) (#659)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#728-735)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#712-718)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#659)
- recipient.transfer(amount) (#602)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#728-735)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#662)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#670)
- finalAmount = takeFee(sender,recipient,amount) (#664-665)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#743)
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.

soncrypto.swapAndLiquify(uint256) (#684-701) performs a multiplication on the result of a division:
-tokensForLP = tAmount.div(_totalTaxIfBuying).mul(_liquidityFee).div(2) (#686)
Consider ordering multiplication before division.

Additional information: link

soncrypto.addLiquidity(uint256,uint256) (#723-736) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#728-735)
Ensure that all the return values of the function calls are used.

Additional information: link

soncrypto.allowance(address,address).owner (#511) shadows:
- Ownable.owner() (#159-161) (function)
soncrypto._approve(address,address,uint256).owner (#534) shadows:
- Ownable.owner() (#159-161) (function)
Rename the local variables that shadow another component.

Additional information: link

soncrypto.setTaxes(uint256,uint256,uint256,uint256) (#550-558) should emit an event for:
- _liquidityFee = newLiquidityTax (#551)
- _buyBackFee = newBuyBackTax (#553)
- _totalTaxIfBuying = _liquidityFee.add(_marketingFee).add(_buyBackFee) (#556)
- _totalTaxIfSelling = _totalTaxIfBuying.add(_extraFeeOnSell) (#557)
soncrypto.setMaxTxAmount(uint256) (#560-562) should emit an event for:
- _maxTxAmount = maxTxAmount (#561)
soncrypto.setWalletLimit(uint256) (#572-574) should emit an event for:
- _walletMax = newLimit (#573)
soncrypto.setNumTokensBeforeSwap(uint256) (#576-578) should emit an event for:
- minimumTokensBeforeSwap = newLimit (#577)
Emit an event for critical parameter changes.

Additional information: link

soncrypto.setMarketingWalletAddress(address).newAddress (#580) lacks a zero-check on :
- marketingWalletAddress = address(newAddress) (#581)
soncrypto.setbuyBackWalletAddress(address).newAddress (#584) lacks a zero-check on :
- buyBackWalletAddress = address(newAddress) (#585)
Check that the address is not zero.

Additional information: link

Reentrancy in soncrypto.changeRouterVersion(address) (#605-619):
External calls:
- newPairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#613-614)
State variables written after the call(s):
- uniswapV2Pair = newPairAddress (#617)
- uniswapV2Router = _uniswapV2Router (#618)
Reentrancy in soncrypto.constructor() (#465-489):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#469-470)
State variables written after the call(s):
- _allowances[address(this)][address(uniswapV2Router)] = _totalSupply (#473)
- _balances[_msgSender()] = _totalSupply (#487)
- _totalTaxIfBuying = _liquidityFee.add(_marketingFee).add(_buyBackFee) (#478)
- _totalTaxIfSelling = _totalTaxIfBuying.add(_extraFeeOnSell) (#479)
- isExcludedFromFee[owner()] = true (#475)
- isExcludedFromFee[address(this)] = true (#476)
- isWalletLimitExempt[owner()] = true (#481)
- isWalletLimitExempt[address(uniswapV2Pair)] = true (#482)
- isWalletLimitExempt[address(this)] = true (#484)
- isWalletLimitExempt[0x000000000000000000000000000000000000dEaD] = true (#485)
- uniswapV2Router = _uniswapV2Router (#472)
Reentrancy in soncrypto.swapAndLiquify(uint256) (#684-701):
External calls:
- swapTokensForEth(tokensForSwap) (#689)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#712-718)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#700)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#728-735)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#698)
- recipient.transfer(amount) (#602)
- transferToAddressETH(buyBackWalletAddress,amountBNBBuyBack) (#699)
- recipient.transfer(amount) (#602)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#700)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#728-735)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#700)
- _allowances[owner][spender] = amount (#538)
Reentrancy in soncrypto.transferFrom(address,address,uint256) (#629-633):
External calls:
- _transfer(sender,recipient,amount) (#630)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#728-735)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#712-718)
External calls sending eth:
- _transfer(sender,recipient,amount) (#630)
- recipient.transfer(amount) (#602)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#728-735)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#631)
- _allowances[owner][spender] = amount (#538)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in soncrypto._transfer(address,address,uint256) (#635-675):
External calls:
- swapAndLiquify(contractTokenBalance) (#659)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#728-735)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#712-718)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#659)
- recipient.transfer(amount) (#602)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#728-735)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#744)
- finalAmount = takeFee(sender,recipient,amount) (#664-665)
- Transfer(sender,recipient,finalAmount) (#672)
Reentrancy in soncrypto.constructor() (#465-489):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#469-470)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#488)
Reentrancy in soncrypto.swapAndLiquify(uint256) (#684-701):
External calls:
- swapTokensForEth(tokensForSwap) (#689)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#712-718)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#700)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#728-735)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#698)
- recipient.transfer(amount) (#602)
- transferToAddressETH(buyBackWalletAddress,amountBNBBuyBack) (#699)
- recipient.transfer(amount) (#602)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#700)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#728-735)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#539)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#700)
Reentrancy in soncrypto.swapTokensForEth(uint256) (#703-721):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#712-718)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#720)
Reentrancy in soncrypto.transferFrom(address,address,uint256) (#629-633):
External calls:
- _transfer(sender,recipient,amount) (#630)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#728-735)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#712-718)
External calls sending eth:
- _transfer(sender,recipient,amount) (#630)
- recipient.transfer(amount) (#602)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#728-735)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#539)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#631)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#194-199) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#196)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#90-99) uses assembly
- INLINE ASM (#97)
Address._functionCallWithValue(address,bytes,uint256,string) (#126-143) uses assembly
- INLINE ASM (#135-138)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#126-143) is never used and should be removed
Address.functionCall(address,bytes) (#109-111) is never used and should be removed
Address.functionCall(address,bytes,string) (#113-115) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#117-119) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#121-124) is never used and should be removed
Address.isContract(address) (#90-99) is never used and should be removed
Address.sendValue(address,uint256) (#101-107) is never used and should be removed
Context._msgData() (#17-20) is never used and should be removed
SafeMath.mod(uint256,uint256) (#78-80) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#82-85) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#101-107):
- (success) = recipient.call{value: amount}() (#105)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#126-143):
- (success,returndata) = target.call{value: weiValue}(data) (#129)
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() (#233) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#234) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#250) is not in mixedCase
Function IUniswapV2Router01.WETH() (#269) is not in mixedCase
Contract soncrypto (#402-750) is not in CapWords
Parameter soncrypto.setSwapAndLiquifyEnabled(bool)._enabled (#588) is not in mixedCase
Variable soncrypto._balances (#415) is not in mixedCase
Variable soncrypto._liquidityFee (#422) is not in mixedCase
Variable soncrypto._marketingFee (#423) is not in mixedCase
Variable soncrypto._buyBackFee (#424) is not in mixedCase
Variable soncrypto._extraFeeOnSell (#425) is not in mixedCase
Variable soncrypto._totalTaxIfBuying (#426) is not in mixedCase
Variable soncrypto._totalTaxIfSelling (#427) is not in mixedCase
Variable soncrypto._maxTxAmount (#430) is not in mixedCase
Variable soncrypto._walletMax (#431) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

Reentrancy in soncrypto._transfer(address,address,uint256) (#635-675):
External calls:
- swapAndLiquify(contractTokenBalance) (#659)
- recipient.transfer(amount) (#602)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#659)
- recipient.transfer(amount) (#602)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#728-735)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#662)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#670)
- finalAmount = takeFee(sender,recipient,amount) (#664-665)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#743)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#744)
- finalAmount = takeFee(sender,recipient,amount) (#664-665)
- Transfer(sender,recipient,finalAmount) (#672)
Reentrancy in soncrypto.swapAndLiquify(uint256) (#684-701):
External calls:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#698)
- recipient.transfer(amount) (#602)
- transferToAddressETH(buyBackWalletAddress,amountBNBBuyBack) (#699)
- recipient.transfer(amount) (#602)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#698)
- recipient.transfer(amount) (#602)
- transferToAddressETH(buyBackWalletAddress,amountBNBBuyBack) (#699)
- recipient.transfer(amount) (#602)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#700)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#728-735)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#700)
- _allowances[owner][spender] = amount (#538)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#539)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#700)
Reentrancy in soncrypto.transferFrom(address,address,uint256) (#629-633):
External calls:
- _transfer(sender,recipient,amount) (#630)
- recipient.transfer(amount) (#602)
External calls sending eth:
- _transfer(sender,recipient,amount) (#630)
- recipient.transfer(amount) (#602)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#728-735)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#631)
- _allowances[owner][spender] = amount (#538)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#539)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#631)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

soncrypto.constructor() (#465-489) uses literals with too many digits:
- isWalletLimitExempt[0x000000000000000000000000000000000000dEaD] = true (#485)
soncrypto.slitherConstructorVariables() (#402-750) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#413)
soncrypto.slitherConstructorVariables() (#402-750) uses literals with too many digits:
- _totalSupply = 1000000000000 * 10 ** 9 (#429)
soncrypto.slitherConstructorVariables() (#402-750) uses literals with too many digits:
- _maxTxAmount = 10000000000 * 10 ** 9 (#430)
soncrypto.slitherConstructorVariables() (#402-750) uses literals with too many digits:
- _walletMax = 30000000000 * 10 ** 9 (#431)
soncrypto.slitherConstructorVariables() (#402-750) uses literals with too many digits:
- minimumTokensBeforeSwap = 2000000000 * 10 ** 9 (#432)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

soncrypto._decimals (#409) should be constant
soncrypto._name (#407) should be constant
soncrypto._symbol (#408) should be constant
soncrypto._totalSupply (#429) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#168-171)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#173-177)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#179-181)
getTime() should be declared external:
- Ownable.getTime() (#183-185)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#187-192)
unlock() should be declared external:
- Ownable.unlock() (#194-199)
name() should be declared external:
- soncrypto.name() (#491-493)
symbol() should be declared external:
- soncrypto.symbol() (#495-497)
decimals() should be declared external:
- soncrypto.decimals() (#499-501)
totalSupply() should be declared external:
- soncrypto.totalSupply() (#503-505)
allowance(address,address) should be declared external:
- soncrypto.allowance(address,address) (#511-513)
increaseAllowance(address,uint256) should be declared external:
- soncrypto.increaseAllowance(address,uint256) (#515-518)
decreaseAllowance(address,uint256) should be declared external:
- soncrypto.decreaseAllowance(address,uint256) (#520-523)
minimumTokensBeforeSwapAmount() should be declared external:
- soncrypto.minimumTokensBeforeSwapAmount() (#525-527)
approve(address,uint256) should be declared external:
- soncrypto.approve(address,uint256) (#529-532)
blacklistAddress(address,bool) should be declared external:
- soncrypto.blacklistAddress(address,bool) (#542-544)
setIsExcludedFromFee(address,bool) should be declared external:
- soncrypto.setIsExcludedFromFee(address,bool) (#546-548)
setSwapAndLiquifyEnabled(bool) should be declared external:
- soncrypto.setSwapAndLiquifyEnabled(bool) (#588-591)
setSwapAndLiquifyByLimitOnly(bool) should be declared external:
- soncrypto.setSwapAndLiquifyByLimitOnly(bool) (#593-595)
getCirculatingSupply() should be declared external:
- soncrypto.getCirculatingSupply() (#597-599)
changeRouterVersion(address) should be declared external:
- soncrypto.changeRouterVersion(address) (#605-619)
transfer(address,uint256) should be declared external:
- soncrypto.transfer(address,uint256) (#624-627)
transferFrom(address,address,uint256) should be declared external:
- soncrypto.transferFrom(address,address,uint256) (#629-633)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


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 has less than 100 followers


Last post in Twitter was more than 30 days ago


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


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

Additional information: link


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)


Unable to verify token contract address on the website


Unable to find audit link on the website


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for SOC

News for SOC