using System; using System.Windows.Forms; class Program { [STAThread] static void Main() { MessageBox.Show("hello from .NET payload!\n\nIf you see this, the dropper worked.", "payload executed", MessageBoxButtons.OK, MessageBoxIcon.Information); } }