From af74047b81776c2ea32d82f9145ab60c346c8203 Mon Sep 17 00:00:00 2001 From: Jon Smith Date: Mon, 5 Apr 2021 09:32:04 -0500 Subject: [PATCH] update schema based on processor/hotfix changes --- jc/parsers/systeminfo.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/jc/parsers/systeminfo.py b/jc/parsers/systeminfo.py index 1ec1a7da..75792a53 100644 --- a/jc/parsers/systeminfo.py +++ b/jc/parsers/systeminfo.py @@ -34,7 +34,7 @@ Examples: "system_manufacturer": "VMware, Inc.", "system_model": "VMware7,1", "system_type": "x64-based PC", - "processors": "1 Processor(s) Installed.\n [01]: ...", + "processors": ["Intel64 Family 6 Model 158 Stepping 13 GenuineIntel ~2400 Mhz"], "bios_version": "VMware, Inc. VMW71.00V.11111111.B64.2008100111, 8/10/2020", "windows_directory": "C:\\Windows", "system_directory": "C:\\Windows\\system32", @@ -50,7 +50,7 @@ Examples: "page_file_locations": "C:\\pagefile.sys", "domain": "TEST.local", "logon_server": "\\\\WIN-AA1A1A11AAA", - "hotfixs": "6 Hotfix(s) Installed.\n [01]: KB4578...", + "hotfixs": ["KB4578968", "KB4562830", "KB4570334", "KB4580325", "KB4586864", "KB4594440"], "network_cards": "1 NIC(s) Installed.\n [01]: Int...", "hyperv_requirements": "A hypervisor has been detected. Features required fo..." } @@ -102,7 +102,7 @@ def process(proc_data): "system_manufacturer": "string", "system_model": "string", "system_type": "string", - "processors": "string", + "processors": ["string"], "bios_version": "string", "windows_directory": "string", "system_directory": "string", @@ -118,7 +118,7 @@ def process(proc_data): "page_file_locations": "string", "domain": "string", "logon_server": "string", - "hotfixs": "string", + "hotfixs": ["string"], "network_cards": "string", "hyperv_requirements": "string" }