| | function Send-AzMonitorCustomLogs |
| | { |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | [CmdletBinding()] |
| | param ( |
| | [Parameter(Mandatory=$true)] |
| | [ValidateScript({ |
| | foreach ($f in $_) |
| | { |
| | if( -Not ($f | Test-Path) ){ |
| | throw "File or folder does not exist" |
| | } |
| | } |
| | return $true |
| | })] |
| | [string[]]$LogPath, |
| |
|
| | [Parameter(Mandatory=$true)] |
| | [string]$appId, |
| |
|
| | [Parameter(Mandatory=$true)] |
| | [string]$appSecret, |
| |
|
| | [Parameter(Mandatory=$true)] |
| | [string]$TenantId, |
| |
|
| | [Parameter(Mandatory=$true)] |
| | [string]$DcrImmutableId, |
| |
|
| | [Parameter(Mandatory=$true)] |
| | [string]$DceURI, |
| |
|
| | [Parameter(Mandatory=$true)] |
| | [ValidateSet("SecurityEvent","WindowsEvent","Syslog")] |
| | [string]$TableName, |
| |
|
| | [Parameter(Mandatory=$true)] |
| | [string]$StreamName, |
| |
|
| | [Parameter(Mandatory=$false)] |
| | [string]$TimestampField, |
| |
|
| | [Parameter(Mandatory=$false)] |
| | [switch]$ShowProgressBar |
| | ) |
| |
|
| | If ($PSBoundParameters['Debug']) { |
| | $DebugPreference = 'Continue' |
| | } |
| |
|
| | @(" |
| | _________ .____________ __ .____ ____ |
| | / _____/ ____ ____ __| _/\_ ___ \ __ __ _______/ |_ ____ _____ | | ____ / ___\ ______ |
| | \_____ \ _/ __ \ / \ / __ | / \ \/ | | \/ ___/\ __\/ _ \ / \ | | / _ \ / /_/ >/ ___/ |
| | / \\ ___/ | | \/ /_/ | \ \____| | /\___ \ | | ( <_> )| Y Y \| |___( <_> )\___ / \___ \ |
| | /_______ / \___ >|___| /\____ | \______ /|____//____ > |__| \____/ |__|_| /|_______ \\____//_____/ /____ > |
| | \/ \/ \/ \/ \/ \/ \/ \/ \/ |
| | ___________ _____ _____ .__ __ |
| | \__ ___/____ / _ \ ________ __ __ _______ ____ / \ ____ ____ |__|_/ |_ ____ _______ |
| | | | / _ \ / /_\ \ \___ /| | \\_ __ \_/ __ \ / \ / \ / _ \ / \ | |\ __\/ _ \\_ __ \ |
| | | | ( <_> )/ | \ / / | | / | | \/\ ___/ / Y \( <_> )| | \| | | | ( <_> )| | \/ |
| | |____| \____/ \____|__ //_____ \|____/ |__| \___ >\____|__ / \____/ |___| /|__| |__| \____/ |__| |
| | \/ \/ \/ \/ \/ V0.3 |
| | |
| | Creator: Roberto Rodriguez @Cyb3rWard0g |
| | License: MIT |
| | ") |
| |
|
| | $ErrorActionPreference = "Stop" |
| |
|
| | |
| | $all_datasets = @() |
| | foreach ($file in $LogPath){ |
| | if ((Get-Item $file) -is [system.io.fileinfo]){ |
| | $all_datasets += (Resolve-Path -Path $file) |
| | } |
| | elseif ((Get-Item $file) -is [System.IO.DirectoryInfo]){ |
| | $folderfiles = Get-ChildItem -Path $file -Recurse -Include *.json |
| | $all_datasets += $folderfiles |
| | } |
| | } |
| |
|
| | write-Host "*******************************************" |
| | Write-Host "[+] Obtaining access token.." |
| | |
| | $scope = [System.Net.WebUtility]::UrlEncode("https://monitor.azure.com//.default") |
| | $body = "client_id=$appId&scope=$scope&client_secret=$appSecret&grant_type=client_credentials"; |
| | $headers = @{"Content-Type" = "application/x-www-form-urlencoded"}; |
| | $uri = "https://login.microsoftonline.com/$tenantId/oauth2/v2.0/token" |
| | $bearerToken = (Invoke-RestMethod -Uri $uri -Method "Post" -Body $body -Headers $headers).access_token |
| | Write-Debug $bearerToken |
| |
|
| | Function Send-DataToDCE($payload, $size){ |
| | write-debug "############ Sending Data ############" |
| | write-debug "JSON array size: $($size/1mb) MBs" |
| | |
| | |
| | $headers = @{"Authorization" = "Bearer $bearerToken"; "Content-Type" = "application/json"} |
| | $uri = "$DceURI/dataCollectionRules/$DcrImmutableId/streams/$StreamName`?api-version=2021-11-01-preview" |
| | |
| | |
| | Write-Debug ($payload | ConvertFrom-Json | ConvertTo-Json) |
| | |
| | |
| | Invoke-RestMethod -Uri $uri -Method "Post" -Body (@($payload | ConvertFrom-Json | ConvertTo-Json)) -Headers $headers | Out-Null |
| | } |
| |
|
| | |
| | $APILimitBytes = 1mb |
| |
|
| | |
| | $securityEventProperties=@("AccessMask","Account","AccountDomain","AccountExpires","AccountName","AccountSessionIdentifier","AccountType","Activity","AdditionalInfo","AdditionalInfo2","AllowedToDelegateTo","Attributes","AuditPolicyChanges","AuditsDiscarded","AuthenticationLevel","AuthenticationPackageName","AuthenticationProvider","AuthenticationServer","AuthenticationService","AuthenticationType","AzureDeploymentID","CACertificateHash","CalledStationID","CallerProcessId","CallerProcessName","CallingStationID","CAPublicKeyHash","CategoryId","CertificateDatabaseHash","Channel","ClassId","ClassName","ClientAddress","ClientIPAddress","ClientName","CommandLine","CompatibleIds","Computer","DCDNSName","DeviceDescription","DeviceId","DisplayName","Disposition","DomainBehaviorVersion","DomainName","DomainPolicyChanged","DomainSid","EAPType","ElevatedToken","ErrorCode","EventData","EventID","EventSourceName","ExtendedQuarantineState","FailureReason","FileHash","FilePath","FilePathNoUser","Filter","ForceLogoff","Fqbn","FullyQualifiedSubjectMachineName","FullyQualifiedSubjectUserName","GroupMembership","HandleId","HardwareIds","HomeDirectory","HomePath","InterfaceUuid","IpAddress","IpPort","KeyLength","Level","LmPackageName","LocationInformation","LockoutDuration","LockoutObservationWindow","LockoutThreshold","LoggingResult","LogonGuid","LogonHours","LogonID","LogonProcessName","LogonType","LogonTypeName","MachineAccountQuota","MachineInventory","MachineLogon","ManagementGroupName","MandatoryLabel","MaxPasswordAge","MemberName","MemberSid","MinPasswordAge","MinPasswordLength","MixedDomainMode","NASIdentifier","NASIPv4Address","NASIPv6Address","NASPort","NASPortType","NetworkPolicyName","NewDate","NewMaxUsers","NewProcessId","NewProcessName","NewRemark","NewShareFlags","NewTime","NewUacValue","NewValue","NewValueType","ObjectName","ObjectServer","ObjectType","ObjectValueName","OemInformation","OldMaxUsers","OldRemark","OldShareFlags","OldUacValue","OldValue","OldValueType","OperationType","PackageName","ParentProcessName","PasswordHistoryLength","PasswordLastSet","PasswordProperties","PreviousDate","PreviousTime","PrimaryGroupId","PrivateKeyUsageCount","PrivilegeList","Process","ProcessId","ProcessName","ProfilePath","Properties","ProtocolSequence","ProxyPolicyName","QuarantineHelpURL","QuarantineSessionID","QuarantineSessionIdentifier","QuarantineState","QuarantineSystemHealthResult","RelativeTargetName","RemoteIpAddress","RemotePort","Requester","RequestId","RestrictedAdminMode","RowsDeleted","SamAccountName","ScriptPath","SecurityDescriptor","ServiceAccount","ServiceFileName","ServiceName","ServiceStartType","ServiceType","SessionName","ShareLocalPath","ShareName","SidHistory","SourceComputerId","SourceSystem","Status","StorageAccount","SubcategoryGuid","SubcategoryId","Subject","SubjectAccount","SubjectDomainName","SubjectKeyIdentifier","SubjectLogonId","SubjectMachineName","SubjectMachineSID","SubjectUserName","SubjectUserSid","SubStatus","TableId","TargetAccount","TargetDomainName","TargetInfo","TargetLinkedLogonId","TargetLogonGuid","TargetLogonId","TargetOutboundDomainName","TargetOutboundUserName","TargetServerName","TargetSid","TargetUser","TargetUserName","TargetUserSid","TemplateContent","TemplateDSObjectFQDN","TemplateInternalName","TemplateOID","TemplateSchemaVersion","TemplateVersion","TimeGenerated","TokenElevationType","TransmittedServices","Type","UserAccountControl","UserParameters","UserPrincipalName","UserWorkstations","VendorIds","VirtualAccount","Workstation","WorkstationName") |
| | $windowsEventProperties=@("Channel","Computer","EventData","EventID","EventLevel","EventLevelName","EventOriginId","ManagementGroupName","Provider","RawEventData","Task","TimeGenerated","Type") |
| | $syslogProperties=@("Computer","EventTime","Facility","HostIP","HostName","ProcessID","ProcessName","SeverityLevel","SourceSystem","SyslogMessage","TimeGenerated","Type") |
| |
|
| | foreach ($dataset in $all_datasets){ |
| | $total_file_size = (get-item -Path $dataset).Length |
| | $json_records = @() |
| | $json_array_current_size = 0 |
| | $event_count = 0 |
| | $total_size = 0 |
| | |
| | |
| | $readLineIterator = [System.IO.File]::ReadLines($dataset) |
| | $numberOfLines = [Linq.Enumerable]::Count($readLineIterator) |
| |
|
| | write-Host "*******************************************" |
| | Write-Host "[+] Processing $dataset" |
| | Write-Host "[+] Dataset Size: $($total_file_size/1mb) MBs" |
| | Write-Host "[+] Number of events to process: $numberOfLines" |
| | |
| | |
| | foreach($line in $readLineIterator){ |
| | |
| | $event_count += 1 |
| |
|
| | |
| | if ($ShowProgressBar){ Write-Progress -Activity "Processing files" -status "Processing $dataset" -percentComplete ($event_count / $numberOfLines * 100) } |
| |
|
| | write-debug "############ Event $event_count ###############" |
| | if ($TimestampField){ |
| | $TimeGenerated= $line | Convertfrom-json | Select-Object -ExpandProperty $TimestampField |
| | } |
| | else { |
| | $TimeGenerated = Get-Date ([datetime]::UtcNow) -Format O |
| | } |
| |
|
| | |
| | $pscustomobject = $line | ConvertFrom-Json |
| | $pscustomobject | Add-Member -MemberType NoteProperty -Name 'TimeGenerated' -Value $TimeGenerated -Force |
| |
|
| | |
| | $currentEventProperties=Get-Member -InputObject $pscustomobject -MemberType NoteProperty |
| |
|
| | if ($TableName -eq 'SecurityEvent') { |
| | |
| | if ( $pscustomobject.psobject.properties.match('Hostname').Count ) { |
| | $pscustomobject | Add-Member -MemberType NoteProperty -Name 'Computer' -Value $pscustomobject.Hostname -Force |
| | } |
| | |
| | $allowedProperties = Compare-Object -ReferenceObject $securityEventProperties -DifferenceObject $currentEventProperties.name -PassThru -ExcludeDifferent -IncludeEqual |
| | } |
| | elseif ($TableName -eq 'WindowsEvent') { |
| | |
| | if ( $pscustomobject.psobject.properties.match('Hostname').Count ) { |
| | $pscustomobject | Add-Member -MemberType NoteProperty -Name 'Computer' -Value $pscustomobject.Hostname -Force |
| | } |
| |
|
| | |
| | if ( -not $pscustomobject.psobject.properties.match('EventData').Count ) { |
| | $pscustomobject | Add-Member -MemberType NoteProperty -Name 'EventData' -Value $($line | ConvertTo-Json -Compress) -Force |
| | } |
| | |
| | |
| | $pscustomobject | Add-Member -MemberType NoteProperty -Name 'Type' -Value 'WindowsEvent' -Force |
| |
|
| | |
| | $allowedProperties = Compare-Object -ReferenceObject $windowsEventProperties -DifferenceObject $currentEventProperties.name -PassThru -ExcludeDifferent -IncludeEqual |
| | } |
| | else { |
| | |
| | $allowedProperties = Compare-Object -ReferenceObject $syslogProperties -DifferenceObject $currentEventProperties.name -PassThru -ExcludeDifferent -IncludeEqual |
| | } |
| |
|
| | |
| | $message = $pscustomobject | Select-Object -Property @($allowedProperties) | ConvertTo-Json -Compress |
| | Write-Debug "Processing log entry: $($message.Length) bytes" |
| | |
| | |
| | $json_array_current_size = ([System.Text.Encoding]::UTF8.GetBytes(@($json_records | Convertfrom-json | ConvertTo-Json))).Length |
| | $json_array_proposed_size = ([System.Text.Encoding]::UTF8.GetBytes(@(($json_records + $message) | Convertfrom-json | ConvertTo-Json))).Length |
| | Write-Debug "Current size of JSON array: $json_array_current_size bytes" |
| |
|
| | if ($json_array_proposed_size -le $APILimitBytes){ |
| | $json_records += $message |
| | $json_array_current_size = $json_array_proposed_size |
| | write-debug "New size of JSON array: $json_array_current_size bytes" |
| | } |
| | else { |
| | write-debug "Sending current JSON array before processing more log entries.." |
| | Send-DataToDCE -payload $json_records -size $json_array_current_size |
| | |
| | $total_size += $json_array_current_size |
| |
|
| | |
| | write-debug "######## Resetting JSON Array ########" |
| | $json_records = @($message) |
| | $json_array_current_size = ([System.Text.Encoding]::UTF8.GetBytes(@($json_records | Convertfrom-json | ConvertTo-Json))).Length |
| | Write-Debug "Starting JSON array with size: $json_array_current_size bytes" |
| | } |
| | |
| | if($event_count -eq $numberOfLines){ |
| | write-debug "##### Last log entry in $dataset #######" |
| | Send-DataToDCE -payload $json_records -size $json_array_current_size |
| | |
| | $total_size += $json_array_current_size |
| | } |
| | } |
| | Write-Host "[+] Finished processing dataset" |
| | Write-Host "[+] Number of events processed: $event_count" |
| | Write-Host "[+] Total data sent: $($total_size/1mb) MBs" |
| | write-Host "*******************************************" |
| | } |
| | } |