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

python编写工具06_获取HTTP服务器信息,第1张

概述结果:importrequestsurl='http://195.200.176.186/'#此IP是从fofa上任意找的r=requests.get(url)print(r.headers)小优化(人性化输出):importrequestsurl='http://195.200.176.186/'#此IP是从fofa上任意找的r=requests.get(url)print(r.hea 结果:

import requestsurl = 'http://195.200.176.186/'     #此IP是从fofa上任意找的r = requests.get(url)print(r.headers)
小优化(人性化输出):

import requestsurl = '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(针对不同服务器,统一输出):

import requestsurl = '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"])
总结

以上是内存溢出为你收集整理的python编写工具06_获取HTTP服务器信息全部内容,希望文章能够帮你解决python编写工具06_获取HTTP服务器信息所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1188892.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-03
下一篇 2022-06-03

发表评论

登录后才能评论

评论列表(0条)

保存