From 1196c545dae780a02b5d176c56c7cdf127f525e1 Mon Sep 17 00:00:00 2001 From: George Vlahavas Date: Wed, 1 Dec 2021 12:44:16 +0200 Subject: [PATCH] Add more json files for ADT, VDM and XLSIEM --- pcap-data/adt.json | 20 ++++++++++++++++++++ pcap-data/vdm.json | 11 +++++++++++ pcap-data/xlsiem.json | 15 +++++++++++++++ 3 files changed, 46 insertions(+) create mode 100644 pcap-data/adt.json create mode 100644 pcap-data/vdm.json create mode 100644 pcap-data/xlsiem.json diff --git a/pcap-data/adt.json b/pcap-data/adt.json new file mode 100644 index 0000000..0690b92 --- /dev/null +++ b/pcap-data/adt.json @@ -0,0 +1,20 @@ +{ + "asset_id": "asset_123", + "timestamp": "1618563125", + "event_alarm": [ + { + "event_alarm_id": "alarm123", + "event_alarm_char": "e" + }, + { + "event_alarm_id": "alarm456", + "event_alarm_char": "e" + }, + { + "event_alarm_id": "alarm789", + "event_alarm_char": "e", + "name": "example" + } + ] +} + diff --git a/pcap-data/vdm.json b/pcap-data/vdm.json new file mode 100644 index 0000000..75c865c --- /dev/null +++ b/pcap-data/vdm.json @@ -0,0 +1,11 @@ +{ + "asset_id": "asset_123", + "timestamp": "1618563125", + "cve": [ + "CVE-123", "CVE-456" + ], + "cwe": [ + "CWE-123", "CWE-456" + ] +} + diff --git a/pcap-data/xlsiem.json b/pcap-data/xlsiem.json new file mode 100644 index 0000000..6914631 --- /dev/null +++ b/pcap-data/xlsiem.json @@ -0,0 +1,15 @@ +{ + "asset_id": "asset_123", + "timestamp": "1618563125", + "event_alarm": [ + { + "event_alarm_id": "alarm_123", + "event_alarm_char": "A", + "name": "TEST", + "source_ip": "192.168.1.1", + "source_port": "5555", + "destination_ip": "192.168.1.10", + "destination_port": "8888" + } + ] +} \ No newline at end of file -- 2.2.2