-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.py
82 lines (73 loc) · 2.54 KB
/
index.py
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
import argparse
import os
import sys
import constants
import ec_curves
import extensions
import signature_algorithms
import tls
from client import Client
def args():
parser = argparse.ArgumentParser()
parser.add_argument(dest="host")
parser.add_argument('-c', '--cipher', dest="cipher", default=False, nargs='?')
return parser.parse_args()
def run(host, cipher):
port = 443
# TLSv1.0 is not supported
tls_version = tls.TLSV1_2()
exts = (
extensions.ServerNameExtension(host),
extensions.SignatureAlgorithmExtension((
signature_algorithms.RsaPkcs1Sha256,
signature_algorithms.RsaPkcs1Sha1,
signature_algorithms.EcdsaSecp256r1Sha256,
signature_algorithms.EcdsaSecp384r1Sha384
)),
extensions.ECPointFormatsExtension(),
extensions.ApplicationLayerProtocolNegotiationExtension((
constants.EXTENSION_ALPN_HTTP_1_1,
# constants.EXTENSION_ALPN_HTTP_2,
)),
extensions.SupportedGroupsExtension((ec_curves.SECP256R1(),)),
extensions.SupportedVersionsExtension((tls_version,)),
# extensions.SessionTicketExtension()
# extensions.SignedCertificateTimestampExtension(),
# extensions.StatusRequestExtension()
)
if cipher:
cipher_suites = [cipher]
else:
cipher_suites = (
'ECDHE-ECDSA-AES256-GCM-SHA384',
'ECDHE-RSA-AES256-GCM-SHA384',
'ECDHE-RSA-AES256-SHA384',
'ECDHE-RSA-AES256-SHA',
'AES256-GCM-SHA384',
'AES256-SHA256',
'AES256-SHA',
'AES128-SHA',
)
# cipher_suites = ('ECDHE-RSA-AES128-SHA',)
# cipher_suites = ('DHE-RSA-AES128-SHA', )
# cipher_suites = ('AES256-SHA', )
# cipher_suites = ('AES256-GCM-SHA384', )
# cipher_suites = ('ECDHE-RSA-AES256-SHA384', )
# cipher_suites = ('ECDHE-RSA-AES256-GCM-SHA384', )
# cipher_suites = ('ECDHE-ECDSA-AES256-GCM-SHA384',)
# ssl_key_logfile = os.getenv('SSLKEYLOGFILE')
ssl_key_logfile = "1.txt"
client = Client(host, port, tls_version, cipher_suites, extensions=exts, match_hostname=True,
ssl_key_logfile=ssl_key_logfile)
client.run()
if __name__ == '__main__':
parsed_args = args()
host = parsed_args.host
if host == '-':
for host in sys.stdin:
host = host.strip()
if host == '':
continue
run(host, parsed_args.cipher)
else:
run(host, parsed_args.cipher)