This Go program applies a lifetime patch to PowerShell to disable ETW (Event Tracing for Windows) and AMSI (Antimalware Scan Interface) protections.
The program modifies the PowerShell profile (Microsoft.PowerShell_profile.ps1) to apply two patches:
- AMSI Patch: Disables AMSI by modifying the
AmsiScanBufferfunction,{ 0x31, 0xC0, 0xC3 }. - ETW Patch: Modifies the
EtwEventWritefunction inntdll.dllto prevent event tracing,{ 0xC3 }. - Sets File attributes to Hidden and System to :
Microsoft.PowerShell_profile.ps1.
- Made by codepulze aka evilbytecode.
https://www.virustotal.com/gui/file/e1f4539b28df895d02f361143d04f025e36668a9373985ef27b324431f68a0f5
This project is licensed under the MIT License. See the LICENSE file for details.