sans-blue-team / DeepBlueCLI

GNU General Public License v3.0
2.16k stars 352 forks source link

Adding option to grab events logs from a remote computer #6

Open buhlertheruler opened 6 years ago

buhlertheruler commented 6 years ago

Get-winevent will accept the computer name parameter but for some reason DNS resolution inside the parameter breaks the detection engine. To fix this it appears that passing the ipv4 address will return results as expected. Needs additional testing to validate data is being detected correctly from remote logs.

Code changes to DeepBlue.ps1 --------

line 37

Checking the Computer var and converting it to an address

If ($computer -ne ""){ $ips = [System.Net.Dns]::GetHostAddresses($computer) $ips = $ips | select -ExpandProperty IPAddressToString }

Line 70

Run Get-WinEvent with the -Computer switch only if the computername was passed

    If ($computer -ne ""){
    $events = iex "Get-WinEvent -ComputerName $ips $filter -ErrorAction Stop"
    }
    Else{
    $events = iex "Get-WinEvent  $filter -ErrorAction Stop"
    }