Self-Improvement
재미로 작성한 hsts bypass check Python 코드 본문
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
import requests
import sys
####ssl-warnings InsecureRequestWarning EXCEPT CASE 1
from requests.packages.urllib3.exceptions import InsecureRequestWarning
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)
proxies={
'http':'http://localhost:8080',
'https':'https://localhost:8080'
}
# Packet Request
def packet(domain):
try:
s = requests.Session()
https_check=Https_Check(domain,s)
url='%s://%s' %(https_check, domain)
resp=s.get(url,timeout=3, verify=False)
if 'includeSubdomains' in resp.headers['Strict-Transport-Security']:
print domain+", Secure"
else:
print domain+", Not Secure"
except:
print domain+", Not Secure"
pass
def Https_Check(domain,s):
try:
s.get('http://'+domain)
return 'http'
except requests.exceptions.ConnectionError as e:
return 'https'
except:
return 'http'
# MAIN
if __name__ == "__main__":
if len(sys.argv) is not 2:
print(" [-] Example: python hsts_check.py www.***.com")
sys.exit(1)
else:
packet(sys.argv[1])
By. Jo
|
cs |
User-Agent에 따라 결과가 다를 수 있다. (Chrome, Firefox 등)
이상한 점이나 부족한 점이 있다면 태클은 언제나 환영입니다.
'프로그래밍 > Python' 카테고리의 다른 글
Python Requests 모듈의 HTTPS/HTTP 구분 (0) | 2020.07.16 |
---|---|
Python의 Requests 모듈의 multipart/form-data(파일 전송) 형식 (0) | 2020.07.16 |
Python Reuqests 모듈 시 time 얻는법 (0) | 2020.02.13 |
shodan의 Synology NAS의 UPNP 제품명 알아오는 코드 (0) | 2019.12.04 |
requests - MD5 digest auth(다이제스트 인증) (0) | 2019.11.25 |