Skip to content

Instantly share code, notes, and snippets.

@umbrageodotus
umbrageodotus / pe_offset_inspect.ps1
Created October 10, 2025 07:32
My tool for debugging `delcert` modifications
param(
[string]$file1 = "av.exe",
[string]$file2 = "av2.exe",
[int]$offset = 0x140
)
function ReadBytes($path){ [System.IO.File]::ReadAllBytes($path) }
$a = ReadBytes $file1
$b = ReadBytes $file2