-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
323 lines (259 loc) · 10.1 KB
/
main.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
#!/usr/bin/env python3
# https://tls13.xargs.org/
import sys
from random import randbytes
from time import sleep
from hashlib import sha384
import hmac
from Crypto.Cipher import AES
from Crypto.Signature import pss
from Crypto.PublicKey import RSA
from Crypto.Hash import SHA256
from cryptography.hazmat.primitives.asymmetric import x25519
from utils import ByteWriter
from hkdf import hkdf_extract, hkdf_expand_label
from tls import (
Handshake,
HandshakeType,
HandshakeVersion,
HandshakeExtension,
HandshakeExtensionType,
KeyShareEntry,
KeyShareExtension
)
from record import (
Record,
RecordContentType,
RecordVersion
)
from cipher_suites import CipherSuite
def parse_tls_packet(data: bytes) -> None:
client_record = Record.from_bytes(data)
print(client_record)
assert data[:len(client_record)] == client_record.to_bytes()
if client_record.content_type != RecordContentType.HANDSHAKE:
print("Nope")
return
client_hello = Handshake.from_bytes(client_record.data)
assert client_hello.type == HandshakeType.CLIENT_HELLO
assert data[5:] == client_hello.to_bytes()
print(client_hello)
if CipherSuite.TLS_AES_256_GCM_SHA384 not in client_hello.cipher_suites:
print("TLS_AES_256_GCM_SHA384 is not supported by client")
return
# read the client's public key
client_key_share = next(filter(
lambda ext: ext.type == HandshakeExtensionType.KEY_SHARE,
client_hello.extensions
), None)
if client_key_share is None:
print("Handshake does not contain the Key Share extension")
return
key_share_ext = KeyShareExtension.from_bytes(client_key_share.data)
client_pub_key = next(filter(
lambda entry: entry.group == 29, key_share_ext.entries), None)
if client_pub_key is None:
print("Handshake does not contain the x25519 Key Share Entry")
return
client_pub_key = client_pub_key.key
print(f"Client's public key: 0x{client_pub_key[:8].hex()} ...")
# TODO: To generate
server_priv_key = bytes.fromhex(
"909192939495969798999a9b9c9d9e9fa0a1a2a3a4a5a6a7a8a9aaabacadaeaf")
server_pub_key = bytes.fromhex(
"9fd7ad6dcff4298dd3f96d5b1b2af910a0535b1488d7f8fabb349a982880b615")
server_random = bytes.fromhex(
"707172737475767778797a7b7c7d7e7f808182838485868788898a8b8c8d8e8f")
server_session_id = bytes.fromhex(
"e0e1e2e3e4e5e6e7e8e9eaebecedeeeff0f1f2f3f4f5f6f7f8f9fafbfcfdfeff")
# server key exchange generation
key_share_server_pub = KeyShareEntry(group=29, key=server_pub_key)
# server hello
server_hello = Handshake(
type=HandshakeType.SERVER_HELLO,
version=HandshakeVersion.TLS_1_2,
random=server_random,
session_id=server_session_id,
cipher_suites=[CipherSuite.TLS_AES_256_GCM_SHA384],
compression_methods=[0],
extensions=[
HandshakeExtension(
type=HandshakeExtensionType.SUPPORTED_VERSIONS,
data=HandshakeVersion.TLS_1_3.to_bytes(2, "big")
),
HandshakeExtension(
type=HandshakeExtensionType.KEY_SHARE,
data=key_share_server_pub.to_bytes()
)
]
)
server_hello_record = Record(
RecordContentType.HANDSHAKE,
RecordVersion.TLS_1_2,
server_hello.to_bytes()
)
# hello hash
hello_hash = bytes.fromhex(
sha384(client_hello.to_bytes() + server_hello.to_bytes()).hexdigest())
# shared secret
priv = x25519.X25519PrivateKey.from_private_bytes(server_priv_key)
pub = x25519.X25519PublicKey.from_public_bytes(client_pub_key)
shared_secret = priv.exchange(pub)
early_secret = hkdf_extract(b"\x00", b"\x00" * 48, hash=sha384)
empty_hash = bytes.fromhex(sha384(b"").hexdigest())
derived_secret = hkdf_expand_label(
early_secret,
label=b"derived",
hash_value=empty_hash,
length=48,
hash=sha384
)
handshake_secret = hkdf_extract(
salt=derived_secret,
input_key_material=shared_secret,
hash=sha384
)
server_secret = hkdf_expand_label(
handshake_secret,
label=b"s hs traffic",
hash_value=hello_hash,
length=48,
hash=sha384
)
server_handshake_key = hkdf_expand_label(
server_secret,
label=b"key",
hash_value=b"",
length=32,
hash=sha384
)
server_handshake_iv = hkdf_expand_label(
server_secret,
label=b"iv",
hash_value=b"",
length=12,
hash=sha384
)
print(f"Handshake secret : {handshake_secret.hex()}")
print(f"Server secret : {server_secret.hex()}")
print(f"Server handshake key : {server_handshake_key.hex()}")
print(f"Server handshake IV : {server_handshake_iv.hex()}")
server_change_cipher_spec = Record(
RecordContentType.CHANGE_CIPHER_SPEC,
RecordVersion.TLS_1_2,
b"\x01"
)
cipher = AES.new(
server_handshake_key,
AES.MODE_GCM,
server_handshake_iv
)
cipher.update(bytes.fromhex("1703030017")) # record header
encrypted_data, mac_tag = cipher.encrypt_and_digest(bytes.fromhex("08000002000016"))
#print()
#print(encrypted_data.hex())
#print(mac_tag.hex())
server_application_data_1 = Record(
RecordContentType.APPLICATION_DATA,
RecordVersion.TLS_1_2,
encrypted_data + mac_tag
)
# wrapped record: server certificate
writer = ByteWriter()
certificate = bytes.fromhex("3082032130820209a0030201020208155a92adc2048f90300d06092a864886f70d01010b05003022310b300906035504061302555331133011060355040a130a4578616d706c65204341301e170d3138313030353031333831375a170d3139313030353031333831375a302b310b3009060355040613025553311c301a060355040313136578616d706c652e756c666865696d2e6e657430820122300d06092a864886f70d01010105000382010f003082010a0282010100c4803606bae7476b089404eca7b691043ff792bc19eefb7d74d7a80d001e7b4b3a4ae60fe8c071fc73e7024c0dbcf4bdd11d396bba70464a13e94af83df3e10959547bc955fb412da3765211e1f3dc776caa53376eca3aecbec3aab73b31d56cb6529c8098bcc9e02818e20bf7f8a03afd1704509ece79bd9f39f1ea69ec47972e830fb5ca95de95a1e60422d5eebe527954a1e7bf8a86f6466d0d9f16951a4cf7a04692595c1352f2549e5afb4ebfd77a37950144e4c026874c653e407d7d23074401f484ffd08f7a1fa05210d1f4f0d5ce79702932e2cabe701fdfad6b4bb71101f44bad666a11130fe2ee829e4d029dc91cdd6716dbb9061886edc1ba94210203010001a3523050300e0603551d0f0101ff0404030205a0301d0603551d250416301406082b0601050507030206082b06010505070301301f0603551d23041830168014894fde5bcc69e252cf3ea300dfb197b81de1c146300d06092a864886f70d01010b05000382010100591645a69a2e3779e4f6dd271aba1c0bfd6cd75599b5e7c36e533eff3659084324c9e7a504079d39e0d42987ffe3ebdd09c1cf1d914455870b571dd19bdf1d24f8bb9a11fe80fd592ba0398cde11e2651e618ce598fa96e5372eef3d248afde17463ebbfabb8e4d1ab502a54ec0064e92f7819660d3f27cf209e667fce5ae2e4ac99c7c93818f8b2510722dfed97f32e3e9349d4c66c9ea6396d744462a06b42c6d5ba688eac3a017bddfc8e2cfcad27cb69d3ccdca280414465d3ae348ce0f34ab2fb9c618371312b191041641c237f11a5d65c844f0404849938712b959ed685bc5c5dd645ed19909473402926dcb40e3469a15941e8e2cca84bb6084636a0")
writer.write_u8(HandshakeType.CERTIFICATE) # handshake type
writer.write_u24(1 + 3 + 3 + len(certificate) + 2) # length of the data
writer.write_u8(0x00) # request context
writer.write_u24(3 + len(certificate) + 2) # length of the certificate
writer.write_u24(len(certificate)) # length of the first (and only) certificate
writer.write_bytes(certificate) # certificate
writer.write_u16(0x0000) # certificate extensions
writer.write_u8(0x16) # record type
server_certificate = writer.data
cipher = AES.new(
server_handshake_key,
AES.MODE_GCM,
(int.from_bytes(server_handshake_iv, "big") ^ 1).to_bytes(12, "big")
)
cipher.update(bytes.fromhex("1703030343"))
encrypted_data, mac_tag = cipher.encrypt_and_digest(server_certificate)
#print()
#print(encrypted_data.hex())
#print(mac_tag.hex())
server_application_data_2 = Record(
RecordContentType.APPLICATION_DATA,
RecordVersion.TLS_1_2,
encrypted_data + mac_tag
)
# wrapped record: certificate verify
cert_private_key = RSA.import_key(open("certs/key.pem", "rb").read())
h = SHA256.new(hello_hash)
signature = pss.new(cert_private_key).sign(h)
writer = ByteWriter()
writer.write_u8(HandshakeType.CERTIFICATE_VERIFY) # handshake type
writer.write_u24(2 + 2 + len(signature)) # length of the data
writer.write_u16(0x0804) # RSA-PSS-RSAE-SHA256
writer.write_u16(len(signature))
writer.write_bytes(signature)
writer.write_u8(0x16) # record type
certificate_verify = writer.data
cipher = AES.new(
server_handshake_key,
AES.MODE_GCM,
(int.from_bytes(server_handshake_iv, "big") ^ 2).to_bytes(12, "big")
)
cipher.update(b"\x17\x03\x03" + (len(certificate_verify) + 16).to_bytes(2, "big"))
encrypted_data, mac_tag = cipher.encrypt_and_digest(server_certificate)
#print()
#print(encrypted_data.hex())
#print(mac_tag.hex())
server_application_data_3 = Record(
RecordContentType.APPLICATION_DATA,
RecordVersion.TLS_1_2,
encrypted_data + mac_tag
)
# server handshake finished
finished_key = hkdf_expand_label(
server_secret,
label=b"finished",
hash_value=b"",
length=48,
hash=sha384
)
finished_hash = bytes.fromhex(sha384(
client_record.to_bytes() + \
server_hello_record.to_bytes() + \
server_change_cipher_spec.to_bytes() + \
server_application_data_1.to_bytes() + \
server_application_data_2.to_bytes() + \
server_application_data_3.to_bytes()
).hexdigest())
verify_data = bytes.fromhex(
hmac.new(finished_key, finished_hash, sha384).hexdigest())
writer = ByteWriter()
writer.write_u8(HandshakeType.FINISHED) # handshake type
writer.write_u24(len(verify_data))
writer.write_bytes(verify_data)
writer.write_u8(0x16) # record type
handshake_finished = writer.data
cipher = AES.new(
server_handshake_key,
AES.MODE_GCM,
(int.from_bytes(server_handshake_iv, "big") ^ 3).to_bytes(12, "big")
)
cipher.update(b"\x17\x03\x03" + (len(handshake_finished) + 16).to_bytes(2, "big"))
encrypted_data, mac_tag = cipher.encrypt_and_digest(server_certificate)
server_application_data_4 = Record(
RecordContentType.APPLICATION_DATA,
RecordVersion.TLS_1_2,
encrypted_data + mac_tag
)
def main() -> None:
if len(sys.argv) < 2:
print(f"Usage: ./{sys.argv[0]} <filename to TLS raw data>")
sys.exit(1)
with open(sys.argv[1], "rb") as f:
data = f.read()
parse_tls_packet(data)
if __name__ == "__main__":
main()