Soulseek
P2Pv1.1
Author: Andrew Rathbun
description
Soulseek
paths
2 paths
FileDownloadSoulseek Chat Logs
C:\Users\%user%\AppData\Local\SoulseekQt\Soulseek Chat Logs\Locates Soulseek chat logs and copies them. Chat logs are in plaintext. Current as of version 2019.7.22.
FileDownloadSoulseek Search History/Shared Folders/Settings
C:\Users\%user%\AppData\Local\SoulseekQt\1\*.datLocates .dat file(s) containing: search history, active searches (search_record), current shared folders (shared_file_folder), and wish list items (wish_list_item).
› paths use Windows environment syntax
collection commands
# PowerShell Artifact Collection Script
# Target: Soulseek
# 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. Soulseek Chat Logs
$UserPath = Join-Path $env:USERPROFILE "AppData\Local\SoulseekQt\Soulseek Chat Logs\"
Collect-Artifact -SourcePath "$UserPath\*" -FolderName "Soulseek_Chat_Logs"
# 2. Soulseek Search History/Shared Folders/Settings
$UserPath = Join-Path $env:USERPROFILE "AppData\Local\SoulseekQt\1\"
Collect-Artifact -SourcePath "$UserPath\*.dat" -FolderName "Soulseek_Search_History_Shared_Folders_Settings"
Write-Host "Collection complete!" -ForegroundColor Green› Save as .ps1 and run as Administrator. Use: powershell -ExecutionPolicy Bypass -File script.ps1