We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
获取cname时候发现的 python运行的时候scanner_py3获取cname answers = await self.resolvers[j].query(cur_domain, 'CNAME') cname = answers[0].target.to_unicode().rstrip('.') 会报错 TypeError: 'ares_query_cname_result' object is not subscriptable 测试用这个可以解决 cname = answers.cname.rstrip('.')
The text was updated successfully, but these errors were encountered:
No branches or pull requests
获取cname时候发现的
python运行的时候scanner_py3获取cname
answers = await self.resolvers[j].query(cur_domain, 'CNAME')
cname = answers[0].target.to_unicode().rstrip('.')
会报错
TypeError: 'ares_query_cname_result' object is not subscriptable
测试用这个可以解决
cname = answers.cname.rstrip('.')
The text was updated successfully, but these errors were encountered: