Zoom

Author: Ryan McVicar

description

Zoom client artifacts

paths

4 paths
paths use Windows environment syntax

collection commands

# PowerShell Artifact Collection Script
# Target: Zoom
# Run as Administrator

#Requires -RunAsAdministrator

$ErrorActionPreference = "SilentlyContinue"
$DestBase = "D:\Evidence"

# Function to handle artifact collection with robocopy
function Collect-Artifact {
    param (
        [string]$SourceDir,
        [string]$FolderName,
        [string]$FileMask = "*"
    )
    $FullDest = Join-Path -Path $DestBase -ChildPath $FolderName
    robocopy "$SourceDir" "$FullDest" "$FileMask" /E /COPY:DAT /R:0 /W:0 /NP /NFL /NDL /NJH /NJS | Out-Null
}

# 1. Zoom client logs
$UserPath = Join-Path $env:USERPROFILE "AppData\Roaming\Zoom\logs"
Collect-Artifact -SourceDir "$UserPath" -FileMask "*" -FolderName "Zoom_client_logs"

# 2. Zoom client logs (Windows XP)
$UserPath = Join-Path $env:USERPROFILE "Application Data\Zoom\"
Collect-Artifact -SourceDir "$UserPath" -FileMask "*" -FolderName "Zoom_client_logs__Windows_XP_"

# 3. Zoom client recordings
$UserPath = Join-Path $env:USERPROFILE "Documents\Zoom\"
Collect-Artifact -SourceDir "$UserPath" -FileMask "*" -FolderName "Zoom_client_recordings"

# 4. Zoom plugin (Outlook)
$UserPath = Join-Path $env:USERPROFILE "AppData\Roaming\Zoom Plugin"
Collect-Artifact -SourceDir "$UserPath" -FileMask "*.json" -FolderName "Zoom_plugin__Outlook_"

Write-Host "Collection complete!" -ForegroundColor Green

Save as .ps1 and run as Administrator. Use: powershell -ExecutionPolicy Bypass -File script.ps1

references