Skip to content

Commit

Permalink
Add registry category to events
Browse files Browse the repository at this point in the history
  • Loading branch information
marc-gr committed Feb 3, 2021
1 parent dfaf531 commit f468000
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ var security = (function () {
"4634": [["authentication"], ["end"], "logged-out"],
"4647": [["authentication"], ["end"], "logged-out"],
"4648": [["authentication"], ["start"], "logged-in-explicit"],
"4657": [["configuration"], ["change"], "registry-value-modified"],
"4657": [["registry", "configuration"], ["change"], "registry-value-modified"],
"4670": [["iam", "configuration"],["admin", "change"],"permissions-changed"],
"4672": [["iam"], ["admin"], "logged-in-special"],
"4673": [["iam"], ["admin"], "privileged-service-called"],
Expand Down
6 changes: 3 additions & 3 deletions x-pack/winlogbeat/module/sysmon/config/winlogbeat-sysmon.js
Original file line number Diff line number Diff line change
Expand Up @@ -1195,7 +1195,7 @@ var sysmon = (function () {
.Add(parseUtcTime)
.AddFields({
fields: {
category: ["configuration"],
category: ["configuration", "registry"],
type: ["change"],
},
target: "event",
Expand Down Expand Up @@ -1234,7 +1234,7 @@ var sysmon = (function () {
.Add(parseUtcTime)
.AddFields({
fields: {
category: ["configuration"],
category: ["configuration", "registry"],
type: ["change"],
},
target: "event",
Expand Down Expand Up @@ -1273,7 +1273,7 @@ var sysmon = (function () {
.Add(parseUtcTime)
.AddFields({
fields: {
category: ["configuration"],
category: ["configuration", "registry"],
type: ["change"],
},
target: "event",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"@timestamp": "2020-05-05T14:57:40.589Z",
"event": {
"category": [
"configuration"
"configuration",
"registry"
],
"code": 13,
"kind": "event",
Expand Down Expand Up @@ -67,7 +68,8 @@
"@timestamp": "2020-05-05T14:57:44.714Z",
"event": {
"category": [
"configuration"
"configuration",
"registry"
],
"code": 13,
"kind": "event",
Expand Down Expand Up @@ -125,7 +127,8 @@
"@timestamp": "2020-05-05T14:57:44.714Z",
"event": {
"category": [
"configuration"
"configuration",
"registry"
],
"code": 13,
"kind": "event",
Expand Down Expand Up @@ -189,7 +192,8 @@
"@timestamp": "2020-05-05T14:57:46.808Z",
"event": {
"category": [
"configuration"
"configuration",
"registry"
],
"code": 13,
"kind": "event",
Expand Down Expand Up @@ -247,7 +251,8 @@
"@timestamp": "2020-05-05T14:57:46.808Z",
"event": {
"category": [
"configuration"
"configuration",
"registry"
],
"code": 13,
"kind": "event",
Expand Down

0 comments on commit f468000

Please sign in to comment.