From 21d3b3f349e5ef1d5ef23e4ad0b5948705f69fdc Mon Sep 17 00:00:00 2001 From: Carlos Polop Date: Thu, 30 Dec 2021 10:23:11 +0000 Subject: [PATCH] Update README.md --- winPEAS/winPEASexe/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/winPEAS/winPEASexe/README.md b/winPEAS/winPEASexe/README.md index 15c9430..3e8fcbf 100755 --- a/winPEAS/winPEASexe/README.md +++ b/winPEAS/winPEASexe/README.md @@ -20,7 +20,7 @@ Precompiled binaries: $latestRelease = Invoke-WebRequest https://github.com/carlospolop/PEASS-ng/releases/latest -Headers @{"Accept"="application/json"} $json = $latestRelease.Content | ConvertFrom-Json $latestVersion = $json.tag_name -$url = "https://github.com/carlospolop/PEASS-ng/releases/download/$latestVersion/winPEASany.exe" +$url = "https://github.com/carlospolop/PEASS-ng/releases/download/$latestVersion/winPEASany_ofs.exe" # One liner to download and execute winPEASany from memory in a PS shell $wp=[System.Reflection.Assembly]::Load([byte[]](Invoke-WebRequest "$url" -UseBasicParsing | Select-Object -ExpandProperty Content)); [winPEAS.Program]::Main("")