Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Winlogbeat] Improve ECS field mappings in Sysmon module. #18381

Merged
merged 1 commit into from
May 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
*Winlogbeat*

- Add support to Sysmon file delete events (event ID 23). {issue}18094[18094]
- Improve ECS field mappings in Sysmon module. `related.hash`, `related.ip`, and `related.user` are now populated. {issue}18364[18364]
- Improve ECS field mappings in Sysmon module. Hashes are now also populated to the corresponding `process.hash`, `process.pe.imphash`, `file.hash`, or `file.pe.imphash`. {issue}18364[18364]
- Improve ECS field mappings in Sysmon module. `file.name`, `file.directory`, and `file.extension` are now populated. {issue}18364[18364]
- Improve ECS field mappings in Sysmon module. `rule.name` is populated for all events when present. {issue}18364[18364]

*Functionbeat*

Expand Down
131 changes: 120 additions & 11 deletions x-pack/winlogbeat/module/sysmon/config/winlogbeat-sysmon.js
Original file line number Diff line number Diff line change
Expand Up @@ -332,10 +332,21 @@ var sysmon = (function () {
evt.Delete("user");
evt.Put("user.domain", userParts[0]);
evt.Put("user.name", userParts[1]);
evt.AppendTo("related.user", userParts[1]);
evt.Delete("winlog.event_data.User");
}
};

var setRuleName = function (evt) {
var ruleName = evt.Get("winlog.event_data.RuleName");
if (!ruleName || ruleName === "-") {
return;
}

evt.Put("rule.name", ruleName);
evt.Delete("winlog.event_data.RuleName");
};

var addNetworkDirection = function (evt) {
switch (evt.Get("winlog.event_data.Initiated")) {
case "true":
Expand All @@ -361,7 +372,39 @@ var sysmon = (function () {
evt.Delete("winlog.event_data.DestinationIsIpv6");
};

var addHashes = function (evt, hashField) {
var setRelatedIP = function (evt) {
var sourceIP = evt.Get("source.ip");
if (sourceIP) {
evt.AppendTo("related.ip", sourceIP);
}

var destIP = evt.Get("destination.ip");
if (destIP) {
evt.AppendTo("related.ip", destIP);
}
};

var getHashPath = function (namespace, hashKey) {
if (hashKey === "imphash") {
return namespace + ".pe.imphash";
}

return namespace + ".hash." + hashKey;
};

var emptyHashRegex = /^0*$/;

var hashIsEmpty = function (value) {
if (!value) {
return true;
}

return emptyHashRegex.test(value);
}

// Adds hashes from the given hashField in the event to the 'hash' key
// in the specified namespace. It also adds all the hashes to 'related.hash'.
var addHashes = function (evt, namespace, hashField) {
var hashes = evt.Get(hashField);
evt.Delete(hashField);
hashes.split(",").forEach(function (hash) {
Expand All @@ -372,16 +415,31 @@ var sysmon = (function () {

var key = parts[0].toLowerCase();
var value = parts[1].toLowerCase();

if (hashIsEmpty(value)) {
return;
}

var path = getHashPath(namespace, key);

evt.Put(path, value);
evt.AppendTo("related.hash", value);

// TODO: remove in 8.0, see (https://github.com/elastic/beats/issues/18364).
evt.Put("hash." + key, value);
});
};

var splitHashes = function (evt) {
addHashes(evt, "winlog.event_data.Hashes");
var splitFileHashes = function (evt) {
addHashes(evt, "file", "winlog.event_data.Hashes");
};

var splitHash = function (evt) {
addHashes(evt, "winlog.event_data.Hash");
var splitFileHash = function (evt) {
addHashes(evt, "file", "winlog.event_data.Hash");
};

var splitProcessHashes = function (evt) {
addHashes(evt, "process", "winlog.event_data.Hashes");
};

var removeEmptyEventData = function (evt) {
Expand Down Expand Up @@ -477,6 +535,28 @@ var sysmon = (function () {
evt.Put("file.code_signature.valid", signatureStatus === "Valid");
};

var setAdditionalFileFieldsFromPath = function (evt) {
var filePath = evt.Get("file.path");
if (!filePath) {
return;
}

evt.Put("file.name", path.basename(filePath));
evt.Put("file.directory", path.dirname(filePath));

// path returns extensions with a preceding ., e.g.: .tmp, .png
// according to ecs the expected format is without it, so we need to remove it.
var ext = path.extname(filePath);
marc-gr marked this conversation as resolved.
Show resolved Hide resolved
if (!ext) {
return;
}

if (ext.charAt(0) === ".") {
ext = ext.substr(1);
}
evt.Put("file.extension", ext);
};

// https://docs.microsoft.com/en-us/windows/win32/sysinfo/registry-hives
var commonRegistryHives = {
HKEY_CLASSES_ROOT: "HKCR",
Expand Down Expand Up @@ -606,10 +686,11 @@ var sysmon = (function () {
ignore_missing: true,
fail_on_error: false,
})
.Add(setRuleName)
.Add(setProcessNameUsingExe)
.Add(splitProcessArgs)
.Add(addUser)
.Add(splitHashes)
.Add(splitProcessHashes)
.Add(setParentProcessNameUsingExe)
.Add(splitParentProcessArgs)
.Add(removeEmptyEventData)
Expand Down Expand Up @@ -652,6 +733,8 @@ var sysmon = (function () {
ignore_missing: true,
fail_on_error: false,
})
.Add(setRuleName)
.Add(setAdditionalFileFieldsFromPath)
.Add(setProcessNameUsingExe)
.Add(removeEmptyEventData)
.Build();
Expand Down Expand Up @@ -727,6 +810,8 @@ var sysmon = (function () {
ignore_missing: true,
fail_on_error: false,
})
.Add(setRuleName)
.Add(setRelatedIP)
.Add(setProcessNameUsingExe)
.Add(addUser)
.Add(addNetworkDirection)
Expand Down Expand Up @@ -792,6 +877,7 @@ var sysmon = (function () {
ignore_missing: true,
fail_on_error: false,
})
.Add(setRuleName)
.Add(setProcessNameUsingExe)
.Add(removeEmptyEventData)
.Build();
Expand Down Expand Up @@ -833,8 +919,10 @@ var sysmon = (function () {
],
fail_on_error: false,
})
.Add(setRuleName)
.Add(setAdditionalFileFieldsFromPath)
.Add(setAdditionalSignatureFields)
.Add(splitHashes)
.Add(splitFileHashes)
.Add(removeEmptyEventData)
.Build();

Expand Down Expand Up @@ -888,9 +976,11 @@ var sysmon = (function () {
],
fail_on_error: false,
})
.Add(setRuleName)
.Add(setAdditionalFileFieldsFromPath)
.Add(setAdditionalSignatureFields)
.Add(setProcessNameUsingExe)
.Add(splitHashes)
.Add(splitFileHashes)
.Add(removeEmptyEventData)
.Build();

Expand Down Expand Up @@ -921,6 +1011,7 @@ var sysmon = (function () {
ignore_missing: true,
fail_on_error: false,
})
.Add(setRuleName)
.Add(setProcessNameUsingExe)
.Add(removeEmptyEventData)
.Build();
Expand Down Expand Up @@ -956,6 +1047,8 @@ var sysmon = (function () {
ignore_missing: true,
fail_on_error: false,
})
.Add(setRuleName)
.Add(setAdditionalFileFieldsFromPath)
.Add(setProcessNameUsingExe)
.Add(removeEmptyEventData)
.Build();
Expand Down Expand Up @@ -998,6 +1091,7 @@ var sysmon = (function () {
ignore_missing: true,
fail_on_error: false,
})
.Add(setRuleName)
.Add(setProcessNameUsingExe)
.Add(removeEmptyEventData)
.Build();
Expand Down Expand Up @@ -1039,6 +1133,8 @@ var sysmon = (function () {
ignore_missing: true,
fail_on_error: false,
})
.Add(setRuleName)
.Add(setAdditionalFileFieldsFromPath)
.Add(setProcessNameUsingExe)
.Add(removeEmptyEventData)
.Build();
Expand Down Expand Up @@ -1070,6 +1166,7 @@ var sysmon = (function () {
ignore_missing: true,
fail_on_error: false,
})
.Add(setRuleName)
.Add(setRegistryFields)
.Add(setProcessNameUsingExe)
.Add(removeEmptyEventData)
Expand Down Expand Up @@ -1102,6 +1199,7 @@ var sysmon = (function () {
ignore_missing: true,
fail_on_error: false,
})
.Add(setRuleName)
.Add(setRegistryFields)
.Add(setProcessNameUsingExe)
.Add(removeEmptyEventData)
Expand Down Expand Up @@ -1134,6 +1232,7 @@ var sysmon = (function () {
ignore_missing: true,
fail_on_error: false,
})
.Add(setRuleName)
.Add(setRegistryFields)
.Add(setProcessNameUsingExe)
.Add(removeEmptyEventData)
Expand Down Expand Up @@ -1176,8 +1275,10 @@ var sysmon = (function () {
ignore_missing: true,
fail_on_error: false,
})
.Add(setRuleName)
.Add(setAdditionalFileFieldsFromPath)
.Add(setProcessNameUsingExe)
.Add(splitHash)
.Add(splitFileHash)
.Add(removeEmptyEventData)
.Build();

Expand Down Expand Up @@ -1235,6 +1336,7 @@ var sysmon = (function () {
ignore_missing: true,
fail_on_error: false,
})
.Add(setRuleName)
.Add(setProcessNameUsingExe)
.Add(removeEmptyEventData)
.Build();
Expand Down Expand Up @@ -1276,6 +1378,7 @@ var sysmon = (function () {
ignore_missing: true,
fail_on_error: false,
})
.Add(setRuleName)
.Add(setProcessNameUsingExe)
.Add(removeEmptyEventData)
.Build();
Expand All @@ -1294,6 +1397,7 @@ var sysmon = (function () {
ignore_missing: true,
fail_on_error: false,
})
.Add(setRuleName)
.Add(addUser)
.Add(removeEmptyEventData)
.Build();
Expand All @@ -1316,6 +1420,7 @@ var sysmon = (function () {
ignore_missing: true,
fail_on_error: false,
})
.Add(setRuleName)
.Add(addUser)
.Add(setProcessNameUsingExe)
.Add(removeEmptyEventData)
Expand All @@ -1335,6 +1440,7 @@ var sysmon = (function () {
ignore_missing: true,
fail_on_error: false,
})
.Add(setRuleName)
.Add(addUser)
.Add(removeEmptyEventData)
.Build();
Expand Down Expand Up @@ -1389,6 +1495,7 @@ var sysmon = (function () {
field: "dns.question.name",
target_field: "dns.question.registered_domain",
})
.Add(setRuleName)
.Add(translateDnsQueryStatus)
.Add(splitDnsQueryResults)
.Add(setProcessNameUsingExe)
Expand Down Expand Up @@ -1425,7 +1532,7 @@ var sysmon = (function () {
},
{
from: "winlog.event_data.TargetFilename",
to: "file.name",
to: "file.path",
},
{
from: "winlog.event_data.Image",
Expand All @@ -1446,9 +1553,11 @@ var sysmon = (function () {
ignore_missing: true,
fail_on_error: false,
})
.Add(setRuleName)
.Add(addUser)
.Add(splitHashes)
.Add(splitProcessHashes)
.Add(setProcessNameUsingExe)
.Add(setAdditionalFileFieldsFromPath)
.Add(removeEmptyEventData)
.Build();

Expand Down
Binary file not shown.
Loading