DeveloperCloudCredentials
Appsv1
Author: Aashiq Ahmed
description
Collect common developer and cloud credential artifacts useful during incident response
paths
9 paths
› paths use Windows environment syntax
collection commands
# PowerShell Artifact Collection Script
# Target: DeveloperCloudCredentials
# Run as Administrator
#Requires -RunAsAdministrator
$ErrorActionPreference = "Continue"
$SourceRoot = "C:"
$DestBase = "D:\Evidence"
$Summary = @{ Copied = 0; Missed = 0; Errors = 0 }
function Collect-Artifact {
param(
[Parameter(Mandatory)][string]$SourceDir,
[Parameter(Mandatory)][string]$FolderName,
[string]$FileMask = "*"
)
# Expand wildcards in any path segment (e.g. 'Program Files*',
# 'ScreenConnect Client*'). robocopy itself does not glob the source.
$sources = @(Get-Item -Path $SourceDir -ErrorAction SilentlyContinue |
Where-Object { $_.PSIsContainer })
if ($sources.Count -eq 0) {
$Summary.Missed++
return
}
$FullDest = Join-Path -Path $DestBase -ChildPath $FolderName
$null = New-Item -ItemType Directory -Force -Path $FullDest -ErrorAction SilentlyContinue
foreach ($src in $sources) {
robocopy $src.FullName "$FullDest" "$FileMask" /E /COPY:DAT /R:0 /W:0 /NP /NFL /NDL /NJH /NJS 2>$null | Out-Null
if ($LASTEXITCODE -le 7) { $Summary.Copied++ } else { $Summary.Errors++ }
}
}
# Iterate every user profile under the source drive
Get-ChildItem "$SourceRoot\Users" -Directory -ErrorAction SilentlyContinue |
Where-Object { $_.Name -notin @('All Users', 'Default', 'Default User', 'Public') } |
ForEach-Object {
$UserName = $_.Name
# AWS CLI Credentials
$UserPath = "$($_.FullName)\.aws"
Collect-Artifact -SourceDir $UserPath -FileMask "credentials" -FolderName "AWS_CLI_Credentials_$UserName"
# AWS CLI Config
$UserPath = "$($_.FullName)\.aws"
Collect-Artifact -SourceDir $UserPath -FileMask "config" -FolderName "AWS_CLI_Config_$UserName"
# Kubernetes Config
$UserPath = "$($_.FullName)\.kube"
Collect-Artifact -SourceDir $UserPath -FileMask "config" -FolderName "Kubernetes_Config_$UserName"
# Docker Config
$UserPath = "$($_.FullName)\.docker"
Collect-Artifact -SourceDir $UserPath -FileMask "config.json" -FolderName "Docker_Config_$UserName"
# Git Credentials
$UserPath = $_.FullName
Collect-Artifact -SourceDir $UserPath -FileMask ".git-credentials" -FolderName "Git_Credentials_$UserName"
# Git Config
$UserPath = $_.FullName
Collect-Artifact -SourceDir $UserPath -FileMask ".gitconfig" -FolderName "Git_Config_$UserName"
# SSH Config
$UserPath = "$($_.FullName)\.ssh"
Collect-Artifact -SourceDir $UserPath -FileMask "config" -FolderName "SSH_Config_$UserName"
# SSH Known Hosts
$UserPath = "$($_.FullName)\.ssh"
Collect-Artifact -SourceDir $UserPath -FileMask "known_hosts" -FolderName "SSH_Known_Hosts_$UserName"
# npm User Config
$UserPath = $_.FullName
Collect-Artifact -SourceDir $UserPath -FileMask ".npmrc" -FolderName "npm_User_Config_$UserName"
}
Write-Host ("Collection complete. Copied: {0} Missed: {1} Errors: {2}" -f $Summary.Copied, $Summary.Missed, $Summary.Errors) -ForegroundColor Green› Save as .ps1 and run as Administrator. Use: powershell -ExecutionPolicy Bypass -File script.ps1