Skip to content

Commit b153224

Browse files
authoredSep 20, 2024··
Merge branch 'master' into master
2 parents 9229fe9 + d635cca commit b153224

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed
 

‎package-lock.json

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cyberchef",
3-
"version": "10.19.0",
3+
"version": "10.19.2",
44
"description": "The Cyber Swiss Army Knife for encryption, encoding, compression and data analysis.",
55
"author": "n1474335 <n1474335@gmail.com>",
66
"homepage": "https://gchq.github.io/CyberChef",
@@ -55,7 +55,7 @@
5555
"babel-plugin-dynamic-import-node": "^2.3.3",
5656
"babel-plugin-transform-builtin-extend": "1.1.2",
5757
"base64-loader": "^1.0.0",
58-
"chromedriver": "^125.0.3",
58+
"chromedriver": "^127.0.2",
5959
"cli-progress": "^3.12.0",
6060
"colors": "^1.4.0",
6161
"copy-webpack-plugin": "^12.0.2",

‎src/core/lib/JA4.mjs

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export function toJA4(bytes) {
4444
the TLS version is the value of the Protocol Version. Handshake version (located at the top of the packet)
4545
should be ignored.
4646
*/
47-
let version = tlsr.version.value;
47+
let version = tlsr.handshake.value.helloVersion.value;
4848
for (const ext of tlsr.handshake.value.extensions.value) {
4949
if (ext.type.value === "supported_versions") {
5050
version = parseHighestSupportedVersion(ext.value.data);
@@ -189,7 +189,7 @@ export function toJA4S(bytes) {
189189
the TLS version is the value of the Protocol Version. Handshake version (located at the top of the packet)
190190
should be ignored.
191191
*/
192-
let version = tlsr.version.value;
192+
let version = tlsr.handshake.value.helloVersion.value;
193193
for (const ext of tlsr.handshake.value.extensions.value) {
194194
if (ext.type.value === "supported_versions") {
195195
version = parseHighestSupportedVersion(ext.value.data);

0 commit comments

Comments
 (0)
Please sign in to comment.