QilinDao 是币安智能链上基于代币的 Dao,旨在为社区和代币持有者提供透明、安全和可信赖的环境,以支持中国历史遗迹,特别是世界历史遗迹的保护。 用户可以通过持有代币投票支持中国古迹保护和世界古迹保护。
QilinDao 使用智能合约技术提供真正去中心化的解决方案,通过持有代币来保护中国古迹,尤其是世界古迹
QilinDao 旨在赋予用户、代币持有者和社区以完全透明的方式做出决定的发言权、投票权和权力
✅低税:5-5
✅巨大的营销
✅保护历史遗迹
✅分享利润
✅质押并获得独家访问权
QilinDao.sendETHToFee(uint256) (#399-402) sends eth to arbitrary user
Dangerous calls:
- _developmentAddress.transfer(amount.div(2)) (#400)
- _marketingAddress.transfer(amount.div(2)) (#401)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in QilinDao._transfer(address,address,uint256) (#336-383):
External calls:
- swapTokensForEth(contractTokenBalance) (#356)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#390-396)
External calls sending eth:
- sendETHToFee(address(this).balance) (#359)
- _developmentAddress.transfer(amount.div(2)) (#400)
- _marketingAddress.transfer(amount.div(2)) (#401)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#382)
- _rOwned[address(this)] = _rOwned[address(this)].add(rTeam) (#473)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#463)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#464)
- _tokenTransfer(from,to,amount) (#382)
- _rTotal = _rTotal.sub(rFee) (#477)
Apply the check-effects-interactions pattern.
Additional information: link
QilinDao.rescueForeignTokens(address,address,uint256) (#418-429) ignores return value by Token(_tokenAddr).transfer(_to,_amount) (#428)
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...)
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)
Ownable.transferOwnership(address).newOwner (#172) lacks a zero-check on :
- _owner = newOwner (#174)
QilinDao.setNewDevAddress(address).dev (#433) lacks a zero-check on :
- _developmentAddress = dev (#435)
QilinDao.setNewMarketingAddress(address).markt (#444) lacks a zero-check on :
- _marketingAddress = markt (#446)
Check that the address is not zero.
Additional information: link
Reentrancy in QilinDao._transfer(address,address,uint256) (#336-383):
External calls:
- swapTokensForEth(contractTokenBalance) (#356)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#390-396)
External calls sending eth:
- sendETHToFee(address(this).balance) (#359)
- _developmentAddress.transfer(amount.div(2)) (#400)
- _marketingAddress.transfer(amount.div(2)) (#401)
State variables written after the call(s):
- _redisFee = _redisFeeOnBuy (#364)
- _redisFee = _redisFeeOnSell (#369)
- _redisFee = 0 (#377)
- _tokenTransfer(from,to,amount) (#382)
- _tFeeTotal = _tFeeTotal.add(tFee) (#478)
- _taxFee = _taxFeeOnBuy (#365)
- _taxFee = _taxFeeOnSell (#370)
- _taxFee = 0 (#378)
Reentrancy in QilinDao.constructor() (#218-238):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#225-226)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#228)
- _isExcludedFromFee[address(this)] = true (#229)
- _isExcludedFromFee[_developmentAddress] = true (#230)
- _isExcludedFromFee[_marketingAddress] = true (#231)
Reentrancy in QilinDao.transferFrom(address,address,uint256) (#295-310):
External calls:
- _transfer(sender,recipient,amount) (#300)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#390-396)
External calls sending eth:
- _transfer(sender,recipient,amount) (#300)
- _developmentAddress.transfer(amount.div(2)) (#400)
- _marketingAddress.transfer(amount.div(2)) (#401)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#301-308)
- _allowances[rrOwner][rrSpender] = rrAmount (#332)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in QilinDao._transfer(address,address,uint256) (#336-383):
External calls:
- swapTokensForEth(contractTokenBalance) (#356)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#390-396)
External calls sending eth:
- sendETHToFee(address(this).balance) (#359)
- _developmentAddress.transfer(amount.div(2)) (#400)
- _marketingAddress.transfer(amount.div(2)) (#401)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#467)
- _tokenTransfer(from,to,amount) (#382)
Reentrancy in QilinDao.constructor() (#218-238):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#225-226)
Event emitted after the call(s):
- Transfer(address(0x0000000000000000000000000000000000000000),_msgSender(),_tTotal) (#233-237)
Reentrancy in QilinDao.transferFrom(address,address,uint256) (#295-310):
External calls:
- _transfer(sender,recipient,amount) (#300)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#390-396)
External calls sending eth:
- _transfer(sender,recipient,amount) (#300)
- _developmentAddress.transfer(amount.div(2)) (#400)
- _marketingAddress.transfer(amount.div(2)) (#401)
Event emitted after the call(s):
- Approval(rrOwner,rrSpender,rrAmount) (#333)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#301-308)
Apply the check-effects-interactions pattern.
Additional information: link
Function IUniswapV2Router02.WETH() (#74) is not in mixedCase
Event QilinDaotokensRescued(address,address,uint256) (#412-416) is not in CapWords
Event QilinDaodevAddressUpdated(address,address) (#431) is not in CapWords
Event QilinDaomarketingAddressUpdated(address,address) (#439-442) is not in CapWords
Parameter QilinDao.rescueForeignTokens(address,address,uint256)._tokenAddr (#419) is not in mixedCase
Parameter QilinDao.rescueForeignTokens(address,address,uint256)._to (#420) is not in mixedCase
Parameter QilinDao.rescueForeignTokens(address,address,uint256)._amount (#421) is not in mixedCase
Parameter QilinDao.toggleSwap(bool)._swapEnabled (#598) is not in mixedCase
Constant QilinDao._decimals (#185) is not in UPPER_CASE_WITH_UNDERSCORES
Constant QilinDao._tTotal (#186) is not in UPPER_CASE_WITH_UNDERSCORES
Constant QilinDao._name (#198) is not in UPPER_CASE_WITH_UNDERSCORES
Constant QilinDao._symbol (#199) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.
Additional information: link
Reentrancy in QilinDao._transfer(address,address,uint256) (#336-383):
External calls:
- sendETHToFee(address(this).balance) (#359)
- _developmentAddress.transfer(amount.div(2)) (#400)
- _marketingAddress.transfer(amount.div(2)) (#401)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#382)
- _rOwned[address(this)] = _rOwned[address(this)].add(rTeam) (#473)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#463)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#464)
- _tokenTransfer(from,to,amount) (#382)
- _rTotal = _rTotal.sub(rFee) (#477)
- _redisFee = _redisFeeOnBuy (#364)
- _redisFee = _redisFeeOnSell (#369)
- _redisFee = 0 (#377)
- _tokenTransfer(from,to,amount) (#382)
- _tFeeTotal = _tFeeTotal.add(tFee) (#478)
- _taxFee = _taxFeeOnBuy (#365)
- _taxFee = _taxFeeOnSell (#370)
- _taxFee = 0 (#378)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#467)
- _tokenTransfer(from,to,amount) (#382)
Reentrancy in QilinDao.transferFrom(address,address,uint256) (#295-310):
External calls:
- _transfer(sender,recipient,amount) (#300)
- _developmentAddress.transfer(amount.div(2)) (#400)
- _marketingAddress.transfer(amount.div(2)) (#401)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#301-308)
- _allowances[rrOwner][rrSpender] = rrAmount (#332)
Event emitted after the call(s):
- Approval(rrOwner,rrSpender,rrAmount) (#333)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#301-308)
Apply the check-effects-interactions pattern.
Additional information: link
Variable QilinDao._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#546) is too similar to QilinDao._transferStandard(address,address,uint256).tTransferAmount (#459)
Variable QilinDao._transferStandard(address,address,uint256).rTransferAmount (#457) is too similar to QilinDao._transferStandard(address,address,uint256).tTransferAmount (#459)
Variable QilinDao._transferStandard(address,address,uint256).rTransferAmount (#457) is too similar to QilinDao._getTValues(uint256,uint256,uint256).tTransferAmount (#525)
Variable QilinDao._transferStandard(address,address,uint256).rTransferAmount (#457) is too similar to QilinDao._getValues(uint256).tTransferAmount (#495)
Variable QilinDao._getValues(uint256).rTransferAmount (#501) is too similar to QilinDao._getValues(uint256).tTransferAmount (#495)
Variable QilinDao._getValues(uint256).rTransferAmount (#501) is too similar to QilinDao._getTValues(uint256,uint256,uint256).tTransferAmount (#525)
Variable QilinDao._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#546) is too similar to QilinDao._getValues(uint256).tTransferAmount (#495)
Variable QilinDao._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#546) is too similar to QilinDao._getTValues(uint256,uint256,uint256).tTransferAmount (#525)
Variable QilinDao._getValues(uint256).rTransferAmount (#501) is too similar to QilinDao._transferStandard(address,address,uint256).tTransferAmount (#459)
Prevent variables from having similar names.
Additional information: link
QilinDao.constructor() (#218-238) uses literals with too many digits:
- Transfer(address(0x0000000000000000000000000000000000000000),_msgSender(),_tTotal) (#233-237)
QilinDao.slitherConstructorConstantVariables() (#178-611) uses literals with too many digits:
- _tTotal = 100000000 * (10 ** _decimals) (#186)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#162-165)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#172-175)
name() should be declared external:
- QilinDao.name() (#248-250)
symbol() should be declared external:
- QilinDao.symbol() (#252-254)
decimals() should be declared external:
- QilinDao.decimals() (#256-258)
totalSupply() should be declared external:
- QilinDao.totalSupply() (#260-262)
transfer(address,uint256) should be declared external:
- QilinDao.transfer(address,uint256) (#268-275)
allowance(address,address) should be declared external:
- QilinDao.allowance(address,address) (#277-284)
approve(address,uint256) should be declared external:
- QilinDao.approve(address,uint256) (#286-293)
transferFrom(address,address,uint256) should be declared external:
- QilinDao.transferFrom(address,address,uint256) (#295-310)
rescueForeignTokens(address,address,uint256) should be declared external:
- QilinDao.rescueForeignTokens(address,address,uint256) (#418-429)
setNewDevAddress(address) should be declared external:
- QilinDao.setNewDevAddress(address) (#433-437)
setNewMarketingAddress(address) should be declared external:
- QilinDao.setNewMarketingAddress(address) (#444-448)
setFee(uint256,uint256,uint256,uint256) should be declared external:
- QilinDao.setFee(uint256,uint256,uint256,uint256) (#582-596)
toggleSwap(bool) should be declared external:
- QilinDao.toggleSwap(bool) (#598-600)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- QilinDao.excludeMultipleAccountsFromFees(address[],bool) (#602-609)
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 token/project description on the website or on BscScan, CoinMarketCap
Unable to find token contract audit
Unable to find KYC or doxxing proof
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 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
Unable to find code repository for the project
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 has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Twitter account has less than 100 followers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts