python3基础学习(查看服务器开放的

2020-01-06 15:00:36 浏览数 (1)

  查看服务器是否开放了不安全的HTTP方法,代码如下:

代码语言:javascript复制
from http.client import HTTPConnection
import sys
import re

domain = HTTPConnection(sys.argv[1], int(sys.argv[2]))
domain.request('OPTIONS', sys.argv[3])
resp = domain.getresponse()

print('状态码:', resp.status)
print()
for name, value in resp.getheaders():
    if re.match('Allow',name):
        print(name, value)
    if re.match('Allow',name) and (re.match('.*PUT',value) or re.match('.*DELETE',value) or re.match('.*TRACE',value)):
        print('远端服务器开启了不安全的HTTP方法!')

  使用语法为:python3 xx.py 域名 端口 目录!运行实例如下:

代码语言:javascript复制
C:Python36>python3 不安全的http方法传输.py 218.201.202.249 80 /
状态码: 403

Allow GET, HEAD, POST, PUT, DELETE, OPTIONS
远端服务器开启了不安全的HTTP方法!

0 人点赞