...
Log Type | Ingestion label | Preferred Logging Protocol - Format | Log collection method |
---|---|---|---|
Microsoft AD | WINDOWS_AD | JSON | CyberHub |
Port Requirements
Source | Destination | Port |
---|---|---|
Microsoft Windows AD | CyberHub | 10014(TCP) |
To facilitate secure communication and align with our best practice, we strongly encourage the use of Transport Layer Security (TLS) between your security devices and our Adaptive MxDR platform for event forwarding.
While we understand that TLS support may not be available on all devices, if your devices do support TLS communication, we recommend utilizing port 10014 for seamless integration.
In some cases, the upgraded version of the device might incorporate TLS support without prior notice. If you come across such a scenario or for further assistance in configuring TLS, we kindly ask you to reach out to your dedicated Adaptive MxDR Service Delivery Lead.
Device Configuration
Pre-requisite:Prerequisite
Obtain the CyberHub Certificate by contacting the Accenture Onboarding Team.
Configuring the To Configure Windows Server
Configure all systems with the UTC time zone.
Create and set up a Powershell script to gather log data and store it in an output file on each Microsoft Windows Active Directory server.
Create a file with the ps1 extension and paste the below code.
Code Block # Set the location where the log file will be written $OUTPUT_FILENAME="<Path_of_the_output_file>" If (Test-Path -Path $OUTPUT_FILENAME) { Remove-Item -path $OUTPUT_FILENAME -ErrorAction SilentlyContinue} # USER_CONTEXT: Gets all Active Directory users and their properties. Get-ADUser -Filter * -properties samAccountName | % { Get-ADUser $_.SamAccountName -properties * | ConvertTo-JSON -compress | Out-File -encoding utf8 $OUTPUT_FILENAME -Append } # ASSET_CONTEXT: Gets all Active Directory assets and their properties. Get-ADComputer -Filter * -properties samAccountName | % { Get-ADComputer $_.SamAccountName -properties * | ConvertTo-JSON -compress | Out-File -encoding utf8 $OUTPUT_FILENAME -Append }
...
In the
"Action"
tab, add a new action and provide the path of the file where the script is stored.
Configuring the To Configure NXLog Agent for log forwarding
...
Property | Default Value | Description |
---|---|---|
IP Address | Microsoft Windows AD IP address | Hostname or IP address of the device which forwards logs to the CyberHub. |