Skip to content

Commit

Permalink
Merge pull request #9692 from Azure/users/v-muuppugundu/MultipleRDPIs…
Browse files Browse the repository at this point in the history
…sues

updated by Account=tolower(Account)
  • Loading branch information
v-atulyadav authored Jan 8, 2024
2 parents 9f06ee7 + db7eeab commit e1c92cb
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ query: |
| where TimeGenerated >= ago(endtime)
| where EventID == 4624 and LogonType == 10
| summarize StartTime = min(TimeGenerated), EndTime = max(TimeGenerated), ComputerCountToday = dcount(Computer), ComputerSet = makeset(Computer), ProcessSet = makeset(ProcessName)
by Account, IpAddress, AccountType, Activity, LogonTypeName),
by Account = tolower(Account), IpAddress, AccountType, Activity, LogonTypeName),
(WindowsEvent
| where TimeGenerated >= ago(endtime)
| where EventID == 4624
Expand All @@ -46,7 +46,7 @@ query: |
| extend Activity="4624 - An account was successfully logged on."
| extend LogonTypeName="10 - RemoteInteractive"
| summarize StartTime = min(TimeGenerated), EndTime = max(TimeGenerated), ComputerCountToday = dcount(Computer), ComputerSet = makeset(Computer), ProcessSet = makeset(ProcessName)
by Account, IpAddress, AccountType, Activity, LogonTypeName)
by Account = tolower(Account), IpAddress, AccountType, Activity, LogonTypeName)
)
| join kind=inner (
(union isfuzzy=true
Expand Down Expand Up @@ -83,7 +83,7 @@ entityMappings:
fieldMappings:
- identifier: Address
columnName: IpAddress
version: 1.2.5
version: 1.2.6
kind: Scheduled
metadata:
source:
Expand Down

0 comments on commit e1c92cb

Please sign in to comment.