python编写工具06_获取HTTP服务器信息

结果:

python编写工具06_获取HTTP服务器信息

import requests

url = 'http://195.200.176.186/'     #此IP是从fofa上任意找的

r = requests.get(url)
print(r.headers)

小优化(人性化输出):

python编写工具06_获取HTTP服务器信息

import requests

url = 'http://195.200.176.186/'     #此IP是从fofa上任意找的

r = requests.get(url)
print(r.headers)
print("="*15)
print("服务器使用的中间件是:"+ r.headers["Server"])
print("服务器使用脚本语言是:"+ r.headers["X-Powered-By"])

小优化2(针对不同服务器,统一输出):

python编写工具06_获取HTTP服务器信息

import requests

url = 'http://186.179.5.60/'     #此IP是从fofa上任意找的

r = requests.get(url)
print(r.headers)
print("="*15)
print("服务器采用的技术为:"+ r.headers["Server"])

#print("服务器使用脚本语言是:"+ r.headers["X-Powered-By"])
上一篇:kbmMW 5.08.10试用报告


下一篇:FFmpeg-4.0 的filter机制的架构与实现.之二 结构体关系与定义