ClipboardMaster
Appsv1
Author: Andrew Rathbun
description
ClipboardMaster
paths
3 paths
AppsClipboardMaster - Clipboard History - Text
C:\Users\%user%\AppData\Roaming\Jumping Bytes\ClipboardMaster\Clipboard.clm4Locates the user’s clipboard history (text) for ClipboardMaster
AppsClipboardMaster - Clipboard History - Images
C:\Users\%user%\AppData\Roaming\Jumping Bytes\ClipboardMaster\pics\Locates the user’s clipboard history (images) for ClipboardMaster
AppsClipboardMaster - Clipboard History - Backups
C:\Users\%user%\AppData\Roaming\Jumping Bytes\ClipboardMaster\Clipboard.clm4.ba*Locates the user’s clipboard history (backups) for ClipboardMaster
› paths use Windows environment syntax
collection commands
# PowerShell Artifact Collection Script
# Target: ClipboardMaster
# 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. ClipboardMaster - Clipboard History - Text
$UserPath = Join-Path $env:USERPROFILE "AppData\Roaming\Jumping Bytes\ClipboardMaster\"
Collect-Artifact -SourcePath "$UserPath\Clipboard.clm4" -FolderName "ClipboardMaster___Clipboard_History___Text"
# 2. ClipboardMaster - Clipboard History - Images
$UserPath = Join-Path $env:USERPROFILE "AppData\Roaming\Jumping Bytes\ClipboardMaster\pics\"
Collect-Artifact -SourcePath "$UserPath\*" -FolderName "ClipboardMaster___Clipboard_History___Images"
# 3. ClipboardMaster - Clipboard History - Backups
$UserPath = Join-Path $env:USERPROFILE "AppData\Roaming\Jumping Bytes\ClipboardMaster\"
Collect-Artifact -SourcePath "$UserPath\Clipboard.clm4.ba*" -FolderName "ClipboardMaster___Clipboard_History___Backups"
Write-Host "Collection complete!" -ForegroundColor Green› Save as .ps1 and run as Administrator. Use: powershell -ExecutionPolicy Bypass -File script.ps1