-
Notifications
You must be signed in to change notification settings - Fork 334
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[conf] Use Common Event Format (CEF) standard
* Use CEF stardard to define normalized types.
- Loading branch information
Chunyong Lin
committed
Sep 5, 2017
1 parent
f7edbcc
commit aefe50d
Showing
3 changed files
with
67 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,65 +1,69 @@ | ||
{ | ||
"carbonblack":{ | ||
"username": ["username"], | ||
"domain": ["domain"], | ||
"path": ["parent_path", "process_path", "path"], | ||
"protocol": ["protocol"], | ||
"vend": ["feed_name"], | ||
"process": ["parent_name", "process_name"], | ||
"name": ["observed_filename", "file_path"], | ||
"cmd": ["cmdline"], | ||
"hashmd5": ["process_md5", "parent_md5", "expect_followon_w_md5", "md5"], | ||
"score": ["report_score"], | ||
"os": ["host_type", "os_type"], | ||
"ipv4": ["ipv4", "comms_ip", "interface_ip", "remote_ip", "local_ip"], | ||
"port": ["port", "remote_port", "local_port"], | ||
"host": ["other_hostnames", "server_name", "hostname", "computer_name"] | ||
"userName": ["username"], | ||
"destinationDomain": ["domain"], | ||
"processPath": ["parent_path", "process_path", "path"], | ||
"filePath": ["path"], | ||
"transportProtocol": ["protocol"], | ||
"processName": ["parent_name", "process_name"], | ||
"fileName": ["observed_filename", "file_path"], | ||
"command": ["cmdline"], | ||
"fileHash": ["process_md5", "parent_md5", "expect_followon_w_md5", "md5"], | ||
"deviceAddress": ["interface_ip", "comms_ip"], | ||
"sourceAddress": ["ipv4", "local_ip"], | ||
"destinationAddress": ["remote_ip"], | ||
"sourcePort": ["port", "local_port"], | ||
"destinationPort": ["remote_port"] | ||
}, | ||
"cloudwatch":{ | ||
"username": ["userName", "owner", "invokedBy"], | ||
"account": ["account", "recipientAccountId"], | ||
"protocol": ["protocol"], | ||
"event_type": ["eventType"], | ||
"event_name": ["eventName"], | ||
"userName": ["userName", "owner", "invokedBy"], | ||
"sourceAccount": ["account"], | ||
"destinationAccount": ["recipientAccountId"], | ||
"transportProtocol": ["protocol"], | ||
"eventType": ["eventType"], | ||
"eventName": ["eventName"], | ||
"region": ["region"], | ||
"agent": ["userAgent"], | ||
"ipv4": ["destination", "source", "sourceIPAddress"], | ||
"port": ["srcport", "destport"] | ||
"userAgent": ["userAgent"], | ||
"sourceAddress": ["source", "sourceIPAddress"], | ||
"destinationAddress": ["destination"], | ||
"sourcePort": ["srcport"], | ||
"destinationPort": ["destport"] | ||
}, | ||
"cloudtrail": { | ||
"account": ["account", "recipientAccountId", "accountId"], | ||
"event_type": ["eventType"], | ||
"event_name": ["eventName"], | ||
"sourceAccount": ["account", "accountId"], | ||
"destinationAccount": ["recipientAccountId"], | ||
"eventType": ["eventType"], | ||
"eventName": ["eventName"], | ||
"region": ["region", "awsRegion"], | ||
"user_type": ["type"], | ||
"agent": ["userAgent"], | ||
"ipv4": ["sourceIPAddress"] | ||
"userAgent": ["userAgent"], | ||
"sourceAddress": ["sourceIPAddress"] | ||
}, | ||
"ghe": { | ||
"process": ["program"], | ||
"username": ["current_user"], | ||
"ipv4": ["remote_address"], | ||
"port": ["port"], | ||
"host": ["host"] | ||
"processName": ["program"], | ||
"userName": ["current_user"], | ||
"destinationAddress": ["remote_address"], | ||
"sourcePort": ["port"] | ||
}, | ||
"osquery": { | ||
"username": ["username", "user"], | ||
"path": ["path"], | ||
"protocol": ["protocol"], | ||
"sev": ["severity"], | ||
"cluster": ["envIdentifier"], | ||
"role": ["roleIdentifier"], | ||
"cmd": ["cmdline", "command"], | ||
"msg": ["message"], | ||
"ipv4": ["destination", "remote_address", "host", "source", "local_address", "gateway", "address"], | ||
"port": ["local_port", "remote_port", "port"], | ||
"host": ["hostIdentifier"] | ||
"userName": ["username", "user"], | ||
"filePath": ["path"], | ||
"transportProtocol": ["protocol"], | ||
"severity": ["severity"], | ||
"environmentIdentifier": ["envIdentifier"], | ||
"roleIdentifier": ["roleIdentifier"], | ||
"command": ["cmdline", "command"], | ||
"message": ["message"], | ||
"sourceAddress": ["host", "source", "local_address", "address"], | ||
"destinationAddress": ["destination", "remote_address", "gateway"], | ||
"sourcePort": ["local_port", "port"], | ||
"destinationPort": ["remote_port"] | ||
}, | ||
"pan": { | ||
"username": ["srcuser", "dstuser"], | ||
"protocol": ["proto"], | ||
"ipv4": ["src", "natsrc", "dst", "natdst"], | ||
"port": ["dport", "sport", "natsport", "natdport"], | ||
"host": ["sourceName"] | ||
"userName": ["srcuser", "dstuser"], | ||
"transportProtocol": ["proto"], | ||
"sourceAddress": ["src", "natsrc"], | ||
"destinationAddress": ["dst", "natdst"], | ||
"sourcePort": ["sport", "natsport"], | ||
"destinationPort": ["dport", "natdport"] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
{ | ||
"cloudwatch":{ | ||
"username": ["userName", "owner", "invokedBy"], | ||
"account": ["account", "recipientAccountId"], | ||
"protocol": ["protocol"], | ||
"event_type": ["eventType"], | ||
"event_name": ["eventName"], | ||
"userName": ["userName", "owner", "invokedBy"], | ||
"sourceAccount": ["account", "recipientAccountId"], | ||
"transportProtocol": ["protocol"], | ||
"eventType": ["eventType"], | ||
"eventName": ["eventName"], | ||
"region": ["region"], | ||
"agent": ["userAgent"], | ||
"ipv4": ["destination", "source", "sourceIPAddress"], | ||
"port": ["srcport", "destport"] | ||
"userAgent": ["userAgent"], | ||
"sourceAddress": ["source", "sourceIPAddress"], | ||
"destinationAddress": ["destination"], | ||
"sourcePort": ["srcport"], | ||
"destinationPort": ["destport"] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters