mirror of
https://github.com/gchq/CyberChef
synced 2025-12-23 11:43:39 +00:00
Fixed JA4 version fallback value
This commit is contained in:
@@ -44,7 +44,7 @@ export function toJA4(bytes) {
|
|||||||
the TLS version is the value of the Protocol Version. Handshake version (located at the top of the packet)
|
the TLS version is the value of the Protocol Version. Handshake version (located at the top of the packet)
|
||||||
should be ignored.
|
should be ignored.
|
||||||
*/
|
*/
|
||||||
let version = tlsr.version.value;
|
let version = tlsr.handshake.value.helloVersion.value;
|
||||||
for (const ext of tlsr.handshake.value.extensions.value) {
|
for (const ext of tlsr.handshake.value.extensions.value) {
|
||||||
if (ext.type.value === "supported_versions") {
|
if (ext.type.value === "supported_versions") {
|
||||||
version = parseHighestSupportedVersion(ext.value.data);
|
version = parseHighestSupportedVersion(ext.value.data);
|
||||||
@@ -189,7 +189,7 @@ export function toJA4S(bytes) {
|
|||||||
the TLS version is the value of the Protocol Version. Handshake version (located at the top of the packet)
|
the TLS version is the value of the Protocol Version. Handshake version (located at the top of the packet)
|
||||||
should be ignored.
|
should be ignored.
|
||||||
*/
|
*/
|
||||||
let version = tlsr.version.value;
|
let version = tlsr.handshake.value.helloVersion.value;
|
||||||
for (const ext of tlsr.handshake.value.extensions.value) {
|
for (const ext of tlsr.handshake.value.extensions.value) {
|
||||||
if (ext.type.value === "supported_versions") {
|
if (ext.type.value === "supported_versions") {
|
||||||
version = parseHighestSupportedVersion(ext.value.data);
|
version = parseHighestSupportedVersion(ext.value.data);
|
||||||
|
|||||||
Reference in New Issue
Block a user