From fc0aede0764e1f3d99c4a69aa0ef1802cbfb65db Mon Sep 17 00:00:00 2001 From: Tomas Kracmar Date: Mon, 15 Apr 2024 22:43:34 +0200 Subject: [PATCH] Minor update --- Extract-NTHashes.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Extract-NTHashes.ps1 b/Extract-NTHashes.ps1 index 79632eb..b678cf9 100644 --- a/Extract-NTHashes.ps1 +++ b/Extract-NTHashes.ps1 @@ -7,7 +7,7 @@ ################################################## ## Project: Elysium ## ## File: Extract-NTLMHashes.ps1 ## -## Version: 1.0.0 ## +## Version: 1.0.2 ## ## Support: support@cqre.net ## ################################################## @@ -179,7 +179,7 @@ Write-Host "File has been encrypted: $encryptedFilePath" $localFileChecksum = Get-FileChecksum -Path $encryptedFilePath # Create the context for Azure Blob Storage with SAS token -$storageContext = New-AzStorageContext -StorageAccountName $storageAccountName -SasToken $sasToken +$storageContext = New-AzStorageContext -StorageAccountName $storageAccountName -SasToken "$sasToken" # Upload the encrypted file to Azure Blob Storage Set-AzStorageBlobContent -File $encryptedFilePath -Container $containerName -Blob $blobName -Context $storageContext