Skip to content

Commit

Permalink
Fix ja3s impl according to PR74 in master
Browse files Browse the repository at this point in the history
  • Loading branch information
ns-lwu committed Aug 8, 2022
1 parent 382cd37 commit 6c7c26d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/ja3s.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def process_pcap(pcap, any_port=False):
ja3 = [str(server_handshake.version)]

# Cipher Suites (16 bit values)
ja3.append(str(server_handshake.cipher_suite))
ja3.append(str(server_handshake.ciphersuite.code))
ja3 += process_extensions(server_handshake)
ja3 = ",".join(ja3)

Expand Down

0 comments on commit 6c7c26d

Please sign in to comment.