mirror of
https://github.com/valitydev/wazuh-kibana-app.git
synced 2024-11-06 09:55:18 +00:00
84 lines
1.9 KiB
JavaScript
84 lines
1.9 KiB
JavaScript
/*
|
|
* Wazuh app - Wazuh CSV column keys
|
|
* Copyright (C) 2015-2019 Wazuh, Inc.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Find more information about this on the LICENSE file.
|
|
*/
|
|
export const KeyEquivalenece = {
|
|
id: 'ID',
|
|
timestamp: 'Timestamp',
|
|
url: 'URL',
|
|
version: 'Version',
|
|
'os.name': 'OS name',
|
|
'os.version': 'OS version',
|
|
status: 'Status',
|
|
group: 'Group',
|
|
ip: 'IP',
|
|
description: 'Description',
|
|
tag: 'Tag',
|
|
level: 'Level',
|
|
conf_sum: 'Group checksum',
|
|
merged_sum: 'Configuration checksum',
|
|
hash: 'Checksum',
|
|
filename: 'File',
|
|
file: 'File',
|
|
gdpr: 'GDPR',
|
|
pci: 'PCI',
|
|
groups: 'Groups',
|
|
name: 'Name',
|
|
count: 'Count',
|
|
'details.program_name': 'Program name',
|
|
'details.order': 'Order',
|
|
vendor: 'Vendor',
|
|
type: 'Type',
|
|
architecture: 'Architecture',
|
|
node_name: 'Node',
|
|
dateAdd: 'Registration date',
|
|
manager_host: 'Manager',
|
|
manager: 'Manager',
|
|
lastKeepAlive: 'Last keep alive',
|
|
os: 'OS',
|
|
path: 'Path',
|
|
details: 'Details',
|
|
position: 'Position',
|
|
configSum: 'Group checksum',
|
|
mergedSum: 'Configuration checksum',
|
|
key: 'Key',
|
|
scan_id: 'Scan ID',
|
|
format: 'Format',
|
|
scan_time: 'Scan date',
|
|
state: 'State',
|
|
mac: 'MAC',
|
|
gateway: 'Gateway',
|
|
dhcp: 'DHCP',
|
|
iface: 'Interface',
|
|
broadcast: 'Broadcast',
|
|
proto: 'Protocol',
|
|
address: 'Address',
|
|
protocol: 'Protocol',
|
|
netmask: 'Netmask',
|
|
'local.ip': 'Local IP',
|
|
'remote.ip': 'Remote IP',
|
|
'local.port': 'Local port',
|
|
'remote.port': 'Remote port',
|
|
euser: 'Effective user',
|
|
nice: 'Priority',
|
|
size: 'Size',
|
|
uname: 'User',
|
|
gname: 'Group',
|
|
perm: 'Permissions',
|
|
inode: 'Inode',
|
|
uid: 'User ID',
|
|
gid: 'Group ID',
|
|
mtime: 'Last modified',
|
|
priority: 'Priority',
|
|
cmd: 'CMD',
|
|
nlwp: 'NLWP',
|
|
process: 'Process'
|
|
};
|