学了一天python的 写了个小工具
接口调用的是:http://i.links.cn/subdomain/
#coding:utf-8 #date : 2015年5月4日 #author : sanr import requests,re def domain(url): payload = {‘domain‘ : url, ‘b2‘ : ‘1‘, ‘b3‘ : ‘1‘, ‘b4‘ : ‘1‘} r = requests.get("http://i.links.cn/subdomain/", params=payload) file=r.text.encode(‘ISO-8859-1‘) #正则 regex = re.compile(‘value="(.+?)"><input‘) #匹配 result=regex.findall(file) #list转换str list = ‘\n‘.join(result) #把匹配到的结果写入txt txt名字取用户输入 f=open(url+‘.txt‘,‘w‘) f.write(list) f.close() return; url=raw_input("url:") domain(url)
本文出自 “Sanr” 博客,请务必保留此出处http://0x007.blog.51cto.com/6330498/1641743
原文地址:http://0x007.blog.51cto.com/6330498/1641743