Skip to content

Commit

Permalink
[Security Solution] Update TLS fields used in drag-and-drop (#78815)
Browse files Browse the repository at this point in the history
  • Loading branch information
patrykkopycinski authored Oct 6, 2020
1 parent c240936 commit 6f9f061
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export const getTlsColumns = (tableId: string): TlsColumns => [
render: (sha1) =>
getRowItemDraggable({
rowItem: sha1,
attrName: 'tls.server_certificate.fingerprint.sha1',
attrName: 'tls.server.hash.sha1',
idPrefix: `${tableId}-${sha1}-table-sha1`,
}),
},
Expand All @@ -77,7 +77,7 @@ export const getTlsColumns = (tableId: string): TlsColumns => [
render: ({ _id, ja3 }) =>
getRowItemDraggables({
rowItems: ja3,
attrName: 'tls.fingerprints.ja3.hash',
attrName: 'tls.server.ja3s',
idPrefix: `${tableId}-${_id}-table-ja3`,
}),
},
Expand All @@ -90,7 +90,7 @@ export const getTlsColumns = (tableId: string): TlsColumns => [
render: ({ _id, notAfter }) =>
getRowItemDraggables({
rowItems: notAfter,
attrName: 'tls.server_certificate.not_after',
attrName: 'tls.server.not_after',
idPrefix: `${tableId}-${_id}-table-notAfter`,
render: (validUntil) => (
<LocalizedDateTooltip date={moment(new Date(validUntil)).toDate()}>
Expand Down

0 comments on commit 6f9f061

Please sign in to comment.