Web 3.0 Torr3nt that leverage Peer-To-Peer protocol which enables user to gain rewards through seeding and downloading music and movies (P2P to Earn) ✅ CMC + CG Fast Track ✅ Buy/Sell Tax = 4% ✅ Huge Marketing ✅ No Unlocked Tokens ✅ ✍️Audited , KYC'D & + SAFU Badge by Contract Checker ✅Renounce ownership after launch PCS🚀 ✅ 0% Buy Tax on 24 hours of launch. ✅First 100 contributors will get 20% bonus tokens. 💰First 500 contributors will get lottery ticket for a lottery giveaway of $5,000BUSD
BasicToken.sendBNB(address,uint256) (#523-528) sends eth to arbitrary user
Dangerous calls:
- (success) = recipient.call{value: amount}() (#526)
BasicToken.swapAndLiquify(uint256) (#735-764) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: newBalance}(address(this),otherHalf,0,0,DEAD,block.timestamp) (#754-761)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in BasicToken._transfer(address,address,uint256) (#596-704):
External calls:
- swapAndLiquify(liquidityTokens) (#638)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(half,0,path,address(this),block.timestamp) (#745-750)
- uniswapV2Router.addLiquidityETH{value: newBalance}(address(this),otherHalf,0,0,DEAD,block.timestamp) (#754-761)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(contractTokenBalance,0,path,address(this),block.timestamp) (#651-656)
- sendBNB(address(marketingWallet),marketingBNB) (#662)
- (success) = recipient.call{value: amount}() (#526)
- sendBNB(address(developerWallet),devBNB) (#667)
- (success) = recipient.call{value: amount}() (#526)
External calls sending eth:
- swapAndLiquify(liquidityTokens) (#638)
- uniswapV2Router.addLiquidityETH{value: newBalance}(address(this),otherHalf,0,0,DEAD,block.timestamp) (#754-761)
- sendBNB(address(marketingWallet),marketingBNB) (#662)
- (success) = recipient.call{value: amount}() (#526)
- sendBNB(address(developerWallet),devBNB) (#667)
- (success) = recipient.call{value: amount}() (#526)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#699)
- _balances[sender] = senderBalance - amount (#165)
- _balances[recipient] += amount (#167)
- super._transfer(from,to,amount) (#702)
- _balances[sender] = senderBalance - amount (#165)
- _balances[recipient] += amount (#167)
- swapping = false (#671)
Apply the check-effects-interactions pattern.
Additional information: link
BasicToken.claimStuckTokens(address) (#508-517) ignores return value by ERC20token.transfer(msg.sender,balance) (#516)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
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.
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
Contract ownership is not renounced (belongs to a wallet)
BasicToken._transfer(address,address,uint256).liquidityTokens (#635) 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
BasicToken.swapAndLiquify(uint256) (#735-764) ignores return value by uniswapV2Router.addLiquidityETH{value: newBalance}(address(this),otherHalf,0,0,DEAD,block.timestamp) (#754-761)
Ensure that all the return values of the function calls are used.
Additional information: link
BasicToken.setSwapTokensAtAmount(uint256) (#715-721) should emit an event for:
- swapTokensAtAmount = newAmount (#720)
Emit an event for critical parameter changes.
Additional information: link
BasicToken.changeSafuOperator(address)._newOperator (#504) lacks a zero-check on :
- safuOperator = _newOperator (#505)
BasicToken.updateUniswapV2Router(address)._uniswapV2Pair (#534-535) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (#536)
Check that the address is not zero.
Additional information: link
Reentrancy in BasicToken.constructor() (#471-493):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#477-478)
State variables written after the call(s):
- _approve(address(this),address(uniswapV2Router),type()(uint256).max) (#483)
- _allowances[owner][spender] = amount (#211)
- _mint(owner(),1e9 * (10 ** 18)) (#491)
- _balances[account] += amount (#180)
- _isExcludedFromFees[owner()] = true (#487)
- _isExcludedFromFees[DEAD] = true (#488)
- _isExcludedFromFees[address(this)] = true (#489)
- _mint(owner(),1e9 * (10 ** 18)) (#491)
- _totalSupply += amount (#179)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#485)
- automatedMarketMakerPairs[pair] = value (#541)
- swapTokensAtAmount = totalSupply() / 5000 (#492)
- uniswapV2Pair = _uniswapV2Pair (#481)
- uniswapV2Router = _uniswapV2Router (#480)
Reentrancy in BasicToken.updateUniswapV2Router(address) (#530-537):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#534-535)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#536)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in BasicToken._transfer(address,address,uint256) (#596-704):
External calls:
- swapAndLiquify(liquidityTokens) (#638)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(half,0,path,address(this),block.timestamp) (#745-750)
- uniswapV2Router.addLiquidityETH{value: newBalance}(address(this),otherHalf,0,0,DEAD,block.timestamp) (#754-761)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(contractTokenBalance,0,path,address(this),block.timestamp) (#651-656)
- sendBNB(address(marketingWallet),marketingBNB) (#662)
- (success) = recipient.call{value: amount}() (#526)
- sendBNB(address(developerWallet),devBNB) (#667)
- (success) = recipient.call{value: amount}() (#526)
External calls sending eth:
- swapAndLiquify(liquidityTokens) (#638)
- uniswapV2Router.addLiquidityETH{value: newBalance}(address(this),otherHalf,0,0,DEAD,block.timestamp) (#754-761)
- sendBNB(address(marketingWallet),marketingBNB) (#662)
- (success) = recipient.call{value: amount}() (#526)
- sendBNB(address(developerWallet),devBNB) (#667)
- (success) = recipient.call{value: amount}() (#526)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#169)
- super._transfer(from,address(this),fees) (#699)
- Transfer(sender,recipient,amount) (#169)
- super._transfer(from,to,amount) (#702)
Reentrancy in BasicToken.constructor() (#471-493):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#477-478)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#212)
- _approve(address(this),address(uniswapV2Router),type()(uint256).max) (#483)
- SetAutomatedMarketMakerPair(pair,value) (#543)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#485)
- Transfer(address(0),account,amount) (#181)
- _mint(owner(),1e9 * (10 ** 18)) (#491)
Reentrancy in BasicToken.swapAndLiquify(uint256) (#735-764):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(half,0,path,address(this),block.timestamp) (#745-750)
- uniswapV2Router.addLiquidityETH{value: newBalance}(address(this),otherHalf,0,0,DEAD,block.timestamp) (#754-761)
External calls sending eth:
- uniswapV2Router.addLiquidityETH{value: newBalance}(address(this),otherHalf,0,0,DEAD,block.timestamp) (#754-761)
Event emitted after the call(s):
- SwapAndLiquify(half,newBalance,otherHalf) (#763)
Apply the check-effects-interactions pattern.
Additional information: link
BasicToken._transfer(address,address,uint256) (#596-704) uses timestamp for comparisons
Dangerous comparisons:
- launchedAt == 0 && uniswapV2Pair == to (#609)
- launchedAt + 86400 > block.timestamp (#684)
Avoid relying on block.timestamp.
Additional information: link
BasicToken.excludeFromFees(address) (#547-552) compares to a boolean constant:
-require(bool,string)(_isExcludedFromFees[account] != true,Account is already the value of 'excluded') (#548)
Remove the equality to the boolean constant.
Additional information: link
Context._msgData() (#32-35) is never used and should be removed
ERC20._burn(address,uint256) (#186-201) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version0.8.16 (#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.16 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 BasicToken.sendBNB(address,uint256) (#523-528):
- (success) = recipient.call{value: amount}() (#526)
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() (#256) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#257) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#274) is not in mixedCase
Function IUniswapV2Router01.WETH() (#294) is not in mixedCase
Parameter BasicToken.changeSafuOperator(address)._newOperator (#504) is not in mixedCase
Parameter BasicToken.updateBuyFees(uint256,uint256,uint256)._liquidityFeeOnBuy (#558) is not in mixedCase
Parameter BasicToken.updateBuyFees(uint256,uint256,uint256)._marketingFeeOnBuy (#558) is not in mixedCase
Parameter BasicToken.updateBuyFees(uint256,uint256,uint256)._devFeeOnBuy (#558) is not in mixedCase
Parameter BasicToken.updateSellFees(uint256,uint256,uint256)._liquidityFeeOnSell (#570) is not in mixedCase
Parameter BasicToken.updateSellFees(uint256,uint256,uint256)._marketingFeeOnSell (#570) is not in mixedCase
Parameter BasicToken.updateSellFees(uint256,uint256,uint256)._devFeeOnSell (#570) is not in mixedCase
Parameter BasicToken.changeMarketingWallet(address)._marketingWallet (#582) is not in mixedCase
Parameter BasicToken.changeDeveloperWallet(address)._developerWallet (#589) is not in mixedCase
Parameter BasicToken.setSwapEnabled(bool)._swapEnabled (#707) is not in mixedCase
Parameter BasicToken.setSwapWithLimit(bool)._swapWithLimit (#723) is not in mixedCase
Variable BasicToken.DEAD (#446) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#33)" inContext (#27-36)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#299) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#300)
Prevent variables from having similar names.
Additional information: link
BasicToken.slitherConstructorVariables() (#427-766) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#446)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
BasicToken.DEAD (#446) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#58-61)
name() should be declared external:
- ERC20.name() (#85-87)
symbol() should be declared external:
- ERC20.symbol() (#89-91)
decimals() should be declared external:
- ERC20.decimals() (#93-95)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#105-108)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#110-112)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#114-117)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#119-135)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#137-140)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#142-150)
isExcludedFromFees(address) should be declared external:
- BasicToken.isExcludedFromFees(address) (#554-556)
Use the external attribute for functions never called from the contract.
Additional information: link
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find audit link on the website
Unable to find Telegram link on the website
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Token is not listed at Mobula.Finance
Additional information: link
Unable to find token on CoinHunt
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
Token is relatively young, but twitter if very old (probably it's fake).
Telegram account has less than 100 subscribers
Unable to find Blog account (Reddit or Medium)
Unable to find Discord account