You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 21, 2021. It is now read-only.
Im trying to embed an exe on a powershell script as described on https://truesecdev.wordpress.com/2016/03/15/embedding-exe-files-into-powershell-scripts/
and to the script https://github.com/PowerShellMafia/PowerSploit/blob/master/CodeExecution/Invoke-ReflectivePEInjection.ps1
I have added
Your base64 encoded binary
$InputString = '...........' with the exe converted to base64
and have also included
Convert base64 string to byte array
$PEBytes = [System.Convert]::FromBase64String($InputString)
Run EXE in memory
Invoke-ReflectivePEInjection -PEBytes $PEBytes
but Im getting this cascade of errors
What can be the reason for these errors and how can I fix them
The text was updated successfully, but these errors were encountered: