首页 > 编程语言 > 详细

Python Hacking Tools - Vulnerability Scanner

时间:2019-08-08 01:38:18      阅读:155      评论:0      收藏:0      [点我收藏+]

Security Header website:

https://securityheaders.com/

 

Scan the target website: https://www.hackthissite.org/

技术分享图片

Write the Python Source Code:

import requests

domain = "https://www.hackthissite.org/"

headers = requests.get(domain).headers

if X-Frame-Options in headers:
    print domain + " NOT VULNERABLE"
else:
    print domain + " VULNERABLE"

Execute Result:

技术分享图片

 

Python Hacking Tools - Vulnerability Scanner

原文:https://www.cnblogs.com/keepmoving1113/p/11318428.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!