Skip to content

Instantly share code, notes, and snippets.

@jsecurity101
Last active November 7, 2024 12:15
Show Gist options
  • Save jsecurity101/bb0aaa403579db8830b0663550f1d48b to your computer and use it in GitHub Desktop.
Save jsecurity101/bb0aaa403579db8830b0663550f1d48b to your computer and use it in GitHub Desktop.
Tools needed for DEATHCON 2024
$EtwInspectorURL = "https://github.com/jsecurity101/ETWInspector/releases/download/1.0/EtwInspector.exe"
$JonMonURL = "https://github.com/jsecurity101/JonMon/releases/download/Beta-0.01/JonMon.zip"
$EtwInspecter = "EtwInspector.exe"
$JonMonZIP = "JonMon.zip"
# Download the file using Invoke-WebRequest
Write-Output "Downloading EtwINspector..."
Invoke-WebRequest -Uri $EtwInspectorURL -OutFile $EtwInspecter
Write-Output "EtwInspector Downloaded"
Write-Output "Downloading JonMon..."
Invoke-WebRequest -Uri $JonMonURL -OutFile $JonMonZIP
Write-Output "JonMon Downloaded"
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/redcanaryco/AtomicTestHarnesses/master/Windows/TestHarnesses/T1003.001_DumpLSASS/DumpLSASS.ps1" -OutFile "DumpLSASS.ps1"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment