Skip to content

Commit 768a423

Browse files
authored
Merge pull request #13372 from andrewj-t/fix/NonDCActiveDirectoryReplication
Update NonDCActiveDirectoryReplication - fix swapped fields
2 parents b1c8c51 + d73cc8c commit 768a423

File tree

6 files changed

+336
-332
lines changed

6 files changed

+336
-332
lines changed

Solutions/Windows Security Events/Analytic Rules/NonDCActiveDirectoryReplication.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ status: Available
2020
tactics:
2121
- CredentialAccess
2222
relevantTechniques:
23-
- T1003
23+
- T1003.006
2424
query: |
2525
// Enter a reference list of hostnames for your DC servers
2626
//let DCServersList = dynamic (["DC01.simulandlabs.com","DC02.simulandlabs.com"]);
@@ -44,7 +44,7 @@ query: |
4444
| project-reorder TimeGenerated, Computer, Account, IpAddress
4545
| extend HostName = tostring(split(Computer, ".")[0]), DomainIndex = toint(indexof(Computer, '.'))
4646
| extend HostNameDomain = iff(DomainIndex != -1, substring(Computer, DomainIndex + 1), Computer)
47-
| extend AccountName = tostring(split(Account, "\\")[0]), AccountNTDomain = tostring(split(Account, "\\")[1])
47+
| extend AccountNTDomain = tostring(split(Account, "\\")[0]), AccountName = tostring(split(Account, "\\")[1])
4848
4949
entityMappings:
5050
- entityType: Account
@@ -67,5 +67,5 @@ entityMappings:
6767
fieldMappings:
6868
- identifier: Address
6969
columnName: IpAddress
70-
version: 1.0.4
70+
version: 1.0.5
7171
kind: Scheduled

Solutions/Windows Security Events/Data/Solution_Windows Security Events.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787

8888
],
8989
"BasePath": "C:\\GitHub\\Azure-Sentinel\\Solutions\\Windows Security Events\\",
90-
"Version": "3.0.9",
90+
"Version": "3.0.10",
9191
"TemplateSpec": true,
9292
"StaticDataConnectorIds": [
9393
"SecurityEvents",
67.2 KB
Binary file not shown.

Solutions/Windows Security Events/Package/createUiDefinition.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -982,7 +982,7 @@
982982
{
983983
"name": "huntingquery38",
984984
"type": "Microsoft.Common.Section",
985-
"label": "User Account added to Built in Domain Local or Global Group",
985+
"label": "User Account added to Built in Sensitive or Privileged Domain Local or Global Group",
986986
"elements": [
987987
{
988988
"name": "huntingquery38-text",

0 commit comments

Comments
 (0)