import re
import requests
from libs.Conn_scan import Mongo
import re
import requests
f_asp = open('dict/asp_path.txt','a')
f_php = open('dict/php_path.txt','a')
f_jsp = open('dict/jsp_path.txt','a')
f_s2 = open('dict/struts_path.txt','a')
f_aspx = open('dict/aspx_path.txt','a')
f_html = open('dict/html_path.txt','a')
f_other = open('dict/other_path.txt','a')
f_xhtml = open('dict/xhtml_path.txt','a')
with open('dict/path_dict.txt') as f:
path_list = f.readlines()
for i in path_list:
print i
if not i.startswith('#'):
if re.search('.asp', i, re.IGNORECASE):
f_asp.write(i + '\r')
elif re.search('.jsp', i, re.IGNORECASE):
f_jsp.write(i + '\r')
elif re.search('.html', i, re.IGNORECASE):
f_html.write(i + '\r')
elif re.search('.php', i, re.IGNORECASE):
f_php.write(i + '\r')
elif re.search('.do', i, re.IGNORECASE) or re.search('.action', i, re.IGNORECASE):
f_s2.write(i + '\r')
elif re.search('.aspx', i, re.IGNORECASE):
f_aspx.write(i + '\r')
elif re.search('.xhtml', i, re.IGNORECASE):
f_xhtml.write(i + '\r')
else:
f_other.write(i + '\r')
python 网站路径分类
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 废话先不多说,先上代码: import requestsfrom bs4 import BeautifulSou...
- 我是用 jupyter notebook写的,各个功能模块清楚分明,顺便推荐给大家。 以图片分类为例: 主要依赖于...
- 随着各类分类信息网站的出现,越来越多的企业开始利用分类信息网站做推广,找工作,找房子,买二手都会直接上分类信息网站...
- 常见的路径表达方式有四种 在这四种表达方式里面,前两种是相对路径,后两种是绝对路径。 相对路径 相对路径就是指相对...