ZohoAssist
Appsv1.1
Author: Andrew Rathbun
description
Zoho Assist artifacts
paths
7 paths
AppsZoho Assist log files in AppData\Local
C:\Users\%user%\AppData\Local\ZohoMeeting\logZoho Assist log files in AppData ocal
AppsZoho Assist .conf files in AppData\Local
C:\Users\%user%\AppData\Local\ZohoMeeting*.confGrabs all .conf files present in this folder (Connection/Settings)
AppsZoho Assist log files in ProgramData
C:\ProgramData\ZohoMeeting\logZoho Assist log files in ProgramData
AppsZoho Assist .conf files
C:\ProgramData\ZohoMeeting*.confGrabs all .conf files present in this folder (Connection/Proxy/Settings)
AppsZoho Assist log files in Program Files*
C:\Program Files*\ZohoMeeting\UnAttended\ZohoMeeting\logsZoho Assist log files in Program Files*
AppsZoho Assist .conf files in Program Files*
C:\Program Files*\ZohoMeeting\UnAttended\ZohoMeeting*.confGrabs all .conf files present in this folder (Service/Settings)
AppsZoho Assist .txt files in Program Files*
C:\Program Files*\ZohoMeeting\UnAttended\ZohoMeeting*.txtGrabs all .txt files present in this folder (Service/Settings)
› paths use Windows environment syntax
collection commands
# PowerShell Artifact Collection Script
# Target: ZohoAssist
# Run as Administrator
#Requires -RunAsAdministrator
$ErrorActionPreference = "SilentlyContinue"
$DestBase = "D:\Evidence"
# Function to handle directory creation and copying
function Collect-Artifact {
param (
[string]$SourcePath,
[string]$FolderName
)
$FullDest = Join-Path -Path $DestBase -ChildPath $FolderName
if (-not (Test-Path -Path $FullDest)) {
New-Item -ItemType Directory -Path $FullDest -Force | Out-Null
}
Copy-Item -Path $SourcePath -Destination $FullDest -Recurse -Force
}
# 1. Zoho Assist log files in AppData\Local
$UserPath = Join-Path $env:USERPROFILE "AppData\Local\ZohoMeeting\log"
Collect-Artifact -SourcePath "$UserPath\*" -FolderName "Zoho_Assist_log_files_in_AppData_Local"
# 2. Zoho Assist .conf files in AppData\Local
$UserPath = Join-Path $env:USERPROFILE "AppData\Local\ZohoMeeting"
Collect-Artifact -SourcePath "$UserPath\*.conf" -FolderName "Zoho_Assist__conf_files_in_AppData_Local"
# 3. Zoho Assist log files in ProgramData
Collect-Artifact -SourcePath "C:\ProgramData\ZohoMeeting\log\*" -FolderName "Zoho_Assist_log_files_in_ProgramData"
# 4. Zoho Assist .conf files
Collect-Artifact -SourcePath "C:\ProgramData\ZohoMeeting\*.conf" -FolderName "Zoho_Assist__conf_files"
# 5. Zoho Assist log files in Program Files*
Collect-Artifact -SourcePath "C:\Program Files*\ZohoMeeting\UnAttended\ZohoMeeting\logs\*" -FolderName "Zoho_Assist_log_files_in_Program_Files_"
# 6. Zoho Assist .conf files in Program Files*
Collect-Artifact -SourcePath "C:\Program Files*\ZohoMeeting\UnAttended\ZohoMeeting\*.conf" -FolderName "Zoho_Assist__conf_files_in__Program_Files_"
# 7. Zoho Assist .txt files in Program Files*
Collect-Artifact -SourcePath "C:\Program Files*\ZohoMeeting\UnAttended\ZohoMeeting\*.txt" -FolderName "Zoho_Assist__txt_files_in__Program_Files_"
Write-Host "Collection complete!" -ForegroundColor Green› Save as .ps1 and run as Administrator. Use: powershell -ExecutionPolicy Bypass -File script.ps1