Files
2026-08-27 11:04:42 -06:00

11 lines
284 B
C#

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);
}
}