Last active
November 7, 2024 12:15
-
-
Save jsecurity101/bb0aaa403579db8830b0663550f1d48b to your computer and use it in GitHub Desktop.
Tools needed for DEATHCON 2024
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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