From 544efb88f7c7d2a3a2cf8cad6bba8d012f2582b9 Mon Sep 17 00:00:00 2001 From: JoeyInvictus <129975292+JoeyInvictus@users.noreply.github.com> Date: Mon, 25 Mar 2024 09:26:02 +0100 Subject: [PATCH] Update to 1.3.1 Fixed a bug in the Get-UalGraph function that caused an error during output writing. --- Microsoft-Extractor-Suite.psd1 | 2 +- Scripts/Get-UALGraph.ps1 | 3 +-- docs/source/conf.py | 4 ++-- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/Microsoft-Extractor-Suite.psd1 b/Microsoft-Extractor-Suite.psd1 index c76e407..18e5693 100644 --- a/Microsoft-Extractor-Suite.psd1 +++ b/Microsoft-Extractor-Suite.psd1 @@ -8,7 +8,7 @@ Author = 'Joey Rentenaar & Korstiaan Stam' CompanyName = 'Invictus-IR' # Version number of this module. -ModuleVersion = '1.3.0' +ModuleVersion = '1.3.1' # ID used to uniquely identify this module GUID = '4376306b-0078-4b4d-b565-e22804e3be01' diff --git a/Scripts/Get-UALGraph.ps1 b/Scripts/Get-UALGraph.ps1 index 76f510a..05e0849 100644 --- a/Scripts/Get-UALGraph.ps1 +++ b/Scripts/Get-UALGraph.ps1 @@ -161,8 +161,7 @@ Function Get-UALGraph { } elseif ($auditLogQuery.Status -eq "succeeded") { write-logFile -Message "[INFO] Unified Audit Log search succeeded." -Color "Green" - #DownloadUAL($scanId) - DownloadUAL $scanId $searchName $OutputDir $Encoding + DownloadUAL $scanId $searchName $Encoding $OutputDir } else { write-logFile -Message "[INFO] Unified Audit Log search is stil running. Waiting..." diff --git a/docs/source/conf.py b/docs/source/conf.py index df1fb62..36d8bd9 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -6,8 +6,8 @@ copyright = 'Copyright (c) 2024 Invictus Incident Response' author = 'Joey Rentenaar & Korstiaan Stam' -release = '1.3.0' -version = '1.3.0' +release = '1.3.1' +version = '1.3.1' # -- General configuration