gpt4 book ai didi

dns - 是否可以以编程方式获取 .com.eg 域列表?

转载 作者:行者123 更新时间:2023-12-04 02:53:37 24 4
gpt4 key购买 nike

我想在埃及域上创建一个蜘蛛,我想知道是否有任何方法可以用来与域服务器通信以获取以 .com.eg 结尾的所有域的列表。 ?

最佳答案

你可以解析 google's results for "site:.com.eg" search .

这是代码,使用 python 和 xgoogle library :

from xgoogle.search import GoogleSearch, SearchError
try:
page = 1
gs = GoogleSearch("site:.com.eg")
gs.results_per_page = 100
results = []
while page < 10:
gs.page = page
results += gs.get_results()
page += 1
except SearchError, e:
print "Search failed: %s" % e

for res in results:
print res.url

我用这个脚本得到了数百个“.com.eg”域的列表。

关于dns - 是否可以以编程方式获取 .com.eg 域列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1954610/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com