Advertisement
Guest User

bypass

a guest
Mar 18th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. $Win32 = @"
  2. using System;
  3. using System.Runtime.InteropServices;
  4.  
  5. public class Win32 {
  6.  
  7. [DllImport("kernel32")]
  8. public static extern IntPtr GetProcAddress(IntPtr hModule, string procName);
  9.  
  10. [DllImport("kernel32")]
  11. public static extern IntPtr LoadLibrary(string name);
  12.  
  13. [DllImport("kernel32")]
  14. public static extern bool VirtualProtect(IntPtr lpAddress, UIntPtr dwSize, uint flNewProtect, out uint lpflOldProtect);
  15.  
  16. }
  17. "@
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement