1、如何查詢一個網站下的所有的二級域名
1、首先在瀏覽器中搜索「阿里雲」然後找到他們的官網點擊進去。進去阿里雲之後點擊右上菜單中的登錄,然後登陸你域名所在賬戶。
2、登陸過賬號之後,還點擊右上角菜單中的「控制台」。
3、進入控制台之後,點擊「域名」選項。
4、然後選擇你想要解析的域名,點擊右側「解析」。
5、然後在解析設置頁面中,點擊「添加記錄」。
6、然後填寫你解析域名的記錄類型,在主機記錄中填寫你二級域名的記錄,在記錄值中填寫IP地址,然後點擊確定,完成網站域名二級解析。
2、怎麼把自己的域名弄成二維碼掃描
這個可以自動生成的,到專門 的網站上就可以呢,top
3、域名掃描工具
淘米域名掃描搶注軟體V1.0 。。網路下,有很多的
4、如何查詢一個網站下的所有的二級域名?
直接在alexa官網也可以,http://www.alexa.com,不僅可以看到子域名,還可以看到這些子域名各自佔到總流量的百分比 。
通過Alexa和Google來搜索肯定不全面,考慮到每個域名都要正常解析才能被訪問到,所以查詢DNS記錄是最好的辦法。 搜索到了查詢DNS記錄的方法,通過域名的NS伺服器可以用"ls http://domain.com"的方式查詢所有域名相關記錄,但是可惜,現在的DNS伺服器大都禁用了這個功能以提高安全性。
5、如何用python優雅地掃描可用域名
用python-2.7.3\python是對的,但是你的hello.py放在那裡?你需要先用「cd 目錄名」轉換當前目錄到存放hello.py的地方,然後執行python-2.7.3\python hello.py。
6、如何掃描過期域名
您可以在各大域名服務商網站門戶找到對應的頁面,會列出最近的過期刪除域名,比如愛名網「預訂競價」欄,同時頁面提供相關的篩選與排序,供您參考。
——愛名網22.cn為您解答。
7、dnspod掃描域名的詳細解析記錄是怎麼做到的
只是平常的反查,相當於您PING域名解析記錄值是一樣的。
8、如何使用多線程python掃描二級子域名
日站沒什麼好辦法了往往也會想到其二級域名,於是寫了一個比較簡陋的掃描二級域名的程序
速度一般般,不過如果線程開多了還是可以的
源程序(subdomain.py):
#! /usr/bin/env python
#coding=utf-8
import threading , Queue, optparse, os
import pycurl, StringIO, msvcrt, socket
queue = Queue.Queue()
class ScanThread(threading.Thread):
def __init__(self, queue):
threading.Thread.__init__(self)
self.queue = queue
def run(self):
while 1:
p = self.queue.get()
if p is None:
break
try:
sub_domain = p+'.'+domain
crl = pycurl.Curl()
crl.fa = StringIO.StringIO()
crl.setopt(pycurl.URL,sub_domain)
crl.setopt(pycurl.VERBOSE,0)
crl.setopt(pycurl.FOLLOWLOCATION,1)
crl.setopt(pycurl.MAXREDIRS,5)
crl.setopt(pycurl.CONNECTTIMEOUT, 60)
crl.setopt(pycurl.TIMEOUT, 300)
crl.setopt(crl.WRITEFUNCTION,crl.fa.write)
try:
crl.perform()
ip=socket.gethostbyname(sub_domain)
print sub_domain, ip
content = sub_domain+' '+ip+'\n'
self.writefile(wfile, 'a+', content)
except:
pass
except:
print "error"
self.writefile('F:/py/Domain/log.txt', 'a+', p+'\n')
queue.task_done()
def writefile(self, path, type, content):
f = open(path, type)
f.write(content)
f.close
class ThreadGetKey(threading.Thread):
def run(self):
while 1:
try:
chr = msvcrt.getch()
if chr == 'q':
print "stopped by your action ( q )"
os._exit(1)
else:
continue
except:
os._exit(1)
# now starting...
def main():
parser = optparse.OptionParser('Usages: %prog -d <domain> -r <read> -w <write> -t <thread(s)>')
parser.add_option('-d',dest='domain',type='string',help='the url to query')
parser.add_option('-r',dest='read',type='string',help='the dic file to read default=F:/py/Domain/dic.txt', default='F:/py/Domain/dic.txt')
parser.add_option('-w',dest='write',type='string',help='save the reasults to the catalogue \
default=F:/py/Domain/results.txt', default='F:/py/Domain/results.txt')
parser.add_option('-t',dest='threads',type='int',help='set the thread(s) default=10',default=10)
(options,args) = parser.parse_args()
if options.domain == None:
使用方法:
python subdomain.py -d baidu.com -r dic.txt -w results.txt -t 50
主要影響速度的是這一塊代碼:
try:
crl.perform()
ip=socket.gethostbyname(sub_domain)
print sub_domain, ip
content = sub_domain+' '+ip+'\n'
self.writefile(wfile, 'a+', content)
except:
pass
主要是一開始理解錯了,以為二級域名不存在和某個網頁不存在一樣會返回404代碼,於是想到用返回碼來判斷。
結果後來程序一直出錯,才發現當二級域名不存在的時候返回的是「未找到伺服器」,根本不存在返回碼,於是只能使用一個try來調試錯誤,主要速度也就被這里影響了。當然線程開多了也是可以看到刷屏效果的~~
9、比如我要掃描某個網站的ip那麼起始ip怎麼輸入
1、按鍵盤上的「開始+R」鍵,打開系統的運行窗口,輸入「CMD」點擊,點擊「確定」按鈕。
2、隨後會彈出一個黑色的「命令提示符」窗口,在命令窗口中輸入
nslookup (www.網站域名.com) , nslookup 後面帶上要查詢網站的域名。
註:這個命令是系統專門用於解析網站域名 IP 的一個內部命令。
3、然後按鍵盤上的「回車」鍵,即可看到此網站的 IP 地址了。