码迷,mamicode.com
首页 > 其他好文 > 详细

阿里云备案相关

时间:2020-04-28 13:16:11      阅读:42      评论:0      收藏:0      [点我收藏+]

标签:none   one   bgp   扫描   amp   yun   else   utf-8   html   

aliyun备案相关

扫描代码

#ip段 https://bgp.he.net/
import requests
import threading
def get_title(ip):
	try:
		res = requests.get("http://"+ip,timeout=3)
		if res.status_code == 200:
			html = res.content.decode("utf-8")
			title = html.split("<title>")[1].split("</title>")[0].strip()
		else:
			pass
		title = f"{ip} {title[0:20]}"
	except:
		title = None
	if (title):
		print(title)
for m in range(0,10):
	for i in range(0,255):
		ip = f"39.104.{m}.{i}"
		t=threading.Thread(target=get_title,args=(ip,))
		t.start()

ip段扫描
原文链接

阿里云备案相关

标签:none   one   bgp   扫描   amp   yun   else   utf-8   html   

原文地址:https://www.cnblogs.com/lijiext/p/12793198.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!